This is what i got from them........
Sample code of the aspx page in C# 2.0:
=========================================
StreamReader reader = new StreamReader(Request.InputStream);
String xmlDoc = reader.ReadToEnd();
If you now aspx files, in the “<%@ Page” header must add “ValidateRequest="false"” for that it works.
If you send the data URLEncoded, the code decode this (optional):
xmlDoc = HttpUtility.UrlDecode(xmlDoc, Encoding.UTF8);
Edited by user
2009-05-08T13:17:55Z
|
Reason: Not specified