<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div class="elementToProof ContentPasted0" style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0); background-color:rgb(255,255,255)">
Hello,<br>
</div>
<div class="elementToProof ContentPasted0" style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0); background-color:rgb(255,255,255)">
<br>
</div>
<div class="elementToProof ContentPasted0" style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0); background-color:rgb(255,255,255)">
The invite is relayed from OpenSIPS to Asterisk. Asterisk<span style="background-color:rgb(255, 255, 255);display:inline !important" class="FluidPluginCopy ContentPasted3"> has UAS role here.<span class="ContentPasted3"> </span></span><br>
</div>
<div class="elementToProof ContentPasted0" style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0); background-color:rgb(255,255,255)">
<span class="FluidPluginCopy ContentPasted1" style="background-color:rgb(255,255,255); display:inline!important">The data i'm hoping to transfer to OPENSIPS should be sent either with the 200 OK (Asterisk to OpenSIPS), during the call, or via BYE. <br>
</span></div>
<div class="elementToProof ContentPasted0" style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0); background-color:rgb(255,255,255)">
So neither PJSIP_HEADER nor PJSIP_RESPONSE_HEADER can help with my usecase.<br>
</div>
<div class="elementToProof ContentPasted0 ContentPasted2" style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0); background-color:rgb(255,255,255)">
I have already used  pjsip session refresh to renegotiate media codecs during a call, but i've never tried adding an extraheader to the re-invite/update method.</div>
<div class="_Entity _EType_OWALinkPreview _EId_OWALinkPreview _EReadonly_1"></div>
<div class="elementToProof" style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0); background-color:rgb(255,255,255)">
I will try this asap, thank you for the detailed answer.<br>
<br>
<br>
</div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>De :</b> Users <users-bounces@lists.opensips.org> de la part de Gregory Massel <greg@switchtel.co.za><br>
<b>Envoyé :</b> jeudi 29 décembre 2022 20:28<br>
<b>À :</b> users@lists.opensips.org <users@lists.opensips.org><br>
<b>Objet :</b> Re: [OpenSIPS-Users] Media server communication with OpenSIPS</font>
<div> </div>
</div>
<div>
<p style="margin-top: 0px; margin-bottom: 0px;">You can send custom headers from Asterisk to OpenSIPS using:<br>
</p>
<p style="margin-top: 0px; margin-bottom: 0px;"><a href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+18+Function_PJSIP_HEADER" data-auth="NotApplicable" class="x_moz-txt-link-freetext">https://wiki.asterisk.org/wiki/display/AST/Asterisk+18+Function_PJSIP_HEADER</a></p>
<p style="margin-top: 0px; margin-bottom: 0px;">If you need Asterisk to receive customer headers from OpenSIPS, you can read custom headers added by OpenSIPS to its 200 response using:</p>
<p style="margin-top: 0px; margin-bottom: 0px;"><a href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+18+Function_PJSIP_RESPONSE_HEADER" data-auth="NotApplicable" class="x_moz-txt-link-freetext">https://wiki.asterisk.org/wiki/display/AST/Asterisk+18+Function_PJSIP_RESPONSE_HEADER</a></p>
<p style="margin-top: 0px; margin-bottom: 0px;"><br>
</p>
<p style="margin-top: 0px; margin-bottom: 0px;">If you are already midway through a call, you can force an UPDATE or re-INVITE using:</p>
<p class="elementToProof" style="margin-top: 0px; margin-bottom: 0px;"><a href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+18+Function_PJSIP_SEND_SESSION_REFRESH" data-auth="NotApplicable" class="x_moz-txt-link-freetext">https://wiki.asterisk.org/wiki/display/AST/Asterisk+18+Function_PJSIP_SEND_SESSION_REFRESH</a></p>
<p style="margin-top: 0px; margin-bottom: 0px;"><br>
</p>
<p style="margin-top: 0px; margin-bottom: 0px;">While I haven't personally tested, I'd expect that you should be able to signal custom information midway through a call with a Set(PJSIP_HEADER(add,X-MyHeader)=myvalue) followed by a Set(PJSIP_SEND_SESSION_REFRESH()=invite).
 This should then trigger a re-INVITE carrying the new X-MyHeader within it.<br>
