All,<div><br>Here&#39;s why I&#39;m trying to accomplish:</div><div><br></div><div>route [subsequent_request] {</div><div>   if (has_totag &amp;&amp; is_method(&quot;ACK&quot;) {</div><div>     if (MY_VAR = &quot;cisco&quot;) {</div>
<div>        lookup(&quot;location&quot;);</div><div>        ... relay and exit</div><div>     }</div><div>     else {</div><div>          ... relay and exit lr</div><div>     }</div><div>   }</div><div>}</div><div><br></div>
<div>onreply_route [foo] {</div><div>     ....</div><div>     if($ua =~ &quot;Cisco-CP79&quot;) {</div><div>          MY_VAR = &quot;cisco&quot;</div><div>     }</div><div>}</div><div><br></div><div>The reasons are not really relevant (it&#39;s to get rid of a really poor UA implementation on older Cisco 79XX firmwares), but my intent is:</div>
<div><br></div><div>1) Set a transaction-visible-only value in onreply_route [foo]  </div><div>2) Retrieve it on the ACK that completes the initial invite transaction.</div><div><br>My problems:</div><div><br></div><div>1) if MY_VAR is an $avp, it returns null on retrieving it in the route[subsequent_request], even with the onreply flag for tm set.</div>
<div>2) if MY_VAR is a $var, it&#39;s process global and so, the next transaction that comes in could share the same state (race)</div><div>3) if MY_VAR is a flag, I can&#39;t retrieve it in the route [subsequent request]</div>
<div>4) if MY_VAR is a dlg_flag or a dlg_var, I can&#39;t retrieve it in the subsequent request even if invoking create_dialog as the first action in the routing script (if it&#39;s an initial invite).</div><div>5) The only thing I&#39;ve been able to do is create a unique key via localcache (with $fU_useragent = myvalue) and fetch it, but this does not allow multiple UA&#39;s to register with the same fU</div>
<div><br></div><div>My question is, is there any way to set a transaction state only value in an onreply hook, and retrieve it on the ACK?<br><br>I know according to the RFC:</div><div><br></div><div><meta http-equiv="content-type" content="text/html; charset=utf-8"><span class="Apple-style-span" style="font-family: &#39;Times New Roman&#39;; "><pre style="font-size: medium; ">
      The reason for this separation is rooted in the <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-importance.html" class="keyword" name="d4e475468" style="font-family: tahoma, verdana, sans-serif; font-weight: normal; ">importance</a> of
      delivering all 200 (OK) responses to an <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-invite.html" class="keyword" name="d4e475473" style="font-family: tahoma, verdana, sans-serif; font-weight: normal; ">INVITE</a> to the <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-uac.html" class="keyword" name="d4e475476" style="font-family: tahoma, verdana, sans-serif; font-weight: normal; ">UAC</a>.  To
      deliver them all to the <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-uac.html" class="keyword" name="d4e475481" style="font-family: tahoma, verdana, sans-serif; font-weight: normal; ">UAC</a>, the <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-uas.html" class="keyword" name="d4e475485" style="font-family: tahoma, verdana, sans-serif; font-weight: normal; ">UAS</a> alone takes responsibility

      for retransmitting them (see Section 13.3.1.4), and the <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-uac.html" class="keyword" name="d4e475492" style="font-family: tahoma, verdana, sans-serif; font-weight: normal; ">UAC</a> alone
      takes responsibility for acknowledging them with <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-ack.html" class="keyword" name="d4e475497" style="font-family: tahoma, verdana, sans-serif; font-weight: normal; ">ACK</a> (see Section
      13.2.2.4).  Since this <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-ack.html" class="keyword" name="d4e475503" style="font-family: tahoma, verdana, sans-serif; font-weight: normal; ">ACK</a> is retransmitted only by the <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-uac.html" class="keyword" name="d4e475506" style="font-family: tahoma, verdana, sans-serif; font-weight: normal; ">UAC</a>, it is
      effectively considered its own <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-transaction.html" class="keyword" name="d4e475511" style="font-family: tahoma, verdana, sans-serif; font-weight: normal; ">transaction</a>.
</pre><div style="font-size: medium; "><br></div><div style="font-size: medium; "><br></div><div>Is there a way to get this associated with the right dialog or something?  I&#39;ve tried setting a dialog profile on initial invite, storing a value in the 200 OK onreply, and retrieving it as well in the ACK, but I get no dialog has been created (I guess because the dialog is early or something).</div>
<div><br></div><div><br>Thanks for the ideas,</div><div><br>BobbyS</div></span></div>