Hello All,<br>I had the Call Pickup tested successfully with Polycom Phones and Opensips Devel version. Just for anyone with a similar knowledge deficiency, here are the things that take place in a Call-Pickup Scenario using Event: Dialog. Might help someone :)<br>
<br>1) Scenario: A calls B, and C tries to pickup the call and get connected to A.<br>2) A calls B and B is now ringing. Dialog State is now Early.<br>3) The pua_dialoginfo module takes care of sending PUBLISH requests on behalf of the caller and callee to the presense server.<br>
4) Make sure you set the caller_spec and callee_spec parameter so that the PUBLISH requests are sent properly.<br>5) In Polycom, you need to enable Directed Pickup from the configuration file so as to get a Pickup softkey when you press &quot;New Call&quot;.<br>
6) When you press the Pickup button, it gives option to dial the number that you wish to pickup.<br>7) From C Endpoint, Dial B and press &quot;Directd&quot; softkey on Polycom.<br>8) This first sends a SUBSCRIBE request to opensips, with Event: Dialog and Accept: application/dialog-info+xml Headers.<br>
9) Opensips should reply with NOTIFY with body containing the dialog information of B. This is very well explained in the pua_dialoginfo module documentation. The NOTIFY primarily contains call-id, tags and local/remote elements.<br>
10) The C then again sends an INVITE to opensips with replaces header containing callid, to-tag, from-tag. The replaces header in the INVITE looks somewhat like this: Replaces: 3f014841f05d7540;to-tag=b43ffb05;from-tag=C3F7DCE0-75F885;early-only<br>
11) Opensips relays this to A.<br>12) A then sends a CANCEL to the request generated for B.<br>13) Transaction at B gets Cancelled.<br>13) A then sends a 200 OK and gets connected to C.<br><br>The call initiated by A to B is thus picked up by C. Here is the sample configuration file which does this. Please note: This config file does not have any authentication/authorization set and is only meant to test the call pickup scenario.<br>
<br>####### Global Parameters #########<br><br>debug=3<br>log_stderror=no<br>log_facility=LOG_LOCAL0<br><br>fork=yes<br>children=4<br><br>disable_tcp=yes<br><br>listen=udp:203.XXX.53.XXX:5060<br><br><br>####### Modules Section ########<br>
<br>#set module path<br>mpath=&quot;/usr/local/lib64/opensips/modules/&quot;<br><br>/* uncomment next line for MySQL DB support */<br>loadmodule &quot;db_mysql.so&quot;<br>loadmodule &quot;signaling.so&quot;<br>loadmodule &quot;sl.so&quot;<br>
loadmodule &quot;tm.so&quot;<br>loadmodule &quot;rr.so&quot;<br>loadmodule &quot;maxfwd.so&quot;<br>loadmodule &quot;usrloc.so&quot;<br>loadmodule &quot;registrar.so&quot;<br>loadmodule &quot;sipmsgops.so&quot;<br>loadmodule &quot;textops.so&quot;<br>
loadmodule &quot;mi_fifo.so&quot;<br>loadmodule &quot;uri.so&quot;<br>loadmodule &quot;dialog.so&quot;<br>loadmodule &quot;nathelper.so&quot;<br>loadmodule &quot;nat_traversal.so&quot;<br>loadmodule &quot;presence.so&quot;<br>
loadmodule &quot;presence_xml.so&quot;<br>loadmodule &quot;presence_dialoginfo.so&quot;<br>loadmodule &quot;pua.so&quot;<br>loadmodule &quot;pua_dialoginfo.so&quot;<br><br># ----------------- setting module-specific parameters ---------------<br>
<br>modparam(&quot;mi_fifo&quot;, &quot;fifo_name&quot;, &quot;/tmp/opensips_fifo&quot;)<br><br>modparam(&quot;rr&quot;, &quot;append_fromtag&quot;, 0)<br><br>modparam(&quot;usrloc&quot;, &quot;db_mode&quot;, 0)<br><br>modparam(&quot;uri&quot;, &quot;use_uri_table&quot;, 0)<br>
<br>modparam(&quot;nat_traversal&quot;, &quot;keepalive_interval&quot;, 25)<br>modparam(&quot;nat_traversal&quot;, &quot;keepalive_from&quot;, &quot;<a href="mailto:sip%3Akeepalive@novanet.net">sip:keepalive@novanet.net</a>&quot;)<br>
<br>modparam(&quot;dialog&quot;, &quot;dlg_match_mode&quot;, 1)<br>modparam(&quot;dialog&quot;, &quot;db_mode&quot;, 0)<br><br>modparam(&quot;presence&quot;, &quot;db_url&quot;, &quot;mysql://user:password@localhost/novanet&quot;)<br>
modparam(&quot;presence&quot;, &quot;server_address&quot;, &quot;sip:203.XXX.53.XXX:5060&quot;)<br>modparam(&quot;presence&quot;, &quot;mix_dialog_presence&quot;, 1)<br>modparam(&quot;presence&quot;, &quot;fallback2db&quot;, 1)<br>
<br>modparam(&quot;presence_xml&quot;, &quot;force_active&quot;, 1)<br><br>modparam(&quot;pua&quot;, &quot;db_table&quot;, &quot;pua&quot;)<br>modparam(&quot;pua&quot;, &quot;db_url&quot;, &quot;mysql://user:password@localhost/novanet&quot;)<br>
<br>modparam(&quot;presence_dialoginfo&quot;, &quot;force_single_dialog&quot;, 1)<br><br>modparam(&quot;pua_dialoginfo&quot;, &quot;caller_spec_param&quot;, &quot;$avp(caller)&quot;)<br>modparam(&quot;pua_dialoginfo&quot;, &quot;callee_spec_param&quot;, &quot;$avp(callee)&quot;)<br>
<br><br>modparam(&quot;presence_xml&quot;, &quot;integrated_xcap_server&quot;, 1)<br><br>#---Routing Logic Begins---<br><br>route{<br><br>    if (!mf_process_maxfwd_header(&quot;10&quot;)) {<br>        sl_send_reply(&quot;483&quot;,&quot;Too Many Hops&quot;);<br>
        exit;<br>    }<br>    <br>    # record routing<br>    if (!is_method(&quot;REGISTER|MESSAGE&quot;)) {<br>        record_route();<br>    }<br>    <br>    if (is_method(&quot;SUBSCRIBE&quot;) || is_method(&quot;PUBLISH&quot;)) {<br>
        route(presence_requests);<br>        exit;<br>    }<br>    <br>    if (is_method(&quot;INVITE&quot;) &amp;&amp; !has_totag()) {<br>        if(client_nat_test(&quot;7&quot;)) {<br>            add_rr_param(&quot;;nat=yes&quot;); #---To identify the NATed clients and Record Route properly---<br>
        }<br>    }<br><br>    if (has_totag()) {<br>        if (loose_route()) {<br>            if (is_method(&quot;INVITE&quot;) || is_method(&quot;UPDATE&quot;) || is_method(&quot;ACK&quot;) || is_method(&quot;BYE&quot;)) {<br>
                if (search(&quot;^Route:.*;nat=yes&quot;)) {<br>                    force_rport();<br>                    fix_nated_contact();<br>                }<br>            }<br>            t_relay();<br>            exit;<br>
        } else {<br>            if ( is_method(&quot;ACK&quot;) ) {<br>                if ( t_check_trans() ) {<br>                    t_relay();<br>                    exit;<br>                } else {<br>                    exit;<br>
                }<br>            }<br>            sl_send_reply(&quot;404&quot;,&quot;Not here&quot;);<br>        }<br>        exit;<br>    }<br><br>        <br>    if (is_method(&quot;CANCEL&quot;))<br>    {<br>        if (t_check_trans()) {<br>
            route(nat_check);<br>            t_relay();<br>        }<br>        exit;<br>    }<br><br>    t_check_trans();<br><br>    if (loose_route()) {<br>        if (!is_method(&quot;ACK&quot;))<br>            sl_send_reply(&quot;403&quot;,&quot;Preload Route denied&quot;);<br>
        exit;<br>    }<br><br>    if (is_method(&quot;INVITE&quot;)) {<br>        create_dialog();<br>        route(invite_requests);<br>        exit;<br>    }<br>    <br>    if (is_method(&quot;REGISTER&quot;))<br>    {<br>
        route(nat_check);<br>        if (!save(&quot;location&quot;))<br>            sl_reply_error();<br><br>        exit;<br>    }<br>}<br><br><br>route[1] {<br>    <br>    if (!t_relay()) {<br>        sl_reply_error();<br>
    };<br>    exit;<br>}<br><br>route[nat_check] {<br>    if (client_nat_test(&quot;7&quot;)) {<br>        force_rport();<br>        fix_nated_contact();<br>        nat_keepalive();<br>    }<br>}<br><br>route[invite_requests] {<br>
    route(nat_check);<br><br>    if(!lookup(&quot;location&quot;)) {<br>        sl_send_reply(&quot;404&quot;, &quot;User Not Found&quot;);<br>        exit;<br>    }<br>    <br>    $var(caller) = &quot;sip:&quot;+$fU+&quot;@203.XXX.53.XXX&quot;;<br>
    $var(callee) = &quot;sip:&quot;+$rU+&quot;@203.XXX.53.XXX&quot;;<br>    <br>    $avp(caller) = $var(caller);<br>    $avp(callee) = $var(callee);<br>    <br>    dialoginfo_set(&quot;B&quot;);<br>    t_on_reply(&quot;1&quot;);<br>
    t_relay();<br>}<br><br>route[presence_requests] {<br>    route(nat_check);<br>    <br>    if(is_method(&quot;PUBLISH&quot;)) {<br>        handle_publish();<br>    }<br>    <br>    if(is_method(&quot;SUBSCRIBE&quot;)) {<br>
        handle_subscribe(&quot;1&quot;);<br>    }<br>}<br><br>onreply_route[1] {<br>    if(client_nat_test(&quot;1&quot;)) {<br>        fix_nated_contact();<br>    }<br>    <br>    if(t_was_cancelled()) {<br>        exit;<br>
    }<br>}<br><br><div class="gmail_quote">On Mon, Mar 5, 2012 at 12:02 PM, Jayesh Nambiar <span dir="ltr">&lt;<a href="mailto:jayesh.voip@gmail.com">jayesh.voip@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hello Everyone,<br>I have been reading all the posts and examples regarding the call pickup implementation using opensips but still could not get a clear idea on how make it work in a simplified way.<br>Basically I have the following questions:<br>

