I am trying to create a web service in
ActionScript that will push 4 variables to a remote CFC to do a simple insert.
How can I pass the 4 variables in the code? Assume I know not much. This is my
first Web Service.
Here is what I have so far:
var trackerDAO:WebService = new WebService();
trackerDAO.wsdl = "https://umm/prmc/videotrack/trackerDAO.cfc?wsdl";
trackerDAO.loadWSDL();
var operation:Operation = new Operation(null, "countIt");
operation.addEventListener(FaultEvent.FAULT, alertFault);
operation.request(addOne, results, action, source); <---Wrong??
operation.send();
How close am I or how far off?