Hi and thank you. I am a beginer trying to install my first TDM04B. I am able to receive call with the card using: [incoming] exten => s,1,Dial(SIP/robgol,20,tr) on my extensions but, with [outgoing] exten => _0X.,1,Zap/1/${EXTEN} I cant send them out. I am getting the following error: Mar 26 23:37:07 WARNING[5189]: pbx.c:1291 pbx_extension_helper: No application 'Zap/1/${EXTEN:1}' for extension (default, 00290785472, 1) == Spawn extension (default, 00290785472, 1) exited non-zero on 'SIP/robgol-bf04' thanks in advance for the help.
Hi and thank you. I am a beginer trying to install my first TDM04B. I am able to receive call with the card using: [incoming] exten => s,1,Dial(SIP/robgol,20,tr) on my extensions but, with [outgoing] exten => _0X.,1,Zap/1/${EXTEN} I cant send them out. I am getting the following error: Mar 26 23:37:07 WARNING[5189]: pbx.c:1291 pbx_extension_helper: No application 'Zap/1/${EXTEN:1}' for extension (default, 00290785472, 1) == Spawn extension (default, 00290785472, 1) exited non-zero on 'SIP/robgol-bf04' thanks in advance for the help.
Daniel, i found the problem. Actually besides a mistype error on the extensions.conf. It was all about USB conflict. I went into the BIOS and reserverd IRQ's 11,12,13 and 14 (just to be safe) and it worked. After i found the mistype i could only send and receive calls on the first channel although they all appeared. So this might be a cointribution or it was already a fact and i didn't know about. thanks anyway. made my day..... Robson
> I am a beginer trying to install my first TDM04B.Hi RR,> [outgoing] > exten => _0X.,1,Zap/1/${EXTEN} > I cant send them out.The error is telling you that ZAP is not an application. To dial out you need the dial application exactly as you have in the incoming section. Something like this: exten => _0X,1,Dial(ZAP/1/${EXTEN},45) ; for example Please take a look at http://asteriskdocs.org or look on the wiki for information about the asterisk dialplan: http://www.voip-info.org/wiki-Asterisk+config+extensions.conf Understanding the dialplan is critical to using asterisk. hth