We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics

Consuming a web service

Questions and answers about IVR programming for Plum DEV

Moderators: admin, support

support
Posts: 3632
Joined: Mon Jun 02, 2003 3:47 pm
Location: Boston, MA
Contact:

IVR Call log

Post by support »

Hi,

Can you send a copy of what your web browser sees in the URL http://10.1.201.64/voicexml/test.xml and in the URL http://10.1.201.64/voicexml/datatag.xmlfor the IVR application? You can do this by pointing your browser at each of the URLs above, then hitting ctrl-U to view source.

Regards,
Plum Support
Last edited by support on Tue Dec 29, 2009 3:24 pm, edited 1 time in total.

publicsafety
Posts: 8
Joined: Thu Jul 19, 2007 3:13 pm

Fixed

Post by publicsafety »

After some troubleshooting and 'case sensitive' corrections, we finally got it working.

Thanks to all who contributed for the help.

Here is the corrected version:

<?xml version="1.0" ?>
<vxml version="2.1">
<form id="intro">
<field name="f_ibm" type="digits">

<prompt>Welcome To Off Duty Trak. Please enter your i-b-m number,</prompt>
<filled>
You entered
<value expr="f_ibm" />
<assign name="ibm" expr="f_ibm"/>
<goto next="#data" />
</filled>
</field>
</form>

<form id="data">
<data name="domStuff" src="http://10.1.202.231/wsphonetest/svc.asm ... eIBMNumber" namelist="ibm"

method="post" />
<block>
Your Result is <value expr="domStuff.documentElement.firstChild.toString()" />
</block>

</form>
</vxml>

Post Reply