Re: [Asterisk-java-users] Help with executing asterisk applications.
Brought to you by:
srt
From: Stefan R. <sr...@re...> - 2006-01-12 10:14:21
|
Hi Jan, > So in my agi script I have: this.exec("MeetMeAdmin","8000,K"). > But it doesn't work. Asterisk gives me the following warning: > app_meetme.c:1970 admin_exec: MeetmeAdmin requires a command! > > What is the correct syntax for the options string when you have multiple > options? Multiple options for exec() are separated by the pipe character ('|'). So in your case you should use: exec("MeetMeAdmin", "8000|K"); =Stefan |