Hi all,
The issue we were having was that passing a flex object to a cfc was fine. Flex: RO.methodName(Object); CFC: <!--- map each flex object argument as a cfc argument --- > <cfargument name="flexObjectArgument1" type="string" required="false"> <cfargument name="flexObjectArgument2" type="string" required="false"> ..etc (full post here) http://www.mccran.co.uk/index.cfm/2008/7/1/Flex--Coldfusion-Remoting-passing -an-Object-usefully So the object is passed into the cfc as a collection of arguments, works a treat. But it all goes wrong when you try and pass in "something", and the object. IE: Var myName:string = "Bob"; RO.methodName(myName ,Object); So in the cfc I'd expect to say: <cfargument name="myName" type="string" required="false"> <cfargument name="flexObjectArgument1" type="string" required="false"> <cfargument name="flexObjectArgument2" type="string" required="false"> ..etc But this doesn't work! The first arg is present, but the second does not map as it previously did! So: 1. Pass 1 object, translates as a series of arguments. 2. Pass 'something', then an object, different behaviour. It seems to me that the behaviour of passing objects is different wether they are on their own, or passed with other data? Anyone experienced this? From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of nwebb Sent: 04 July 2008 08:25 To: [email protected] Subject: Re: [flexcoders] Re: Anyone familiar with CF-Flex remoting?

