all groups > dotnet xml > july 2006 >
You're in the

dotnet xml

group:

Request/Response XML to a remote server without using IIS


Request/Response XML to a remote server without using IIS William
7/26/2006 4:00:59 PM
dotnet xml:
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.)?

Re: Request/Response XML to a remote server without using IIS Thomas S
7/29/2006 4:41:03 PM
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



[quoted text, click to view]

AddThis Social Bookmark Button