WebRequest POST XMLDOM Not XMLDOM.xml

  • Thread starter Thread starter Dave Harkness
  • Start date Start date
D

Dave Harkness

I am trying to post an XML DOM to an ASP page using WebRequest. (C#)
I know how to use a stream to send xml data but a stream is primarily
intended for text.
The asp page expects an XML object.

Any help would be GREATLY appreciated.

(e-mail address removed)
 
Dave Harkness said:
I am trying to post an XML DOM to an ASP page using WebRequest. (C#)
I know how to use a stream to send xml data but a stream is primarily
intended for text.
The asp page expects an XML object.

I bet it doesn't. Not if it expects it to be POST'ed. I bet it expects a
string.

How does it use the form variable that contains the XML?
 
Back
Top