[Asterisk-java-users] looping between AGIs
Brought to you by:
srt
From: Rounak S. <rou...@gm...> - 2013-07-20 08:01:29
|
Hii everyone, I have my dial plan like [outgoing-call] exten=>100,1,AGI(agi://127.0.0.1/*hello1*.agi?count=${var1}) exten=>100,2,AGI(agi://127.0.0.2/*hello2*.agi?count=${var1}) exten=>100,3,GOTO(outgoing-call,100,1) the hello1.agi is incrementing var1 everytime and will hangup once its greater than 4. In my hello1.agi I am downloading some data(list of strings) from my database.And I want to use that data in all the calls. Write now once I am out of AGI(hello1.agi) I am unable to access that data the next time. Is there a way that I will be able to access the data the next time? |