I use the asterNet
for manage event IN asterisk
.
I need to get value of variable (result
) in c# from dialplan
query.
exten => test,1, NoOp(************ test ****************);
same => n,Answer();
same => n,Playback(hellow-world);
same => n,set(result=123456);
same => n,Hangup();
I used the following query to get result
variable:
private string GetVar(string channel)
{
string result = "";
try
{
var gv = new GetVarAction(channel, "result");
ManagerResponse mr = manager.SendAction(gv);
result = mr.Attributes["result"];
}
catch (Exception ex)
{ }
return result;
}
but is's encounter with this error:
timeout waiting for response to originate
I searched the web but did not find anything useful.
Can anyone help me?
You can get the results with AGI.
You need to setup FastAGI with Asternet and then you can get the results to save to you DB.
To setup FastAGI you need to set the script to the specific class where you will handle the call and start the FastAGI service from you programs
Main
method inprogram.cs
and create a class
GetResult
which inheritsAGIScript
where you will handle the call inside theService
method and use theGetVariable
function to get the variable contentand you need to enter the agi from your dialplan. If the c# program is running on the same server as asterisk you can do localhost
same => n,agi(agi://localhost/getresult)
or put your server's local ip addresssame => n,agi(agi://xxx.xxx.x.x/getresult)
and if the c# program is running on a remote server put the remote server ip addresssame => n,agi(agi://xxx.xxx.xx.xxx/getresult)
and make sure that your asterisk server public ip is open in the remote server's firewall.