I am doing
protected var swx:SWX = new SWX();
public function Data() {
swx.gateway = '
http://localhost:8090/swx';
swx.debug = true;
var callParameters:Object = {
serviceClass: 'TestDataTypes', method: 'testArray',
result: [this, this['testArrayHandler']]
}
swx.call(callParameters);
trace('called');
}//()
public function testArrayHandler(event:Object):void {
trace('Result ');
trace('Result :' + event.result);
}
and it does not call "Result".
My 1st one.
I am using latest SVN code from swx and swx java.
What should I do?
It calls the java side, I have a trace... it just never responds.
suggestion?
tia,
.V