I am trying to call web services in my asp.net application. I got success in calling normal web service. But Now I am trying to call xml web services in my web project. I have try for this using xmlhttp but i didn't get success in this. Can anyone help me in this?
1 Answer
It's not clear what you mean by XML web service. For example ASP.NET web services that use SOAP are also XML. Maybe you mean a POX service (Plain Old XML)? In this case you could use a WebClient or an HttpWebRequest to manually forge and send an HTTP request to a given resource and fetch the result.
1 Comment
Hiren H Patel
I got the answer. Its using HttpWebRequest. Thank you for replaying