b_ball_henry at hotmai... Guest
|
Posted: Fri Aug 21, 2009 3:17 am Post subject: [Freeswitch-users] Dialing SIP URL issue |
|
|
Hi:
I try to dial sip url from my softphone but seems like the sip address is being processed by sofia before it pass to the dialplan. The example here is :
X-lite(softphone) dials -> 1009@4.2.2.2 (1009@4.2.2.2) (it's fake sip address, the purpose was just to test what's being passed to dialplan) sofia receives the invite and return with trying sofia pass the destination number to dailplan with "1009" (without the "sip:" in front and without the "@4.2.2.2" after it)
Please see pastebin for full log. http://pastebin.freeswitch.org/10089
ignore anything after line 80, because it's not my point, and the destination is a fake address.
I would like to know how do you actually pass a full sip url to the dialplan to do the regex match. Because from the default.xml dialplan, it comes with an example sip url dialing extension that match's ^sip:(.*)$ . So I assume there must be a way of passing full sip url to the dialplan. Here is the example dialplan expecting sofia to pass it a full sip url:
<!-- dial via SIP uri --> <extension name="sip_uri"> <condition field="destination_number" expression="^sip:(.*)$"> <action application="bridge" data="sofia/${use_profile}/$1"/> </condition> </extension>
Thanks
--
Henry Huang |
|