Sponsor: VoiceMeUp - Corporate & Wholesale VoIP Services

VoIP Mailing List Archives
Mailing list archives for the VoIP community
 SearchSearch 

[Freeswitch-users] bridge to internal phone and cell through a gateway


 
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users
View previous topic :: View next topic  
Author Message
sdevoy at bizfocused.com
Guest





PostPosted: Wed Sep 22, 2021 10:39 am    Post subject: [Freeswitch-users] bridge to internal phone and cell through Reply with quote

Hi All,
I have searched for an answer and can’t find anything to explain my problem.

Underlying request/problem: The user wants to ring their desk and after 5 second leg delay (not shown) add their cell phone, then voicemail on the FS server.

I did a test with this bridge and it works fine:
<action application="bridge" data=”{sip_from_uri=${outbound_caller_id_number}@64.136.173.30,sip_from_user=${outbound_caller_id_number},sip_from_host=64.136.173.30}sofia/gateway/voip-innovations-outbound/141nnnnnn99”/ ([email]%7bsip_from_uri=$%7boutbound_caller_id_number%7d@64.136.173.30,sip_from_user=$%7boutbound_caller_id_number%7d,sip_from_host=64.136.173.30%7dsofia/gateway/voip-innovations-outbound/141nnnnnn99”/[/email])>

And this one works:
<action application="bridge" data={presence_id=220@fs.bizfocused.com}${sofia_contact(220@fs2.bizfocused.com)} ([email]%7bpresence_id=220@fs.bizfocused.com%7d$%7bsofia_contact(220@fs2.bizfocused.com)%7d,[/email]) />

But I can’t do both to work. Is it possible to bridge to internal and external phones?

Thanks,
Sean
Back to top
brian at freeswitch.com
Guest





PostPosted: Wed Sep 22, 2021 11:50 am    Post subject: [Freeswitch-users] bridge to internal phone and cell through Reply with quote

You're looking for leg_delay, set it inside [] on the legs you want to delay originate on, so you can originate like this:

sofia/blah/mydeskphone,[leg_delay=5]sofia/blah/mycellphone


gets tricky with sofia_contact unless you use xml_curl to dynamically build the url.



/b




On Wed, Sep 22, 2021 at 10:45 AM Sean Devoy <sdevoy@bizfocused.com (sdevoy@bizfocused.com)> wrote:

Quote:

Hi All,
I have searched for an answer and can’t find anything to explain my problem.
 
Underlying request/problem:  The user wants to ring their desk and after 5 second leg delay (not shown) add their cell phone, then voicemail on the FS server.
 
I did a test with this bridge and it works fine:
<action application="bridge" data=”{sip_from_uri=${outbound_caller_id_number}@64.136.173.30,sip_from_user=${outbound_caller_id_number},sip_from_host=64.136.173.30}sofia/gateway/voip-innovations-outbound/141nnnnnn99”/ ([email]%7bsip_from_uri=$%7boutbound_caller_id_number%7d@64.136.173.30,sip_from_user=$%7boutbound_caller_id_number%7d,sip_from_host=64.136.173.30%7dsofia/gateway/voip-innovations-outbound/141nnnnnn99”/[/email])>
 
And this one works:
<action application="bridge" data={presence_id=220@fs.bizfocused.com}${sofia_contact(220@fs2.bizfocused.com)} ([email]%7bpresence_id=220@fs.bizfocused.com%7d$%7bsofia_contact(220@fs2.bizfocused.com)%7d,[/email])  />
 
But I can’t do both to work.  Is it possible to bridge to internal and external phones?
 
Thanks,
Sean

_________________________________________________________________________

The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.

Join our online community to chat in real time https://signalwire.community

Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com

Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com



--



