I want access to the Methods of my WebService (SOAP).. I tried it on a other way, but didnt worked.. Now I will create this scenario in Javascript:
MyWebService client = new MyWebService();
So that I can access the Methods like:
client.GetYear()
in javascript!
Hope u guys can help me..
EDITED:
If you create a WebService, u can access it like:
MyWebService client = new MyWebService();
with:
string theName = client.GetName();
so but I want to acces this method with javascript, not with C#, How do I create the "client" in Javascript?