Sponsor: VoiceMeUp - Corporate & Wholesale VoIP Services

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

[Freeswitch-users] FS is not suitable for MESSAGE, is it?


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





PostPosted: Wed Nov 19, 2008 5:13 am    Post subject: [Freeswitch-users] FS is not suitable for MESSAGE, is it? Reply with quote

Hi, I'm starting with FS and still don't handle very well the dialplan
syntax, but anyway I've realized that FS is not suitable for sending
MESSAGE (instead of INVITE).

I've registered two "internal" users (the default config): 1000 and 1001:

a) INVITE between internal users:
- 1000 calls 1001
- FS asks for authentication
- 1000 resends the INVITE with authorization headers.
- FS calls 1001
- 1001 answers
- FS brigdes the call by sending 200 to 1000.

b) INVITE to external user:
- 1000 calls sip:bob@external_domain.com
- FS asks for authentication
- 1000 resends the INVITE with authorization headers.
- FS replies 404.

c) MESSAGE between internal users:
- 1000 sends MESSAGE to 1001
- FS ***doesn't** ask for authentication <---- !!!!!!!
- FS replies 200 OK directly
- FS sends the MESSAGE to 1001
- 1001 replies 200 OK to FS

d) MESSAGE to external user:
- 1000 sends MESSAGE to sip:bob@external_domain.com
- FS ***doesn't** ask for authentication <---- !!!!!!!
- FS replies 200 OK directly
- FS ***doesn't*** send the MESSAGE to the destination user.


Well, I think it's obvious that FS MESSAGE handling is not coherent.
Opinions? is there something to do?

Thanks.








--
IƱaki Baz Castillo
<ibc@aliax.net>
_______________________________________________
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
brian at freeswitch.org
Guest





PostPosted: Wed Nov 19, 2008 6:31 am    Post subject: [Freeswitch-users] FS is not suitable for MESSAGE, is it? Reply with quote

On Nov 19, 2008, at 4:12 AM, Ińaki Baz Castillo wrote:
Quote:
Hi, I'm starting with FS and still don't handle very well the dialplan
syntax, but anyway I've realized that FS is not suitable for sending
MESSAGE (instead of INVITE).

I've registered two "internal" users (the default config): 1000 and 1001:

a) INVITE between internal users:
- 1000 calls 1001
- FS asks for authentication
- 1000 resends the INVITE with authorization headers.
- FS calls 1001
- 1001 answers
- FS brigdes the call by sending 200 to 1000.

b) INVITE to external user:
- 1000 calls [url=sip:bob@external_domain.com]sip:bob@external_domain.com[/url]
- FS asks for authentication
- 1000 resends the INVITE with authorization headers.
- FS replies 404.


You're not fully understanding FreeSWITCH yet... You also have to catch this scenario in the dialplan.


<extension name="external_sip_uri" continue="true">
<condition field="source" expression="mod_sofia"/>
<condition field="${domain_exists(${sip_req_host})}" expression="true">
<anti-action application="bridge" data="sofia/internal/${sip_to_uri}"/>
</condition>
</extension>


Something like that would work and its commented out in the defaults. Remember we aren't a proxy. So your phone is sending the invite directed at FreeSWITCH looking for bob in the context and since it can't find it... 404 not found. The above example checks if the sip_req_host is a local domain.. if not then lets send it out.




Quote:


c) MESSAGE between internal users:
- 1000 sends MESSAGE to 1001
- FS ***doesn't** ask for authentication <---- !!!!!!!
- FS replies 200 OK directly
- FS sends the MESSAGE to 1001
- 1001 replies 200 OK to FS


<param name="auth-all-packets" value="true"/>


B2BUA still.

Quote:


d) MESSAGE to external user:
- 1000 sends MESSAGE to [url=sip:bob@external_domain.com]sip:bob@external_domain.com[/url]
- FS ***doesn't** ask for authentication <---- !!!!!!!
- FS replies 200 OK directly
- FS ***doesn't*** send the MESSAGE to the destination user.


