<div>In a Lua script I instantiate a new call leg and (attempt to) insert a new channel variable:</div><br><div> local session = freeswitch.Session("user/<a href="mailto:1001@stuff.com">1001@stuff.com</a>")</div>
<div> if session:hangupCause() == "SUCCESS" then</div><div> session:execute("export", "my_variable=" .. myVariable)</div><div> session:transfer("ext_in_mycontext", "XML", "mycontext")</div>
<div><br></div><div>However, I am not able to retrieve my custom channel variable later. This call leg is established correctly but there is no point in this call leg's life where I can seem to find my variable. Is there another method by which I should try to insert a channel variable in a newly created call leg?</div>
<div><br></div><div><br></div>