TerryM
TerryM

Reputation: 3

Soap Request/Response without WSDL

I have to query once an hour to a remote web server to recieve data. However the remote web site does not use web services and state in thier 300+ page document that:

Although SOAP is a recognized Web Services API, the RTO web server does not offer a web services interface. That is, there is no Web Services Description Language (WSDL) file available for usage by participant web services client software.

So my question is how do send a soap request and get a response without the use of a WSDL?

Upvotes: 0

Views: 1453

Answers (1)

John Saunders
John Saunders

Reputation: 161773

  1. Build the XML yourself, using your choice of XML API (XmlDocument, LINQ to XML)
  2. Send the message using WebRequest

Upvotes: 1

Related Questions