To route you must use the sip+user@domain.com ([email]sip+user@domain.com[/email]) to route this stuff properly since we can bridge various technologies together.


If you search the mailing list Mike Jerris explained this in detail about a week or so ago.


/b



Quote:



Well, I think it's obvious that FS MESSAGE handling is not coherent.
Opinions? is there something to do?

Thanks.
Back to top
ibc at aliax.net
Guest





PostPosted: Wed Nov 19, 2008 7:41 am    Post subject: [Freeswitch-users] FS is not suitable for MESSAGE, is it? Reply with quote

2008/11/19 Brian West <brian@freeswitch.org>:

Quote:
You're not fully understanding FreeSWITCH yet... You also have to catch
this scenario in the dialplan.
<extension name="external_sip_uri" continue="true">
<condition field="source" expression="mod_sofia"/>
<condition field="${domain_exists(${sip_req_host})}"
expression="true">
<anti-action application="bridge"
data="sofia/internal/${sip_to_uri}"/>
</condition>
</extension>
Something like that would work and its commented out in the defaults.
Remember we aren't a proxy. So your phone is sending the invite directed
at FreeSWITCH looking for bob in the context and since it can't find it...
404 not found. The above example checks if the sip_req_host is a local
domain.. if not then lets send it out.

Thanks, but I still don't understand why I don't get a 404 when I send
a MESSAGE to an external user. I understand this is a B2BUA, and AFAIF
the behaviour is:


1) Transparent B2BUA for INVITE (no PlayBack, announce...). Call success:

1000 (dialog 1) FS (dialog 2) 1001

INVITE --------------->
INVITE --------------->
<------------------- 200
<------------------- 200
ACK ------------------>
ACK ------------------>


2) Transparent B2BUA for INVITE (no PlayBack, announce...). Call NO success:

1000 (dialog 1) FS (dialog 2) 1001

INVITE --------------->
INVITE --------------->
<------------------- 486
<------------------- 486
ACK ------------------>
ACK ------------------>


3) Transparent B2BUA for MESSAGE. Success:

1000 (leg 1) FS (leg 2) 1001

MESSAGE ------------>
MESSAGE -------->
<------------------- 200
<------------------- 200


4) Transparent B2BUA for MESSAGE. NO Success:

1000 (leg 1) FS (leg 2) 1001

MESSAGE ------------>
MESSAGE -------->
<------------------- 4XX
<------------------- 4XX


But it seems that FS always replies 200 to the MESSAGE in leg A even
if FS is not capable of delivering it to a remote destination.
In my previous mail, when I send a MESSAGE to an external user, FS
accepts the MESSAGE and replies directly 200 OK, so the user expects
the MESSAGE has been received by the *remote* user (the user sending
the MESSAGE doesn't care if FS is a pure SIP proxy or a B2BUA).



Quote:
c) MESSAGE between internal users:
- 1000 sends MESSAGE to 1001
- FS ***doesn't** ask for authentication <---- !!!!!!!
- FS replies 200 OK directly
- FS sends the MESSAGE to 1001
- 1001 replies 200 OK to FS

<param name="auth-all-packets" value="true"/>

Great! Thanks.



Quote:
d) MESSAGE to external user:
- 1000 sends MESSAGE to sip:bob@external_domain.com
- FS ***doesn't** ask for authentication <---- !!!!!!!
- FS replies 200 OK directly
- FS ***doesn't*** send the MESSAGE to the destination user.

To route you must use the sip+user@domain.com to route this stuff properly
since we can bridge various technologies together.

Sorry, is it a typo and you mean "sip:user@domain.com"?


Quote:
If you search the mailing list Mike Jerris explained this in detail about a
week or so ago.

I will search for it, thanks a lot.





--
IƱaki Baz Castillo
<ibc@aliax.net>
_______________________________________________
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
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