tags:

views:

66

answers:

2

How can I calling a webservice not written by me from asp.net ajax. What's the latest and best way of doing it?

+1  A: 

ASP.NET AJAX is not the preferred library any more. Use jQuery instead which also supports jsonp which is what you will need to call cross-domain web services from the client.

aleemb
please an example
Musa
+2  A: 

Call the Sys.Net.WebServiceProxy invoke Method

Details here

Skiltz