Two more questions:
1. With the approach u see below, where do I get my result?
ws.oneMethod(param1, param2);
2. In the classfile definition of Service I see this constructor:
public function Service(rootURL:String, wsdlURL:String,
logger:mx.services.Log, proxyURL:String, parent:Object,
endpointReplacementURI:String, serviceName:String, portName:String,
pathAppend:String, useProxy:Boolean);
rootURL, what do I fill in here? I guess the rest is not needed... Any
idea's?
Greetz Erik
-----Original Message-----
Hi,
actually, you don't have to declare all operations within the WebService
tag - you can invoke a method directly on the stub:
ws.oneMethod(param1, param2);
or
ws["anotherMethod"](param1, param2);
or even
ws.thirdMethod.apply(null, arrayOfArguments);
Does this help?