Dear All,<div><br></div><div>In the below example from FS wiki, can I be sure that &quot;my_callback&quot; will be called  before session.hangup() is excuted?</div><div><br></div><div>Thanks a lot</div><div><br></div><div>
Jasper</div><div><br></div><div><span class="Apple-style-span" style="font-family: sans-serif; font-size: 15px; line-height: 22px; "><pre style="padding-top: 1em; padding-right: 1em; padding-bottom: 1em; padding-left: 1em; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(47, 111, 171); border-right-color: rgb(47, 111, 171); border-bottom-color: rgb(47, 111, 171); border-left-color: rgb(47, 111, 171); color: black; background-color: rgb(249, 249, 249); line-height: 1.1em; ">
use(&quot;CURL&quot;);

function my_callback(string, arg)
{
  console_log(&quot;info&quot;, string);
  return true;
}

if (session.ready()) {
  session.answer();

  var curl = new CURL();

  curl.run(&quot;POST&quot;, &quot;<a href="http://www.freeswitch.org/curltest/">http://www.freeswitch.org/curltest/</a>&quot;, &quot;foo=bar&amp;this=has+spaces+in+it&quot;, my_callback, &quot;my arg\n&quot;, &quot;user:s3cr3tpw&quot;);

  session.hangup();
}</pre></span></div>