I'm new to Flash, very new. I have written a Web Service (Cold Fusion
Component) that accepts an argument named testID. The default value is 1. The
service runs a query and returns the record associated with the testID.
In Flash, I have a WebServiceConnector which gets triggered when the swf is
loaded. My problem is sending a testId value to to web service. None of the
following pieces of code work, I always get record 1.
this.myReceiveWebServiceConnector.trigger(2);
this.myReceiveWebServiceConnector.trigger(testID=2);
How do I get the 2nd record
LBStorm - 25 Aug 2005 19:59 GMT
Sounds like the problem is in the web service. I would test by modifing the service to just return the parmater that you are passing it. This way you know the paramemter is making it into the WS.