View previous topic :: View next topic |
Author |
Message |
elihayun at gmail.com Guest
|
Posted: Tue Jul 14, 2009 7:03 am Post subject: [Freeswitch-users] Get voicemail messages |
|
|
Hi
I am not using fixed xml files for the extension registration. I have
LUA script to return an XML string to FS.
Everything goes fine until I am trying to get the voice messages.
When am entering my id, FS (or voicemail module) try to get the xml for
that id, but it cant find it. My lua script did NOT recieved any xml
request at that point.
What should I do to solve the problem.
Thanks
Eli Hayun
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
msc at freeswitch.org Guest
|
Posted: Tue Jul 14, 2009 8:07 am Post subject: [Freeswitch-users] Get voicemail messages |
|
|
On Jul 14, 2009, at 5:02 AM, Eli Hayun <elihayun@gmail.com> wrote:
Quote: | Hi
I am not using fixed xml files for the extension registration. I have
LUA script to return an XML string to FS.
Everything goes fine until I am trying to get the voice messages.
When am entering my id, FS (or voicemail module) try to get the xml
for
that id, but it cant find it. My lua script did NOT recieved any xml
request at that point.
What should I do to solve the problem.
Thanks
Eli Hayun
|
Can you pastebin the log? Be sure to press F8 to turn up the debug
level.
-MC
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
anthony.minessale at g... Guest
|
Posted: Tue Jul 14, 2009 10:21 am Post subject: [Freeswitch-users] Get voicemail messages |
|
|
did you bind your lua script to directory lookups in addition to the dialplan?
On Tue, Jul 14, 2009 at 7:02 AM, Eli Hayun <elihayun@gmail.com (elihayun@gmail.com)> wrote:
--
Anthony Minessale II
FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
Twitter: http://twitter.com/FreeSWITCH_wire
AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch
FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400 |
|
Back to top |
|
|
elihayun at gmail.com Guest
|
Posted: Tue Jul 14, 2009 11:49 pm Post subject: [Freeswitch-users] Get voicemail messages |
|
|
did you bind your lua script to directory lookups in addition to the
dialplan? On Tue, Jul 14, 2009 at 7:02 AM, Eli Hayun
<elihayun@gmail.com> wrote:
Quote: | Quote: | Hi
I am not using fixed xml files for the extension registration. I have
LUA script to return an XML string to FS.
Everything goes fine until I am trying to get the voice messages.
When am entering my id, FS (or voicemail module) try to get the xml for
that id, but it cant find it. My lua script did NOT recieved any xml
request at that point.
What should I do to solve the problem.
Thanks
Eli Hayun
|
| Yes I did bind it: my lua.conf.xml is like this
<configuration name="lua.conf" description="LUA Configuration">
<settings>
<param name="xml-handler-script" value="GenXml.lua"/>
<param name="xml-handler-bindings" value="directory"/>
</settings>
</configuration>
When an extension tried to register, I have no problem. But when I want
to use VoiceMail to retrieve my messeges, I got a problem.
Here is the partial log:
2009-07-15 07:44:49.373089 [INFO] mod_dialplan_xml.c:252 Processing
Phone2->*98 in context default
2009-07-15 07:44:49.386466 [NOTICE] mod_dptools.c:649 Channel
[sofia/internal/80671@132.64.3.86] has been answered
2009-07-15 07:44:51.933664 [WARNING] mod_voicemail.c:2072 Can't find
user [80671@132.64.3.86]
2009-07-15 07:44:52.533435 [NOTICE] switch_core_state_machine.c:179
Hangup sofia/internal/80671@132.64.3.86 [CS_EXECUTE] [NORMAL_CLEARING]
2009-07-15 07:44:52.545698 [NOTICE] switch_core_session.c:1085 Session 3
(sofia/internal/80671@132.64.3.86) Ended
2009-07-15 07:44:52.545698 [NOTICE] switch_core_session.c:1087 Close
Channel sofia/internal/80671@132.64.3.86 [CS_DESTROY]
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org |
|
Back to top |
|
|
|