Brian West | Co-founder and Developer
Need Commercial support? email sales@freeswitch.com (sales@freeswitch.com)
FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045
Email: brian@freeswitch.com (brian@freeswitch.com)
Mobile: 918-424-9378
Website: https://www.FreeSWITCH.com
[/url] [url=https://twitter.com/freeswitch]
Back to top
avi at avimarcus.net
Guest





PostPosted: Wed Sep 22, 2021 12:58 pm    Post subject: [Freeswitch-users] bridge to internal phone and cell through Reply with quote

It should work fine to bridge to user/ or Sofia/internal and Sofia/external.

A trick you can try is enterprise originate with :_: between endpoints to put each dial out in its own thread. I think it introduces UUID connection difficulties though, for linking the channels together in the CDRs. 


On Wed, Sep 22, 2021, 7:21 PM Sean Devoy <sdevoy@bizfocused.com (sdevoy@bizfocused.com)> wrote:

Quote:

Thanks, I have leg_delay working in other places. I am trying without it for now.  I just can’t bridge to an internal phone and an external gateway phone in a single bridge.
Anything special there?
 
From: FreeSWITCH-users <freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org)> On Behalf Of Brian West
Sent: Wednesday, September 22, 2021 12:15 PM
To: FreeSWITCH Users Help <freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)>
Subject: Re: [Freeswitch-users] bridge to internal phone and cell through a gateway

 
You're looking for leg_delay, set it inside [] on the legs you want to delay originate on, so you can originate like this:
 

sofia/blah/mydeskphone,[leg_delay=5]sofia/blah/mycellphone

 

gets tricky with sofia_contact unless you use xml_curl to dynamically build the url.

 

/b

 


 
On Wed, Sep 22, 2021 at 10:45 AM Sean Devoy <sdevoy@bizfocused.com (sdevoy@bizfocused.com)> wrote:
Quote:

Hi All,
I have searched for an answer and can’t find anything to explain my problem.
 
Underlying request/problem:  The user wants to ring their desk and after 5 second leg delay (not shown) add their cell phone, then voicemail on the FS server.
 
I did a test with this bridge and it works fine:
<action application="bridge" data=”{sip_from_uri=${outbound_caller_id_number}@64.136.173.30,sip_from_user=${outbound_caller_id_number},sip_from_host=64.136.173.30}sofia/gateway/voip-innovations-outbound/141nnnnnn99”/ ([email]%7bsip_from_uri=$%7boutbound_caller_id_number%7d@64.136.173.30,sip_from_user=$%7boutbound_caller_id_number%7d,sip_from_host=64.136.173.30%7dsofia/gateway/voip-innovations-outbound/141nnnnnn99”/[/email])>
 
And this one works:
<action application="bridge" data={presence_id=220@fs.bizfocused.com}${sofia_contact(220@fs2.bizfocused.com)} ([email]%7bpresence_id=220@fs.bizfocused.com%7d$%7bsofia_contact(220@fs2.bizfocused.com)%7d,[/email])  />
 
But I can’t do both to work.  Is it possible to bridge to internal and external phones?
 
Thanks,
Sean


_________________________________________________________________________

The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.

Join our online community to chat in real time https://signalwire.community

Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com

Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com



 

--
 

Brian West | Co-founder and Developer
Need Commercial support? email sales@freeswitch.com (sales@freeswitch.com)
FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045
Email: brian@freeswitch.com (brian@freeswitch.com)
Mobile: 918-424-9378
Website: https://www.FreeSWITCH.com
[/url][url=https://twitter.com/freeswitch]














_________________________________________________________________________

The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.

Join our online community to chat in real time https://signalwire.community

Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com

Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com
Back to top
brian at freeswitch.com
Guest





PostPosted: Wed Sep 22, 2021 1:01 pm    Post subject: [Freeswitch-users] bridge to internal phone and cell through Reply with quote

Use XML Curl to dynamically build your dial strings ?

On Wed, Sep 22, 2021 at 12:03 PM Sean Devoy <sdevoy@bizfocused.com (sdevoy@bizfocused.com)> wrote:

Quote:

Thanks, I have leg_delay working in other places. I am trying without it for now.  I just can’t bridge to an internal phone and an external gateway phone in a single bridge.
Anything special there?
 
From: FreeSWITCH-users <freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org)> On Behalf Of Brian West
Sent: Wednesday, September 22, 2021 12:15 PM
To: FreeSWITCH Users Help <freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)>
Subject: Re: [Freeswitch-users] bridge to internal phone and cell through a gateway

 
You're looking for leg_delay, set it inside [] on the legs you want to delay originate on, so you can originate like this:
 

sofia/blah/mydeskphone,[leg_delay=5]sofia/blah/mycellphone

 

