[Freeswitch-users] Presence Feature

2009-09-03 Thread Jerry Richards
Does Freeswitch support Presence via SIMPLE protocol? Can it maintain presence? I presume this would be a SUBSCRIBE/NOTIFY arrangement? Best Regards, Jerry ___ FreeSWITCH-users mailing list FreeSWITCH-users@lists.freeswitch.org http://lists.freeswitc

Re: [Freeswitch-users] Presence Feature

2009-09-03 Thread Diego Viola
Not sure if it does via SIMPLE protocol, but if you do "event plain all" you should see the PRESENCE_IN and PRESENCE_OUT events. Diego On Thu, Sep 3, 2009 at 6:40 PM, Jerry Richards wrote: > Does Freeswitch support Presence via SIMPLE protocol? Can it maintain > presence? I presume this would

Re: [Freeswitch-users] Presence Feature

2009-09-03 Thread Diego Viola
I have made a simple script that catches the PRESENCE IN/OUT events and passes them to a method to get the information for the phones, you can take a look at it here. http://fisheye.freeswitch.org/browse/FreeSWITCH/contrib/diegoviola/ruby/presence/presence.rb?r=14679 Diego On Thu, Sep 3, 2009 at

Re: [Freeswitch-users] Presence Feature

2009-09-03 Thread Luis F Urrea
Diego can you explain a little bit further what your script does. Not really versed into ruby but I certainly interested on these events On Thu, Sep 3, 2009 at 1:30 PM, Diego Viola wrote: > I have made a simple script that catches the PRESENCE IN/OUT events and > passes them to a method to get

Re: [Freeswitch-users] Presence Feature

2009-09-03 Thread Diego Viola
Hi Luis, My script simply adds two event hooks for presence (PRESENCE_IN and PRESENCE_OUT) and then it passes those events to a method (presence_handler) and it prints the "from" which is something like: 1000%192.168.0.2 (the user and ip) and the status: which can be Registered or Unregistered. T

Re: [Freeswitch-users] Presence Feature

2009-09-03 Thread Diego Viola
You should try to do something like "event plain all" from the freeswitch CLI and see all the events that you can use in your apps, etc. The sky is the limit ;) Diego On Thu, Sep 3, 2009 at 8:46 PM, Diego Viola wrote: > Hi Luis, > > My script simply adds two event hooks for presence (PRESENCE_

Re: [Freeswitch-users] Presence Feature

2009-09-03 Thread Meftah Tayeb
freeswitch support all sip standard featurs including presence/ blf/... and all featurs that sofia sip support is supported by freeswitch, + aditional featurs thanks and welcome to freeswitch! Jerry Richards wrote: > Does Freeswitch support Presence via SIMPLE protocol? Can it maintain > presence