Re: [Asterisk-java-users] dynamically adding new conference rooms
Brought to you by:
srt
From: g f <gf...@gm...> - 2006-03-09 17:03:28
|
My network is down right now so I cant run anything against my asterisk box but is this kind of the jist of what you do (aside from the validation) public class AgiCommand extends BaseAGIScript { public void service(AGIRequest request, AGIChannel channel) throws AGIException { exec("exten =3D> s,n,MeetMe(${CONF}|dTMps)"); } } ??? Thanks again. On 3/9/06, Chris Howard <ch...@as...> wrote: > > What we do is get the pin in the agi, query the database to validate the > pin. Set the conference number for the dialplan to use and call: > > exten =3D> s,n,MeetMe(${CONF}|dTMps) > -----Original Message----- > *From:* ast...@li... [mailto: > ast...@li...] *On Behalf Of *g f > *Sent:* Wednesday, March 08, 2006 11:46 AM > *To:* ast...@li... > *Subject:* Re: [Asterisk-java-users] dynamically adding new conference > rooms > > I found the following, but I was just assuming that this was a line that > was added in the extensions.conf file and not a CLI: > > Dynamic conference room, user must input room number to be created: > exten =3D> 9999,1, Wait(1) > exten =3D> 9999,2,MeetMe(|Md) ; NOTE: If you add the option 'e', * w= ill choose room # for you > > ;Change the 'd' option to 'D' if you want to have a pin number for the c= onference > > > Chris, > is this what you use? > > Thanks in advance!! > > > On 3/7/06, Chris Howard <ch...@as...> wrote: > > > > > > On Mar 7, 2006, at 5:22 PM, Stefan Reuter wrote: > > > > > Hi, > > > > > > g f wrote: > > >> I was interested in allowing users the ability to create new > > >> conference > > >> rooms. > > >> Is there any * to Java classes that will accomplish this? > > >> I looked at MeetmeEvents but found nothing that looked promising. > > >> Any help is appreciated.. > > > > > > no there is currently no way to accomplish this through the Manager > > > API > > > that I am aware of. > > > Do you know if its possible through CLI? (I had a quick look but didn= t > > > find anything either) > > > > You probably want to use dynamic meetme conferences and manage them > > with an external database and not try to add a static conference. We > > have built a conferencing system using this approach using AGI for > > authentication and it works great. > > > > Chris > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by xPML, a groundbreaking scripting > > language > > that extends applications into web and mobile media. Attend the live > > webcast > > and join the prime developer group breaking into this new coding > > territory! > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D110944&bid=3D241720&dat= =3D121642 > > _______________________________________________ > > Asterisk-java-users mailing list > > Ast...@li... > > https://lists.sourceforge.net/lists/listinfo/asterisk-java-users > > > > |