gets tricky with sofia_contact unless you use xml_curl to dynamically build the url.

 

/b

 


 
On Wed, Sep 22, 2021 at 10:45 AM Sean Devoy <sdevoy@bizfocused.com (sdevoy@bizfocused.com)> wrote:
Quote:

Hi All,
I have searched for an answer and can’t find anything to explain my problem.
 
Underlying request/problem:  The user wants to ring their desk and after 5 second leg delay (not shown) add their cell phone, then voicemail on the FS server.
 
I did a test with this bridge and it works fine:
<action application="bridge" data=”{sip_from_uri=${outbound_caller_id_number}@64.136.173.30,sip_from_user=${outbound_caller_id_number},sip_from_host=64.136.173.30}sofia/gateway/voip-innovations-outbound/141nnnnnn99”/ ([email]%7bsip_from_uri=$%7boutbound_caller_id_number%7d@64.136.173.30,sip_from_user=$%7boutbound_caller_id_number%7d,sip_from_host=64.136.173.30%7dsofia/gateway/voip-innovations-outbound/141nnnnnn99”/[/email])>
 
And this one works:
<action application="bridge" data={presence_id=220@fs.bizfocused.com}${sofia_contact(220@fs2.bizfocused.com)} ([email]%7bpresence_id=220@fs.bizfocused.com%7d$%7bsofia_contact(220@fs2.bizfocused.com)%7d,[/email])  />
 
But I can’t do both to work.  Is it possible to bridge to internal and external phones?
 
Thanks,
Sean


_________________________________________________________________________

The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.

Join our online community to chat in real time https://signalwire.community

Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com

Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com



 

--
 

Brian West | Co-founder and Developer
Need Commercial support? email sales@freeswitch.com (sales@freeswitch.com)
FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045
Email: brian@freeswitch.com (brian@freeswitch.com)
Mobile: 918-424-9378
Website: https://www.FreeSWITCH.com
[/url][url=https://twitter.com/freeswitch]














_________________________________________________________________________

The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.

Join our online community to chat in real time https://signalwire.community

Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com

Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com



--



Brian West | Co-founder and Developer
Need Commercial support? email sales@freeswitch.com (sales@freeswitch.com)
FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045
Email: brian@freeswitch.com (brian@freeswitch.com)
Mobile: 918-424-9378
Website: https://www.FreeSWITCH.com
[/url] [url=https://twitter.com/freeswitch]
Back to top
brian at freeswitch.com
Guest





PostPosted: Wed Sep 22, 2021 1:14 pm    Post subject: [Freeswitch-users] bridge to internal phone and cell through Reply with quote

That gets four dimensional and confusing for many... just pay close attention to each thing being in its own world Smile

/b
 


On Wed, Sep 22, 2021 at 12:59 PM Avi Marcus <avi@avimarcus.net (avi@avimarcus.net)> wrote:

Quote:
It should work fine to bridge to user/ or Sofia/internal and Sofia/external.

A trick you can try is enterprise originate with :_: between endpoints to put each dial out in its own thread. I think it introduces UUID connection difficulties though, for linking the channels together in the CDRs. 


On Wed, Sep 22, 2021, 7:21 PM Sean Devoy <sdevoy@bizfocused.com (sdevoy@bizfocused.com)> wrote:

Quote:

Thanks, I have leg_delay working in other places. I am trying without it for now.  I just can’t bridge to an internal phone and an external gateway phone in a single bridge.
Anything special there?
 
From: FreeSWITCH-users <freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org)> On Behalf Of Brian West
Sent: Wednesday, September 22, 2021 12:15 PM
To: FreeSWITCH Users Help <freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)>
Subject: Re: [Freeswitch-users] bridge to internal phone and cell through a gateway

 
You're looking for leg_delay, set it inside [] on the legs you want to delay originate on, so you can originate like this:
 

sofia/blah/mydeskphone,[leg_delay=5]sofia/blah/mycellphone

 

gets tricky with sofia_contact unless you use xml_curl to dynamically build the url.

 

/b

 


 
On Wed, Sep 22, 2021 at 10:45 AM Sean Devoy <sdevoy@bizfocused.com (sdevoy@bizfocused.com)> wrote:
Quote:

Hi All,
I have searched for an answer and can’t find anything to explain my problem.
 
