我正在使用mod_xml_curl在FreeSwitch服务器上注册SIP用户。我可以从我的-SQL数据库中获取用户信息,但现在我的FreeSwitch拨号方案出现了问题。当我呼叫另一个注册用户时,它发出hold_music声音。
它不会向其他注册用户发出呼叫。
Case 1
* No mod_xml_curl for directory
* No mod_xml_curl for dialplan
Result - It works fine, but I cannot use user information in My-SQL database.
Case 2
* using mod_xml_curl for directory
* No mod_xml_curl for Dialplan
Result - Registeration is working using My-SQL database, but call is failed.
Case 3
* using mod_xml_curl for directory
* using mod_xml_curl for Dialplan
Result - Registeration is working using My-SQL database, but call makes hold_music sound.当我使用xml_curl进行拨号方案时有什么信息吗?
谢谢。
发布于 2015-02-27 00:05:54
当对拨号方案使用xml_curl时,您会为拨号方案返回什么?如果你返回一个播放等待音乐的拨号方案,那么它就可以工作。
您可以使用命令xml_curl debug_on在freeswitch中启用调试,以查看web服务器返回的拨号方案。
https://stackoverflow.com/questions/21842942
复制相似问题