Hello all, I am trying to use asterisk to call a local access gateway by dialing a fix number, after getting connected, the is a IVR prompt for pin number and finally the real destination number. I manage to use asterisk to dial to the gateway but have no idea how to send the pin number and destination number. This is due to asterisk only process the next ext only if dial app has terminated. My extension.conf are as follows: [test] exten => _0XXXXXXXX,1,Dial(H323/${EXTEN:0}) exten => _0XXXXXXXX,2,SendDTMF(PIN_NUMBER_HERE) .... I saw someone post the similiar question but with no reply. Does anybody has any idea? cheers Foong -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20030805/81ddeb98/attachment.htm
> Hello all, > > I am trying to use asterisk to call a local access gateway by dialing a fix number, after getting connected, the is a IVR prompt for pin number and finally the real destination number. I manage to use asterisk to dial to the gateway but have no idea how to send the pin number and destination number. This is due to asterisk only process the next ext only if dial app has terminated. My extension.conf are as follows: > > > [test] > exten => _0XXXXXXXX,1,Dial(H323/${EXTEN:0}) > exten => _0XXXXXXXX,2,SendDTMF(PIN_NUMBER_HERE) > .... > > > I saw someone post the similiar question but with no reply. Does anybody has any idea? > > cheers > > FoongI have a similar problem when trying to use a long distance access number but was never able to find a solution.. The reason that the method you are trying does not work is becasue the call is connected on priority 1 and then does not move on to the next priority so the SendDTMF is never processed.. -- ______________________________________________ http://www.linuxmail.org/ Now with e-mail forwarding for only US$5.95/yr Powered by Outblaze
> > > > Why don't you just Dial() and then press the DTMFs, when the > channel has been answered? > > Michael.Main reasons.. 1. Its a PITA.. 2. You probably don't want to tell everyone what your pin number or access number is.. 3. If the number changes cos you get a better deal somwhere else you don't have to re-trian everyone to use the new number.. Those are my main reasons anyway.. :) -- ______________________________________________ http://www.linuxmail.org/ Now with e-mail forwarding for only US$5.95/yr Powered by Outblaze
> Helo, > > Try the www suggestion, but it does't work on H323 channel I guess, cause it > just send the whole string to gatekeeper including the 'www'. I got called > party not registered on gatekeeper. I think 'wwww' only work on Zap channel. > :( > > thanks anyway mate. > > So WipeOut your project is on hold now? > > Foong >The "w" will only work on analog channels thet use DTMF to dial in the first place.. No the projest is moving ahead. I have not allowed any international calling to anyone until I am able to use the cheap access numbers for everyone.. In fact my Asterisk system went live about a week ago.. but the call volumes are very small becasue the company is brand new.. :) -- ______________________________________________ http://www.linuxmail.org/ Now with e-mail forwarding for only US$5.95/yr Powered by Outblaze
Hello! my extensions.conf contains following records: exten => 104,1,SetCallerID(1234567890) exten => 104,2,Dial(OH323/xxx.xxx.xxx.xxx) exten => 104,3,Hangup exten => 104,104,Hangup I need Asterisk to dial DTMF sequence after H323 device is on-hook. I know there is SendDTMF function. How I can apply it for that?