I have a couple of issues with transferring calls when my SIP provider is involved.<div><br></div><div>Issue #1 - Call comes from SIP Provider to Customer A100.  Customer A100 picks up.  Customer A100 transfers call to Customer A102.  While Customer A102&#39;s phone is ringing the SIP Provider user on the line doesn&#39;t hear anything at all.</div>
<div><br></div><div>Issue #2 - Call comes from Customer A100 to someone on the PSTN network via my SIP Provider.  PSTN user picks up.  Customer A100 transfers call to Customer A102.  This fails because SIP Provider sends me a 603 Decline.</div>
<div><br></div><div><br></div><div>I have talked with my provider and they say both scenarios are due to the fact that I am sending a Re-Invite without any SDP message.  On my B2BUA OpenSIPS server I am using the REFER scenario and also have the following in my config</div>
<div>modparam(&quot;b2b_logic&quot;, &quot;use_init_sdp&quot;, 1)</div><div><br></div><div>Here is my refer b2bua script</div><div><br></div><div><div>&lt;?xml version=&quot;1.0&quot;?&gt;</div><div>&lt;scenario id=&quot;refer&quot; name=&quot;Handle refer at server&quot; param=&quot;0&quot; type=&quot;script&quot;&gt;</div>
<div>  &lt;init&gt;</div><div>    &lt;bridge&gt;</div><div>      &lt;server&gt;</div><div>        &lt;id&gt;server1&lt;/id&gt;</div><div>      &lt;/server&gt;</div><div>      &lt;client&gt;</div><div>        &lt;id&gt;client1&lt;/id&gt;</div>
<div>        &lt;type&gt;message&lt;/type&gt;</div><div>        &lt;destination&gt;</div><div>          &lt;value type=&quot;initial&quot;&gt;server1&lt;/value&gt;</div><div>        &lt;/destination&gt;</div><div>      &lt;/client&gt;</div>
<div>    &lt;/bridge&gt;</div><div>  &lt;/init&gt;</div><div><br></div><div>  &lt;rules&gt;</div><div>     &lt;request&gt;</div><div>       &lt;refer&gt;</div><div>         &lt;rule id=&quot;1&quot;&gt;</div><div>           &lt;action&gt;</div>
<div>             &lt;send_reply&gt;</div><div>               &lt;code&gt;202&lt;/code&gt;</div><div>               &lt;reason&gt;Accepted&lt;/reason&gt;</div><div>             &lt;/send_reply&gt;</div><div>             &lt;end_dialog_leg/&gt;</div>
<div>             &lt;bridge&gt;</div><div>               &lt;client&gt;</div><div>                 &lt;peer/&gt;</div><div>               &lt;/client&gt;</div><div>               &lt;client&gt;</div><div>                 &lt;id&gt;client2&lt;/id&gt;</div>
<div>                 </div><div>                 &lt;destination&gt;</div><div>                   &lt;value type=&quot;header&quot;&gt;Refer-To&lt;/value&gt;</div><div>                 &lt;/destination&gt;</div><div>               &lt;/client&gt;</div>
<div>             &lt;/bridge&gt;</div><div>           &lt;/action&gt;</div><div>         &lt;/rule&gt;</div><div>       &lt;/refer&gt;</div><div>    &lt;/request&gt;</div><div>  &lt;/rules&gt;</div><div>&lt;/scenario&gt;</div>
</div><div><br></div><div><br></div><div>Anyone have an idea what I am doing wrong?</div>