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?


 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to