XML post command

  • Thread starter Thread starter e-lores
  • Start date Start date
e-lores,

Is it a web service? If it is, then you might want to try and set a web
reference in your project, or use the WSDL.EXE tool to create a proxy to
interact with the web service (if you don't have VS.NET).

If not, then you can make HTTP requests using the HttpWebRequest and
HttpWebResponse classes. Of course, you have to manipulate XML as well, and
that is where the classes in the System.Xml namespace come in.

Hope this helps.
 
Back
Top