[Freeswitch-users] How to make a call back
Michael S Collins
msc at freeswitch.org
Thu Aug 27 22:57:59 PDT 2009
Sent from my iPhone
On Aug 27, 2009, at 10:01 PM, lakshmanan ganapathy
<lakindia89 at gmail.com> wrote:
> No. In the dial plan I said, application="perl" data="The perl
> script".
> I also checked $session->execute("bridge","user/1010"). This is
> working fine.
> But originate is not working as I expected.
>
I think you might be confusing Dialplan apps with API commands. The
$session object represents an existing channel and therefore it uses
Dialplan apps. Originate is an API, that is, it is a command that you
type at the CLI.
You need an API object to use originate from a script:
my $api = new $freeswitch::API();
my $res = $api->executeString("originate user/1010 &bridge(user/1000);
What kind of application are you developing? I'm curious why you need
an originate to create a whole new call.
-MC
> On Thu, Aug 27, 2009 at 9:46 PM, Michael Collins
> <msc at freeswitch.org> wrote:
>
>
> On Wed, Aug 26, 2009 at 9:38 PM, lakshmanan <lakindia89 at gmail.com>
> wrote:
>
> When I give the following from the command line it calls to 1010
> extension
> and once answered, it calls to 1000 and bridge the connection.
> originate user/1010 &bridge(user/1000)
> But I want to do this in perl. So I have given as follows
> $session->originate($session,"user/1010 &bridge user/
> 1000");
> But it is not working. It says "user/1010 &bridge user/1000 is invalid
> user".
> How to do this in perl. pls help.
>
> Are you calling this perl script from the CLI? If so you won't have
> the $session object because a channel does not exist for a simple
> API call.
> -MC
>
>
> _______________________________________________
> FreeSWITCH-users mailing list
> FreeSWITCH-users at lists.freeswitch.org
> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
> http://www.freeswitch.org
>
>
> _______________________________________________
> FreeSWITCH-users mailing list
> FreeSWITCH-users at lists.freeswitch.org
> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
> http://www.freeswitch.org
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.freeswitch.org/pipermail/freeswitch-users/attachments/20090827/80c39b40/attachment-0002.html
More information about the FreeSWITCH-users
mailing list