ok does this look even close? When I use service capture it does look like im passing a queryBean to the CFC but ColdFusion is throwing errors my test environment looks like this from Flex... <mx:WebService id="wsPDI" showBusyCursor="true" wsdl="http://test/pdi.cfc?wsdl" useProxy="false"> <mx:operation name="tester" > <mx:request> <qryobject>{myArrayCollection}</qryobject> </mx:request> </mx:operation> </mx:WebService>
to a CFC like this.... <cffunction access="remote" name="tester" returntype="query"> <cfargument name="qryobject" type="query" required="no"> <cfquery name="testqry" dbtype="query"> select * from qryobject </cfquery> <cfreturn testqry /> </cffunction>

