I have the SOAP request in an XML file. I want to post the request to the web service in .net How to implement?
|
||||
|
|
|
This isn't the normal way. Usually you would use WCF or the older style web service reference to generate a proxy client for you. However, what you need to do generally is use HttpWebRequest to connect to the URL and then send the XML in the body of the request. |
|||
|
|
|
Here's another example--this one in VB:
|
|||
|
|
|
I've done something like this, building an xml request manually and then using the webrequest object to submit the request:
The string variables at the start of the code are what you set, then you get a string response (hopefully...) from the server. |
|||||||||||
|
|
I'm wondering how's the XML generated and is it a valid SOAP message? You can post it via HTTP as suggested by the folks above. If you want to test if that's going to work, you can give SoapUI a try (for testing I mean). |
|||
|
|
|
You need to post the data over HTTP. Use the WebRequest class to post the data. You will need to send other data with the post request to ensure you have a valid SOAP envelope. Read the SOAP spec for all of the details. |
|||||||
|
|
Sorry for bumping an old thread here's my solution to this
|
|||
|
|
protected by Community♦ May 22 '12 at 23:44
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.