VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
mprabhuram at gmail.com Guest
|
Posted: Thu Apr 16, 2009 8:22 am Post subject: [Freeswitch-users] Call bridge in free switch |
|
|
Hello,
Quote: |
I am trying to find a way to this through fs_cli
1) call out to ClientA (1001@192.168.1.108 (1001@192.168.1.108)), ClientB (1002@192.168.1.108 (1002@192.168.1.108)) & ClientC (1003@192.168.1.108 (1003@192.168.1.108))
2) Bridge all the 3 legs together into one call
Thanks
Prabhu
|
|
|
Back to top |
|
|
solko at gcdf.pl Guest
|
Posted: Thu Apr 16, 2009 8:39 am Post subject: [Freeswitch-users] Call bridge in free switch |
|
|
Prabhuram Mohan pisze:
Quote: | Hello,
I am trying to find a way to this through fs_cli
1) call out to ClientA (1001@192.168.1.108
<mailto:1001@192.168.1.108>), ClientB (1002@192.168.1.108
<mailto:1002@192.168.1.108>) & ClientC (1003@192.168.1.108
<mailto:1003@192.168.1.108>)
2) Bridge all the 3 legs together into one call
Thanks
Prabhu
|
The only way I know to do this is to use conference module.
Then for example:
conference test dial clientA
conference test dial clientB
conference test dial clientC
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
msc at freeswitch.org Guest
|
Posted: Thu Apr 16, 2009 6:39 pm Post subject: [Freeswitch-users] Call bridge in free switch |
|
|
Do you need to monitor the possible failure of one of these calls? Just curious. You can call them individually and drop them into a conference right at the FS cmd line:
originate (sofia/profile/1001@192.168.1.108 (1001@192.168.1.108)) & conference(myconfname);
originate (sofia/profile/1002@192.168.1.108 (1002@192.168.1.108)) & conference(myconfname);
originate (sofia/profile/1003@192.168.1.108 (1003@192.168.1.108)) & conference(myconfname);
You can control the conference behavior with numerous options. See http://wiki.freeswitch.org/wiki/Mod_conference for lots of great information.
-MC
On Thu, Apr 16, 2009 at 1:09 AM, Prabhuram Mohan <mprabhuram@gmail.com (mprabhuram@gmail.com)> wrote:
|
|
Back to top |
|
|
mprabhuram at gmail.com Guest
|
Posted: Thu Apr 16, 2009 10:50 pm Post subject: [Freeswitch-users] Call bridge in free switch |
|
|
Hi Mike,
I tried the following command per ur advice.. but getting the error CHAN_NOT_IMPLEMENTED
originate (sofia/profile/1001@192.168.1.108 (1001@192.168.1.108)) & conference(3085-192.168.1.102);
freeswitch@internal> originate (sofia/profile/1001@192.168.1.102 (1001@192.168.1.102)) & conference(3085-192.168.1.102); -ERR CHAN_NOT_IMPLEMENTEDfreeswitch@internal> 2009-04-16 20:28:30 [ERR] switch_core_session.c:303 switch_core_session_outgoing_channel() Could not locate channel type (sofia 2009-04-16 20:28:30 [ERR] switch_ivr_originate.c:1486 switch_ivr_originate() Cannot create outgoing channel of type [(sofia] cause: [CHAN_NOT_IMPLEMENTED] 2009-04-16 20:28:30 [DEBUG] switch_ivr_originate.c:2084 switch_ivr_originate() Originate Resulted in Error Cause: 66 [CHAN_NOT_IMPLEMENTED]
Thanks
prabhu
On Thu, Apr 16, 2009 at 4:29 PM, Michael Collins <msc@freeswitch.org (msc@freeswitch.org)> wrote:
|
|
Back to top |
|
|
brian at freeswitch.org Guest
|
Posted: Thu Apr 16, 2009 10:55 pm Post subject: [Freeswitch-users] Call bridge in free switch |
|
|
First off remove the () around the sofia URI.
/b
On Apr 16, 2009, at 10:33 PM, Prabhuram Mohan wrote:
Quote: | Hi Mike,
I tried the following command per ur advice.. but getting the error CHAN_NOT_IMPLEMENTED
originate (sofia/profile/1001@192.168.1.108 (1001@192.168.1.108)) & conference(3085-192.168.1.102); |
Brian West
brian@freeswitch.org (brian@freeswitch.org)
-- Meet us at ClueCon! http://www.cluecon.com |
|
Back to top |
|
|
dave at 3c.co.uk Guest
|
Posted: Thu Apr 16, 2009 11:06 pm Post subject: [Freeswitch-users] Call bridge in free switch |
|
|
Take out the brackets -
originate sofia/profile/1001...
(and you might want to replace profile with the name of the profile to
use)
There's documentation here which might help:
http://wiki.freeswitch.org/wiki/Mod_commands#originate
--Dave
Quote: | Hi Mike,
I tried the following command per ur advice.. but getting the error
CHAN_NOT_IMPLEMENTED
originate (sofia/profile/1001@192.168.1.108) &
conference(3085-192.168.1.102);
freeswitch@internal> originate (sofia/profile/1001@192.168.1.102) &
conference(3085-192.168.1.102);
-ERR CHAN_NOT_IMPLEMENTED
freeswitch@internal> 2009-04-16 20:28:30 [ERR]
switch_core_session.c:303 switch_core_session_outgoing_channel() Could
not locate channel type (sofia
2009-04-16 20:28:30 [ERR] switch_ivr_originate.c:1486
switch_ivr_originate() Cannot create outgoing channel of type [(sofia]
cause: [CHAN_NOT_IMPLEMENTED]
2009-04-16 20:28:30 [DEBUG] switch_ivr_originate.c:2084
switch_ivr_originate() Originate Resulted in Error Cause: 66
[CHAN_NOT_IMPLEMENTED]
Thanks
prabhu
On Thu, Apr 16, 2009 at 4:29 PM, Michael Collins <msc@freeswitch.org>
wrote:
Do you need to monitor the possible failure of one of these
calls? Just curious. You can call them individually and drop
them into a conference right at the FS cmd line:
originate (sofia/profile/1001@192.168.1.108) &
conference(myconfname);
originate (sofia/profile/1002@192.168.1.108) &
conference(myconfname);
originate (sofia/profile/1003@192.168.1.108) &
conference(myconfname);
You can control the conference behavior with numerous options.
See http://wiki.freeswitch.org/wiki/Mod_conference for lots of
great information.
-MC
On Thu, Apr 16, 2009 at 1:09 AM, Prabhuram Mohan
<mprabhuram@gmail.com> wrote:
Hello,
I am trying to find a way to this through
fs_cli
1) call out to ClientA (1001@192.168.1.108),
ClientB (1002@192.168.1.108) & ClientC
(1003@192.168.1.108)
2) Bridge all the 3 legs together into one
call
Thanks
Prabhu
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@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@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@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@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
mprabhuram at gmail.com Guest
|
Posted: Thu Apr 16, 2009 11:55 pm Post subject: [Freeswitch-users] Call bridge in free switch |
|
|
Thanks Brain/ Dave,
I ran the modified command as follows
originate sofia/default/1001@192.168.1.102 (1001@192.168.1.102) &conference(3085-192.168.1.102)
this time fs is able to create channel but am getting a different error : "sofia.c:3845 Cannot Blind Tranfer one legged call"
Prabhu
On Thu, Apr 16, 2009 at 8:58 PM, David Knell <dave@3c.co.uk (dave@3c.co.uk)> wrote:
|
|
Back to top |
|
|
brian at freeswitch.org Guest
|
Posted: Fri Apr 17, 2009 8:53 am Post subject: [Freeswitch-users] Call bridge in free switch |
|
|
Are you calling a registered user? If so then please replace the @ with a % or user user/1001@192.168.1.102 ([email]user/1001@192.168.1.102[/email])
/b
PS I do get called brain a lot!
On Apr 16, 2009, at 11:45 PM, Prabhuram Mohan wrote:
Quote: | Thanks Brain/ Dave,
I ran the modified command as follows
originate sofia/default/1001@192.168.1.102 (1001@192.168.1.102) &conference(3085-192.168.1.102)
this time fs is able to create channel but am getting a different error : "sofia.c:3845 Cannot Blind Tranfer one legged call"
Prabhu
|
Brian West
brian@freeswitch.org (brian@freeswitch.org)
-- Meet us at ClueCon! http://www.cluecon.com |
|
Back to top |
|
|
mprabhuram at gmail.com Guest
|
Posted: Fri Apr 17, 2009 10:58 am Post subject: [Freeswitch-users] Call bridge in free switch |
|
|
Hi Brian,
The follower command worked per your suggestion
originate user/1001@192.168.1.102 (1001@192.168.1.102) &conference(3000-192.168.1.102)
Thanks a lot,
Prabhu
On Fri, Apr 17, 2009 at 6:43 AM, Brian West <brian@freeswitch.org (brian@freeswitch.org)> wrote:
|
|
Back to top |
|
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|