NpsWebServiceClient class

NpsWebServiceClient helps to access your webservice with javascript

Below shows how to invoke Login method located at http://www.jwebstar.com/admin/WebService.jws?wsdl. This method need two arguments,one for email and another for password.

var client = new NpsWebServiceClient("http://www.jwebstar.com/admin/WebService.jws?wsdl");
var args = new Array();
args[0]="your email";
args[1]="your password";
var result = client.Invoke("Login",args);
out.Error(result[0]);
top

Method Summary