i'm passing xml string like this:
http://localhost/myservice/input.aspx?<name>james</name>
so in the input.aspx, i tried to do this:
XmlDocument doc = new XmlDocument();
doc.Load(Request.InputStream);
however, the InputStream length is always 0, and there seems to be nothing in it. what is wrong with my setup?
i need to pass xml this way since this is now flash mx's .sendAndLoad() passing xml data to the server.
thanks!