[flexcoders] Re: Variations of sending arguments to a WebService in AS

2006-08-14 Thread ben.clinkinbeard
I didn't read through all of your code but here is the method I have been using with success. var op:Operation = service.getOperation(GetDataByGrouping) as Operation; op.resultFormat = e4x; // temp object to store arguments var args:Object = new Object(); args.groupingRequests = new Object();

[flexcoders] Re: Variations of sending arguments to a WebService in AS

2006-08-14 Thread kaleb_pederson
Ben, thanks for your comments. I added that to my list of variations and it results in the same traceback as does my variation six -- that is, it generates an error saying that sendStrings (or arg0) was an unexpected parameter found in the input :(. However... without seeing the relevant