Thanks for the suggestion -- unfortunately I saw this previously in a thread and thought that&#39;d be the key, but the results from cranking debug up the same show it to be a different transaction on receiving the ACK and thus the value is null. :(<div>
<br></div><div>I&#39;ve played around with this just a little bit more and by modifying the localcache key to be $fU_$ci (from user / callid pair, or some tag, or something related to the initial request that&#39;s available in the script context) I can get it to work how I want, but this really just doesn&#39;t seem like the right way to do it.</div>
<div><br></div><div><br><div class="gmail_quote">On Fri, Aug 5, 2011 at 12:08 AM, Brett Nemeroff <span dir="ltr">&lt;<a href="mailto:brett@nemeroff.com">brett@nemeroff.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div bgcolor="#FFFFFF"><div>See if setting this param on helps.</div><div><br><a href="http://www.opensips.org/html/docs/modules/devel/tm.html#id293118" target="_blank">http://www.opensips.org/html/docs/modules/devel/tm.html#id293118</a><br>

-Brett</div><div><div></div><div class="h5"><div><br>On Aug 4, 2011, at 7:48 PM, Bobby Smith &lt;<a href="mailto:bobby.smith@gmail.com" target="_blank">bobby.smith@gmail.com</a>&gt; wrote:<br><br></div><div></div><blockquote type="cite">
<div>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><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" name="1319820bcee901dd_d4e475468" style="font-family:tahoma, verdana, sans-serif;font-weight:normal" target="_blank">importance</a> of
      delivering all 200 (OK) responses to an <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-invite.html" name="1319820bcee901dd_d4e475473" style="font-family:tahoma, verdana, sans-serif;font-weight:normal" target="_blank">INVITE</a> to the <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-uac.html" name="1319820bcee901dd_d4e475476" style="font-family:tahoma, verdana, sans-serif;font-weight:normal" target="_blank">UAC</a>.  To
      deliver them all to the <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-uac.html" name="1319820bcee901dd_d4e475481" style="font-family:tahoma, verdana, sans-serif;font-weight:normal" target="_blank">UAC</a>, the <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-uas.html" name="1319820bcee901dd_d4e475485" style="font-family:tahoma, verdana, sans-serif;font-weight:normal" target="_blank">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" name="1319820bcee901dd_d4e475492" style="font-family:tahoma, verdana, sans-serif;font-weight:normal" target="_blank">UAC</a> alone
      takes responsibility for acknowledging them with <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-ack.html" name="1319820bcee901dd_d4e475497" style="font-family:tahoma, verdana, sans-serif;font-weight:normal" target="_blank">ACK</a> (see Section
      13.2.2.4).  Since this <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-ack.html" name="1319820bcee901dd_d4e475503" style="font-family:tahoma, verdana, sans-serif;font-weight:normal" target="_blank">ACK</a> is retransmitted only by the <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-uac.html" name="1319820bcee901dd_d4e475506" style="font-family:tahoma, verdana, sans-serif;font-weight:normal" target="_blank">UAC</a>, it is
      effectively considered its own <a href="http://rfc-ref.org/RFC-TEXTS/3261/kw-transaction.html" name="1319820bcee901dd_d4e475511" style="font-family:tahoma, verdana, sans-serif;font-weight:normal" target="_blank">transaction</a>.
</pre></span><div style="font-size:medium;font-family:&#39;Times New Roman&#39;"><br></div><div style="font-size:medium;font-family:&#39;Times New Roman&#39;"><br></div><div style="font-family:&#39;Times New Roman&#39;">

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>

<span style="font-family:&#39;Times New Roman&#39;">
</span><div style="font-family:&#39;Times New Roman&#39;"><br></div><div style="font-family:&#39;Times New Roman&#39;"><br>Thanks for the ideas,</div><div style="font-family:&#39;Times New Roman&#39;"><br>BobbyS</div>
</div>
</div></blockquote></div></div><blockquote type="cite"><div><span>_______________________________________________</span><br><span>Users mailing list</span><br><span><a href="mailto:Users@lists.opensips.org" target="_blank">Users@lists.opensips.org</a></span><br>

<span><a href="http://lists.opensips.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a></span><br></div></blockquote></div>
<br>_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.opensips.org">Users@lists.opensips.org</a><br>
<a href="http://lists.opensips.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a><br>
<br></blockquote></div><br></div>