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

Error on making outbound call

Questions and answers about IVR programming for Plum DEV

Moderators: admin, support

Post Reply
prasanth
Posts: 10
Joined: Tue Aug 17, 2004 12:49 am

Error on making outbound call

Post by prasanth »

Hi,

When i make outbound call my session log look fine but the error log displays error relating to parsing. Both the reports are given
below,

Session
----------
local 14164431791 4 [[16/Sep/2004:07:54:02 -0500] pollack 000001;004;1095322587 fetchurl http://outbound.plumgroup.com/outboundlib/startpage.php
outbound 14164431791 4 [[16/Sep/2004:07:54:10 -0500] pollack 000001;004;1095322587 1095335640 1095335650 0:0:10

Error
------
error 14164431791 4 [16/Sep/2004:07:54:03 -0400] pollack 000001;004;1095322587 DocumentParser::FetchDocument - Parse error in file "http://www.a2zdemocenter.com/safesenior/index.php", line 1, column 4 - Unknown element 'br'
error 14164431791 4 [16/Sep/2004:07:54:03 -0400] pollack 000001;004;1095322587 errno: 205 uri http://www.a2zdemocenter.com/safesenior/index.php

And my xml file index.php look like

Code: Select all

<?xml version="1.0"?>
<vxml version="2.0">
<property name="inputmodes" value="dtmf"/>
<form id="intro">
<block>
<prompt bargein="false">
Welcome to senior system.thanks you
</prompt>
</block>
</form>
</vxml>
Please tell me what wrong with the vxml. Where can i get the sample code for outbound call.

Thanks

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

IVR code for outbound calls

Post by support »

Hi Prasanth:

2 things to keep in mind when writing vxml:

a) you have to make sure there is no whitespace before or after the vxml. This will cause IVR errors.

b) Plum's IVR Programmers reference manual is a good guide that explains what IVR tags are allowed.
http://www.plumvoice.com/docs/dev/plumd ... nddevguide

Try this IVR code:

Code: Select all

<?xml version="1.0"?>
<vxml version="2.0">
  <form>
    <block>
      <prompt bargein="false">
        Welcome to senior system. Thank you for calling.
      </prompt>
    </block>
  </form>
</vxml>
Hope this helps!! :)

Support

Post Reply