Underlying request/problem:  The user wants to ring their desk and after 5 second leg delay (not shown) add their cell phone, then voicemail on the FS server.
 
I did a test with this bridge and it works fine:
<action application="bridge" data=”{sip_from_uri=${outbound_caller_id_number}@64.136.173.30,sip_from_user=${outbound_caller_id_number},sip_from_host=64.136.173.30}sofia/gateway/voip-innovations-outbound/141nnnnnn99”/ ([email]%7bsip_from_uri=$%7boutbound_caller_id_number%7d@64.136.173.30,sip_from_user=$%7boutbound_caller_id_number%7d,sip_from_host=64.136.173.30%7dsofia/gateway/voip-innovations-outbound/141nnnnnn99”/[/email])>
 
And this one works:
<action application="bridge" data={presence_id=220@fs.bizfocused.com}${sofia_contact(220@fs2.bizfocused.com)} ([email]%7bpresence_id=220@fs.bizfocused.com%7d$%7bsofia_contact(220@fs2.bizfocused.com)%7d,[/email])  />
 
But I can’t do both to work.  Is it possible to bridge to internal and external phones?
 
Thanks,
Sean


_________________________________________________________________________

The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.

Join our online community to chat in real time https://signalwire.community

Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com

Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com



 

--
 

Brian West | Co-founder and Developer
Need Commercial support? email sales@freeswitch.com (sales@freeswitch.com)
FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045
Email: brian@freeswitch.com (brian@freeswitch.com)
Mobile: 918-424-9378
Website: https://www.FreeSWITCH.com
[/url][url=https://twitter.com/freeswitch]














_________________________________________________________________________

The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.

Join our online community to chat in real time https://signalwire.community

Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com

Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com

_________________________________________________________________________

The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.

Join our online community to chat in real time https://signalwire.community

Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com

Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com



--



Brian West | Co-founder and Developer
Need Commercial support? email sales@freeswitch.com (sales@freeswitch.com)
FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045
Email: brian@freeswitch.com (brian@freeswitch.com)
Mobile: 918-424-9378
Website: https://www.FreeSWITCH.com
[/url] [url=https://twitter.com/freeswitch]
Back to top
avi at avimarcus.net
Guest





PostPosted: Wed Sep 22, 2021 3:55 pm    Post subject: [Freeswitch-users] bridge to internal phone and cell through Reply with quote

I was going to suggest seeing what ${sofia_contact(220@fs.bizfocused.com (220@fs.bizfocused.com))} expands to, but it looks like {} is a problem - it's {variable_scope=thread_global} so I think you can't have multiple ones, and definitely not in the middle of the dial string.


Rewrite it with local variables [] like this:


<action application="bridge" data="[presence_id=220@fs.bizfocused.com (220@fs.bizfocused.com)]${sofia_contact(220@fs.bizfocused.com (220@fs.bizfocused.com))}, [sip_from_uri=4104207777@64.136.173.30 (4104207777@64.136.173.30),sip_from_user=4104207777,sip_from_host=64.136.173.30]sofia/gateway/voip-innovations-outbound/14105551212"/>

-Avi Marcus
BestFone









On Wed, Sep 22, 2021 at 10:46 PM Sean Devoy <sdevoy@bizfocused.com (sdevoy@bizfocused.com)> wrote:

Quote:

I am confused. There is nothing dynamic. I want to dial internal extension 220 and out to my VSP to a cell number.
 
Why does this not work:
<action application="bridge" data={presence_id=220@fs.bizfocused.com}${sofia_contact(220@fs.bizfocused.com)}, {sip_from_uri=4104207777@64.136.173.30,sip_from_user=4104207777,sip_from_host=64.136.173.30}sofia/gateway/voip-innovations-outbound/14105551212 ([email]%7bpresence_id=220@fs-bfis2.bizfocused.com%7d$%7bsofia_contact(220@fs-bfis2.bizfocused.com)%7d,%20%7bsip_from_uri=4104207777@64.136.173.30,sip_from_user=4104207777,sip_from_host=64.136.173.30%7dsofia/gateway/voip-innovations-outbound/14105551212[/email])”/>
 
but either half does works fine.
 
From: FreeSWITCH-users <freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org)> On Behalf Of Brian West
Sent: Wednesday, September 22, 2021 1:10 PM
To: FreeSWITCH Users Help <freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)>
Subject: Re: [Freeswitch-users] bridge to internal phone and cell through a gateway

 
Use XML Curl to dynamically build your dial strings ?

 
On Wed, Sep 22, 2021 at 12:03 PM Sean Devoy <sdevoy@bizfocused.com (sdevoy@bizfocused.com)> wrote:
Quote:

Thanks, I have leg_delay working in other places. I am trying without it for now.  I just can’t bridge to an internal phone and an external gateway phone in a single bridge.
Anything special there?
 
From: FreeSWITCH-users <freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org)> On Behalf Of Brian West
Sent: Wednesday, September 22, 2021 12:15 PM
To: FreeSWITCH Users Help <freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)>
Subject: Re: [Freeswitch-users] bridge to internal phone and cell through a gateway

 
You're looking for leg_delay, set it inside [] on the legs you want to delay originate on, so you can originate like this:
 

sofia/blah/mydeskphone,[leg_delay=5]sofia/blah/mycellphone

 

gets tricky with sofia_contact unless you use xml_curl to dynamically build the url.

 

/b

 


 
On Wed, Sep 22, 2021 at 10:45 AM Sean Devoy <sdevoy@bizfocused.com (sdevoy@bizfocused.com)> wrote:
Quote:

Hi All,
I have searched for an answer and can’t find anything to explain my problem.
 
Underlying request/problem:  The user wants to ring their desk and after 5 second leg delay (not shown) add their cell phone, then voicemail on the FS server.
 
I did a test with this bridge and it works fine:
<action application="bridge" data=”{sip_from_uri=${outbound_caller_id_number}@64.136.173.30,sip_from_user=${outbound_caller_id_number},sip_from_host=64.136.173.30}sofia/gateway/voip-innovations-outbound/141nnnnnn99”/ ([email]%7bsip_from_uri=$%7boutbound_caller_id_number%7d@64.136.173.30,sip_from_user=$%7boutbound_caller_id_number%7d,sip_from_host=64.136.173.30%7dsofia/gateway/voip-innovations-outbound/141nnnnnn99”/[/email])>
 
And this one works:
<action application="bridge" data={presence_id=220@fs.bizfocused.com}${sofia_contact(220@fs2.bizfocused.com)} ([email]%7bpresence_id=220@fs.bizfocused.com%7d$%7bsofia_contact(220@fs2.bizfocused.com)%7d,[/email])  />
 
But I can’t do both to work.  Is it possible to bridge to internal and external phones?
 
Thanks,
Sean


_________________________________________________________________________

The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.

Join our online community to chat in real time https://signalwire.community

Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com

Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com



 

--
 

Brian West | Co-founder and Developer
Need Commercial support? email sales@freeswitch.com (sales@freeswitch.com)
FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045
Email: brian@freeswitch.com (brian@freeswitch.com)
Mobile: 918-424-9378
Website: https://www.FreeSWITCH.com
[/url][url=https://twitter.com/freeswitch]















_________________________________________________________________________

The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.

Join our online community to chat in real time https://signalwire.community

Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com

Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com



 

--
 

Brian West | Co-founder and Developer
Need Commercial support? email sales@freeswitch.com (sales@freeswitch.com)
FreeSWITCH Solutions | 17345 Civic Drive #2531 Brookfield, WI 53045
Email: brian@freeswitch.com (brian@freeswitch.com)
Mobile: 918-424-9378
Website: https://www.FreeSWITCH.com
[/url][url=https://twitter.com/freeswitch]














_________________________________________________________________________

The FreeSWITCH project is sponsored by SignalWire https://signalwire.com
Enhance your FreeSWITCH install with disruptive priced SMS and PSTN services.
Build your next product on our scalable cloud platform.

Join our online community to chat in real time https://signalwire.community

Professional FreeSWITCH Services
sales@freeswitch.com (sales@freeswitch.com)
https://freeswitch.com

Official FreeSWITCH Sites
https://freeswitch.com/oss
https://freeswitch.org/confluence
https://cluecon.com

FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
https://freeswitch.com
Back to top
Display posts from previous:   
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
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

VoiceMeUp - Corporate & Wholesale VoIP Services