1) Does it require for the endpoint to SUBSCRIBE for the users whose dialog state it needs to learn?<br>2) Is it possible that we enter some values in a database which opensips can look into and decide which all users should get a NOTIFY for the dialog states of a particular user? Some values in xcap table probably, which will tell opensips about whom to NOTIFY when there is a call for a specific user.<br>

3) If I am looking at only implementing the pickup scenario and no other presence related features, is it possible that only the dialog-event states are PUBLISHED and no other Presence events are required to be PUBLISHED and NOTIFIED?<br>

4) Please correct me if I am wrong; When A calls B and C needs to Pick it up, C should first receive a NOTIFY from Opensips consisting of local/remote elements, C can then send an INVITE with replaces header and the call will be Picked up. I just wanted to make sure if my understanding is correct here.<br>

<br>Finally, is it in some way possible to just use the dialog module and patch/bridge the call of the caller with the one who is trying to pick up as we are aware of the ongoing dialogs? Something like it is explained here:<br>

<a href="http://opensips.org/pipermail/users/2012-January/020476.html" target="_blank">http://opensips.org/pipermail/users/2012-January/020476.html</a><br>In the above post, the call can be caught in the failure route, but can it be bridged to the person who is trying to PickUp. Any examples of how to achieve this will be very much appreciated.<br>

<br>Thanks,<br><br>--- Jayesh <br>
</blockquote></div><br>