Hello,even in the last IF, the double-quotes have to be removed around "$null" -- just compare with $null, because doublequotes there enforces a static string.
On 09/06/14 16:54, Carlos Ruiz Díaz wrote:
Hi Rahul,
if($var(client1)!="null") should be if($var(client1)!="$null")
Cheers,
Daniel
. You are doing a string comparison with the string value "null".
Also make sure the dialog matching is correct: append these event routes to your config file:
event_route[dialog:start] {xlog("Dialog started");}
event_route[dialog:end] {xlog("Dialog ended");}
event_route[dialog:failed] {xlog("Dialog failed");}
You should see a "dialog started" and "dialog ended" for every successful call.
Please do those modifications and see what happens.
Regards,Carlos
On Mon, Jun 9, 2014 at 6:55 AM, Rahul MathuR <rahul.ultimate@gmail.com> wrote:
Hello Carlos,Were you able to look at my configuration file ?