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

Fetch Error

Questions and answers about IVR programming for Plum DEV

Moderators: admin, support

Post Reply
inbox
Posts: 1
Joined: Mon Jul 17, 2006 7:30 pm

Fetch Error

Post by inbox »

I am currently building a small test application to use with plum. I have the following VXML at a url.

Code: Select all

<?xml version="1.0"?>
<vxml version="2.0">
  <form>
    <block>
      <prompt>
         Hello Joe Mauro.
      </prompt>
    </block>
  </form>
</vxml>
This is sitting in an XML file, and when I run it through the validator, it returns no errors. When I place an outbound call, I get fetch error.
DocumentParser::FetchDocument - Parse error in file "http://www.automax360.com/ivr/ivr.xml", line 1, column 55 - Expected whitespace
Could anyone help me or point me in a direction that solves this issue?

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

start URL for IVR outbound call supports HTTP GET and POST

Post by support »

Hello,

Above the error listed in the IVR last call log is a link to view the contents of the file as fetched by the Plum IVR Platform. Clicking on this link will show the page as it was returned by your application server. Looking over the page in the logs it is clear that the page you are attempting to fetch does not support an HTTP POST request.

The outbound IVR system treats every call as a unique call and as such information pertaining to that IVR call is sent to the start url as an HTTP POST when the call is connected. To resolve this issue the start URL for the IVR outbound call should support both HTTP GET and POST.

Regards,
Plum Support

Post Reply