I have a need to take an xml file generated from a mainframe and post it to
a remote server (ex: http//xml.company.com/order.cgi) which, in turn, will
return an xml response. I have no idea how to do this without using IIS (the
application is written in C#). Can someone point me in the right direction
(samples, framework classes, etc.)?
Thomas S - 30 Jul 2006 00:41 GMT
Look at HttpWebRequest. I used that in an app to upload an XML file and get
a response XML file:
HttpWebRequest req = (HttpWebRequest)WebRequest.Create(requrl);
T
>I have a need to take an xml file generated from a mainframe and post it to
>a remote server (ex: http//xml.company.com/order.cgi) which, in turn, will
>return an xml response. I have no idea how to do this without using IIS
>(the application is written in C#). Can someone point me in the right
>direction (samples, framework classes, etc.)?