<div dir="ltr">Hi,<br>I'm working on an emergency server which is basically a proxy for a SIP INVITE, but which change request uri (example : from urn:service:sos.ambulance to tel:EC00033434678952).<br>This part is working correctly, however i have a problem with SIP CANCEL gestion. I just want to forward the CANCEL sip message, however I understand that the request URI AND the via branch tag must be the same than the INVITE sended by my opensips server. For exemple, it must have "tel:EC00033434678952" and not "urn:service:sos.ambulance" in request URI.<br><br>Or the only way i found to do that is to cache the generated new request URI during request route for INVITE, and the via branch tag on the sip reply received by my opensips server (in the sip reply 100 trying... beurk).<br><br>It is ugly, and i'm sure there is a best method. I strongly suspect that it is possible with tm module, and i tried statefull behaviour, but i did not manage to do it without caching. <br><br>You can find below a simplified version of my current opensips.cfg :<br><br>route {<br>      if (is_method("INVITE")) {<br>            t_newtran();<br>            #determine new request URI, not important. Result is on $avp(psap)<br>            $avp(psap) = "33434678789"<br>            #cache result with call-ID as key<br>            cache_store("local:psap_cache", "$hdr(Call-ID)", "$avp(psap)",15);<br>            forward()     <br>      }<br>      else if (is_method("CANCEL")){<br>            #extract from cach both value, modify via and then forward<br>            cache_fetch("local:psap_cache","$hdr(Call-ID)", $var(psap));<br>            cache_fetch("local:via_branch_cache","$hdr(Call-ID)", $var(branch_via))<br>            <br>            $ru = "tel:" + $var(psap);<br>            insert_hf("Via: SIP/2.0/TCP 100.76.22.1:5062;branch=$var(branch_via)\r\n");<br>            forward();<br><br>      }<br>}<br>onreply_route {<br><br>       #extract via branch tag on sip 100 trying answer after INVITE<br>       if ($(var(cseq_header){s.select,1, }) == "INVITE" and $var(responde_code) == 100 ){<br>             $var(branch_via) = "z9..."<br>             #cache branch_via<br>             cache_store("local:via_branch_cache", "$hdr(Call-ID)", "$var(branch_via)",15);<br>       }<br>}<br><br>Could you please provide the idea to unblock me and find a better method ?<br>Regards,<br>Pierre<br></div>