Hi, Is there, like SoapToolkit2 from Microsoft, a service invocation package which, just with a WSDL file, invokes a method WITHOUT a stub class?
With MS in javascript we just write these few lines,
var client = new ActiveXObject("MSSOAP.SoapClient");
client.mssoapinit("MyDescr.wsdl", "Person", "PersonPort", "");
var aName=client.getName();
My service "Person" is defined as Java object deployed under Apache SOAP2.
Jean-Louis.
