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

Submit tag error of type

Questions and answers about IVR programming for Plum DEV

Moderators: admin, support

Post Reply
sking@xosphere.com
Posts: 18
Joined: Fri Dec 28, 2007 5:20 pm

Submit tag error of type

Post by sking@xosphere.com »

When I run the following tag I get error of type or chacater @ not recognized:


<form id="commitData">

<block>
<prompt bargein="false">
Hello this is text hello
this is a test.
</prompt>
<assign name="user" expr="blah@blahblah.com"/>
<assign name="pin" expr="45684213"/>
<assign name="start_url" expr="http://201.216.202.89/BWW/bwwoutbound.xml"/>
<submit next="http://outbound.plumgroup.com/webservice/queuecall.php" namelist="user pin friendphonenumber start_url" method="post" enctype="multipart/form-data"/>
</block>

</form>


Any clues on that?

Thank you

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

IVR code fix for tag error

Post by support »

Hi,

The reason you are getting this IVR error is because you have to place your <assign> tag "expr"s in single quotes.

So, this line of IVR code:

Code: Select all

 <assign name="user" expr="blah@blahblah.com"/> 
would be changed to:

Code: Select all

 <assign name="user" expr="'blah@blahblah.com'"/>
 
and this line of IVR code:

Code: Select all

 <assign name="start_url" expr="http://201.216.202.89/BWW/bwwoutbound.xml"/> 
would be changed to:

Code: Select all

 <assign name="start_url" expr="'http://201.216.202.89/BWW/bwwoutbound.xml'"/> 
Hope this IVR code helps.

Regards,
Plum Support

Post Reply