I'm using the new remoting for AS2 and when do the following:-

      import mx.data.components.RemotingConnector;

      var my_struct = new Object();

function my_rc_status(stat:Object) {
trace("Categories Error - " + stat.code + " - " + stat.data.faultstring);
}


      var my_rc:RemotingConnector = new RemotingConnector();
      my_rc.gatewayUrl = "http://localhost:8500/flashservices/gateway";;
      my_rc.serviceName = "my_cf_service";
      my_rc.methodName = "my_cf_function";

      my_rc.addEventListener("status", my_rc_status);
      my_rc.params = {DATA: my_struct};
      my_rc.trigger();

I get the following error:-

Categories Error - fault - Service threw an exception during method invocation: The parameter DATA to function my_cf_function is required but was not passed in.

What have I missed?


Chris

---
You are currently subscribed to fugli as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/

Reply via email to