Hello all,

quick question which I hope someone is able to answer.

I have an event gateway setup that takes an *object reference*, *method name
* and *arguments collection*.
I pass the gateway a *reference* to an object in the session scope, like so;

<cfscript>
 myData = structNew();
* myData.object = session.test;*
 myData.methodName = "doUpdate";
 sendGatewayMessage( "ASynchronousCall", myData );
</cfscript>

the method "doUpdate" sets the instance variables in session.test to 1

I know that the gateway calls the method as I have it writing a file (boy
event gateways are a pain to debug!).
What it doesn't do is update the original object I passed a reference of,
because when I output the instance variable its still 0.

Am I missing something crucial here?

Thanks in advance

-- 
Try the new Australian search engine and business directory
www.clickfind.com.au

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to