Page 1 of 1

Problem in sending VXML in session

Posted: Tue May 05, 2009 12:58 am
by sdstuder
Hi all,

I have configured one vxml on plum corresponding to number. When i call this number, corressponding vxml gets executed, it takes me to the web page(aspx) of my website that i have specified in vxml. This way, session starts with my website, now the web page called further sends backs one more VXML contained in one string template, i try to send it back in session through :

Response.Write(strVXMLTemplate); // this string contains vxml
Response.Flush();

From my side, it is sent, but it is not reaching upto Plum.
Please guide me why new vxml template is not reaching to plum in session created.

Thanking you.

IVR code context needed

Posted: Tue May 05, 2009 9:06 am
by support
Hi,

Could you provide us with more IVR code context as to what you're trying to do? This would help us in better understanding this IVR issue.

Regards,
Plum Support

Problem in sending VXML in session

Posted: Mon May 11, 2009 12:58 am
by sdstuder
Hi,

I solved this problem. Actually, problem was, my aspx page corresponding to aspx.cs had <form> tag with runat="server" due to which Reponse.Write() was not writing to Plum instead it was writing to server where my website is deployed.

Thanking you.