<br><div class="gmail_quote">On Tue, Jul 3, 2012 at 7:16 PM, Samira Mh <span dir="ltr">&lt;<a href="mailto:saami_mh@ymail.com" target="_blank">saami_mh@ymail.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><div style="font-size:12pt;font-family:times new roman,new york,times,serif"><div><div>for example i want to read the  value of  sip-header &#39; CSeq&#39;   in lua(that is configure for mod_xml in /usr/loca/freeswitch/conf/autoload/lia.xml.conf), must to issue as follow:</div>
<div>local var = session:getVariable(&quot;sip_CSeq&quot;)<br></div><div>but the error occure:</div><div> attempt to index global &#39;session&#39; (a nil value)</div></div></div></div></blockquote><div><br>Lua syntax error. It should be:<br>
</div></div>local var = session.getVariable(&quot;sip_CSeq&quot;)<br><br>regards,<br>Takeshi.<br>