</p>
<p style="margin-top: 0px; margin-bottom: 0px;">Similarly, after triggering the a re-INVITE or UPDATE, you should then be able to do a Set(MYVAR=PJSIP_RESPONSE_HEADER(read,X-MyHeader)) to extract what OpenSIPS has sent back to Asterisk in its 200 response.<br>
</p>
<p style="margin-top: 0px; margin-bottom: 0px;"><br>
</p>
<p style="margin-top: 0px; margin-bottom: 0px;">Although more messy, there are also other tricks that you can use, including the CONNECTEDLINE function:</p>
<p style="margin-top: 0px; margin-bottom: 0px;"><a href="https://wiki.asterisk.org/wiki/display/AST/Manipulating+Party+ID+Information" data-auth="NotApplicable" class="x_moz-txt-link-freetext">https://wiki.asterisk.org/wiki/display/AST/Manipulating+Party+ID+Information</a></p>
<p style="margin-top: 0px; margin-bottom: 0px;"><a href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+18+Function_CONNECTEDLINE" data-auth="NotApplicable" class="x_moz-txt-link-freetext">https://wiki.asterisk.org/wiki/display/AST/Asterisk+18+Function_CONNECTEDLINE</a></p>
<p style="margin-top: 0px; margin-bottom: 0px;">e.g. If you did a Set(CONNECTEDLINE(name)=Information_I_wish_to_share_with_OpenSIPS), then this will, in one step, trigger an UPDATE or re-INVITE carrying the new connected party name in the SIP headers, detail
 which you can then extract from OpenSIPS. Similarly, you can also use this approach read information that OpenSIPS has sent to Asterisk, with a Set(MYVAR=CONNECTEDLINE(name)).</p>
<p style="margin-top: 0px; margin-bottom: 0px;">I mention this in case, for whatever reason, the first approach (described above) doesn't work as planned, however, the first approach is definitely preferable as you can carry the information in your own X- header,
 making it far easier to send/receive multiple headers.<br>
</p>
<blockquote type="cite">
<div class="x_WordSection1">
<div>
<p class="x_MsoNormal" style="margin-top: 0px; margin-bottom: 0px;">On Tue, Dec 27, 2022 at 8:55 AM Wadii ELMAJDI | Evenmedia <<a href="mailto:wadii@evenmedia.fr" data-auth="NotApplicable" class="x_moz-txt-link-freetext" data-loopstyle="link">wadii@evenmedia.fr</a>>
 wrote:<br>
><br>
> Hello,<br>
><br>
><br>
> I am using Asterisk as a media server behind OpenSIPS.<br>
> I need to send some additional data to opensips during the call or at the latest during the hangup. For instance a custom hang up reason.<br>
> Asterisk does not allow neither to send a sequential request withing an ongoing dialog, nor add headers to a BYE method.<br>
> The current solution I’m using is pushing a dialog var (dlg_push_var) using Call-ID via (mi_http), but that means I rely on a curl http request during my call…<br>
> Is there any better option for a direct communication between the two boxes during a call ? without any intermediate server (Redis DB …)<br>
><br>
> Thank you<br>
><br>
> _______________________________________________<br>
> Users mailing list<br>
> <a href="mailto:Users@lists.opensips.org" data-auth="NotApplicable" class="x_moz-txt-link-freetext" data-loopstyle="link">
Users@lists.opensips.org</a><br>
> <a href="http://lists.opensips.org/cgi-bin/mailman/listinfo/users" data-auth="NotApplicable" class="x_moz-txt-link-freetext">
http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a></p>
</div>
</div>
<br>
<fieldset class="x_moz-mime-attachment-header"></fieldset>
<pre class="x_moz-quote-pre">_______________________________________________
Users mailing list
<a href="mailto:Users@lists.opensips.org" data-auth="NotApplicable" class="x_moz-txt-link-abbreviated" data-loopstyle="link">Users@lists.opensips.org</a>
<a href="http://lists.opensips.org/cgi-bin/mailman/listinfo/users" data-auth="NotApplicable" class="x_moz-txt-link-freetext">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a>
</pre>
</blockquote>
<div class="x_moz-signature"><span style="font-size:11.0pt; font-family:Assistant; color:#32444B"><br>
</span></div>
</div>
</body>
</html>