Hiren H Patel
Hiren H Patel

Reputation: 167

How to call XML Webservices in ASP.Net

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?

Upvotes: 0

Views: 805

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038790

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.

Upvotes: 2

Related Questions