Skip to content Skip to sidebar Skip to footer

Call Soap Webservice(made In .net) Through Javascript

I am developing one mobile web application. In this, i want to call a Web Service and fetch data from their using Java Script only. I searched a lot and try to implement some code

Solution 1:

One easy would be to create an ASP.NET Web API Http service wrapper around your current webservice and use jQuery to access it. This will be much simpler than using JS to access a SOAP service.

More on ASP.NET Web API: http://www.asp.net/web-api

Post a Comment for "Call Soap Webservice(made In .net) Through Javascript"