Page 1 of 1

Submit tag error of type

Posted: Mon Dec 31, 2007 1:39 pm
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

IVR code fix for tag error

Posted: Wed Jan 02, 2008 10:08 am
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