Well, we are calling a webservice which returns the correct xml as we hope.
Now, how can I do to extract the values of webservice response?
The biggest problem is that data in callback function is null...
Here is our code:
We are working under:
v9.0p_2013-08-20/PowerEdition Development SC and IExplrorer 10.0.9200 navigator, Eclipse Helios and Tomcat 7.0.28
Now, how can I do to extract the values of webservice response?
The biggest problem is that data in callback function is null...
Here is our code:
Code:
isc.XMLTools.loadWSDL("http://our_url/RedurWS/RedurWS.asmx?WSDL",function (service){
service.callOperation("HelloWorld", this.getValues(),"String",function (data) {
alert(data);
});
});
We are working under:
v9.0p_2013-08-20/PowerEdition Development SC and IExplrorer 10.0.9200 navigator, Eclipse Helios and Tomcat 7.0.28