How can I Invoke my ASP.NET Web services from an external server and a different platform?
For example:
[WebMethod]
public string Hello(string name)
{
return "Hello " + name;
}
Thanks
Dear:
I have a Web Services with a WebMethod:
public ArrayList GetLanguages()
{
ArrayList Lang_Array = ...;
return Lang_Array;
}
and the response is:
<?xml version="1.0" encoding="utf-8" ?>
<ArrayOfAnyType xmlns:xsd="http://www.w3.org/2001/XMLSchema"...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.