I'm trying to send an object from Java to Flex using BlazeDSand the
following code:quote:var remoteObject:RemoteObject = new
RemoteObject();remoteObject.destination =
"someDestination";remoteObject.addEventListener(ResultEvent.RESULT,resultHandler,
false, 0, true);remoteCommandObject.someMethod();The remote method is
invoked and returns an object thatresults in the following error
"ArgumentError: Error #2004: One ofthe parameters is invalid." I've read
that you must reference theclass the remote...