|
Possible error in RemoteFlashService.as
|
Sam Shrefler
|
Feb 16, 2006 05:01 PST
|
I received an errror while trying to return a query.
"You have attempted to dereference a scalar variable of type class
coldfusion.runtime.Array as a structure with members."
It seems to be coming from the check: <cfif IsCFCType(arguments.result, "
tartan.vo.ValueObject")> from RemoteFlashService.as
In order to fix the problem, i changed it to:
<cfif IsQuery(arguments.result)>
<cfreturn arguments.result/>
<cfelseif IsCFCType(arguments.result, "tartan.vo.ValueObject")>
this seems to fix the problem and i can once again send query's as results
using tartan.
Sam
|
|
 |
|