<p></p>
<p dir="auto">Hi there,</p>
<p dir="auto">I have a weird issue with kamailio (latest docker image kamailio-ci:5.5.2-alpine) and http_async_client.</p>
<p dir="auto">Before posting a lot of logs, let me describe what I want to achieve.</p>
<p dir="auto">I have a Kamailio and a SIP Phone.</p>
<p dir="auto">The SIP phone sends a REGISTER to kamailio, then in my routing block, I check if I have an Authorization header.</p>
<p dir="auto">Since I don't have an Authorization (first message), I use "www_challenge()".<br>
This replies to the SIP phone, and then the SIP phone sends a new REGISTER with the correct Authorization header.</p>
<p dir="auto">So far so good.</p>
<p dir="auto">Now, when I get the REGISTER with Authorization header, I want to ask an HTTP endpoint if this user is allowed to connect and check the password using http_async_query().</p>
<p dir="auto">The problem is that when the transaction resumes, the tmx module is unhappy and throws this error :</p>
<p dir="auto"><code>30(36) CRITICAL: tmx [t_var.c:546]: pv_get_tm_reply_code(): no picked branch (-1) for a final response in MODE_ONFAILURE </code><br>
And a 500 error is sent back to the sip phone.<br>
The AUTH_REPLY route is still called and I can use the $http* values.</p>
<p dir="auto">it seems that my AUTH_REPLY route is called but considered as a "failure_route"</p>
<p dir="auto"><code>19(27) exec: *** cfgtrace:dbg_cfg_trace(): failure_route=[AUTH_REPLY] c=[/etc/kamailio/kamailio.cfg] l=665 a=16 n=if </code><br>
Do you see something that I am doing wrong or missing in my logic?<br>
Is pausing/resuming to use the async http client is allowed if I'm handling a REGISTER transaction?</p>
<p dir="auto">Here's a simplified version of my routing block (not far from reality):</p>
<pre><code>
request_route{
route(AUTH);

route[AUTH]{
    if (is_method("REGISTER"){
        if(no_auth_header){
            www_challenge("$td","1");
            exit;
        }
        else{
            t_newtran();
            http_async_query("http://xxx.xxx.xxx.xxx:9000/auth?foo=bar", "AUTH_REPLY");
        }
    }
}

route[AUTH_REPLY]{
    xlog("L_INFO", "route[HTTP_REPLY]: status $http_rs\n");
}

}
</code></pre>
<p dir="auto">Best regards!</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />Reply to this email directly, <a href="https://github.com/kamailio/kamailio/issues/3009">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/ABO7UZOMLUXED3DBZODLTY3UYEZ6LANCNFSM5M5XV6CA">unsubscribe</a>.<br />Triage notifications on the go with GitHub Mobile for <a href="https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675">iOS</a> or <a href="https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub">Android</a>.
<br />You are receiving this because you are subscribed to this thread.<img src="https://github.com/notifications/beacon/ABO7UZN2GHFF6CMCHJMJYGLUYEZ6NA5CNFSM5M5XV6CKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4QUHABTA.gif" height="1" width="1" alt="" /><span style="color: transparent; font-size: 0; display: none; visibility: hidden; overflow: hidden; opacity: 0; width: 0; height: 0; max-width: 0; max-height: 0; mso-hide: all">Message ID: <span><kamailio/kamailio/issues/3009</span><span>@</span><span>github</span><span>.</span><span>com></span></span></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/kamailio/kamailio/issues/3009",
"url": "https://github.com/kamailio/kamailio/issues/3009",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>