Hello,<br>it is my understanding that FreeSWITCH doesn&#39;t provide a ParkServer per se.<br><br>So, to provide for this, I will have an entry in the dialplan to play MOH on the channel continuously till someone retrieve the call.<br>
And then, I need to publish a NOTIFY to all subscribed users informing the status of the park orbit.<br><br>From the wiki (<a href="http://wiki.freeswitch.org/wiki/PRESENCE_IN_event_example">http://wiki.freeswitch.org/wiki/PRESENCE_IN_event_example</a>), it seems I could use &quot;sendevent PRESENCE_IN&quot; for this, but I was unable to figure out how the message must be sent to fill all required attributes in the xml.<br>
>From the examples, I managed to send a NOTIFY with a content like this<br><br>&lt;?xml version=&quot;1.0&quot;?&gt;<br>&lt;dialog-info xmlns=&quot;urn:ietf:params:xml:ns:dialog-info&quot; version=&quot;&quot; state=&quot;full&quot; entity=&quot;<a href="mailto:sip%3Aparkserver@test1.com">sip:parkserver@test1.com</a>&quot;&gt;<br>
&lt;dialog id=&quot;&quot; direction=&quot;recipient&quot;&gt;<br>&lt;state&gt;confirmed&lt;/state&gt;<br>&lt;/dialog&gt;<br>&lt;/dialog-info&gt;<br><br>but I actually need to send it like this:<br><br>&lt;?xml version=&quot;1.0&quot;?&gt;<br>
&lt;dialog-info xmlns=&quot;urn:ietf:params:xml:ns:dialog-info&quot; version=&quot;0&quot; state=&quot;full&quot; entity=&quot;<a href="mailto:sips%3Aparkserver@test1.com">sips:parkserver@test1.com</a>;orbit=1234&quot;&gt;<br>
&lt;dialog id=&quot;94992014524&quot; <br>  call-id=&quot;<a href="mailto:12345600@atlanta.example.com">12345600@atlanta.example.com</a>&quot;<br>  local-tag=&quot;3145678&quot;<br>  remote-tag=&quot;1234567&quot;<br>  direction=&quot;recipient&quot;<br>
  remote-uri=&quot;<a href="mailto:alice@atlanta.example.com">alice@atlanta.example.com</a>&quot;<br>  remote-target=&quot;<a href="mailto:alice@client.atlanta.example.com">alice@client.atlanta.example.com</a>&quot;&gt;<br>
&lt;state&gt;confirmed&lt;/state&gt;<br>&lt;/dialog&gt;<br>&lt;/dialog-info&gt;<br><br>So, is it possible to set the lacking attributes? (I&#39;ve tried to set content-length and pass the xml to sendevent, but nothing changed).<br>
<br>br,<br>takeshi