You are correct I am running Coldfusion 9.
When I use static values like <cfset var uCollection['UserID'] = 1>
in the coldfusion code. The results returned are as to what I would
expect.
All the code that I am testing with is the exact same:
Here is my entire as code:
import model.users.UsersVO;
import mx.controls.Alert;
import mx.rpc.events.FaultEvent;
import mx.rpc.events.ResultEvent;
import mx.utils.ObjectUtil;
private var value:UsersVO;
private function resultHandler(event:ResultEvent):void{
trace(ObjectUtil.toString(event.result));
}
private function faultHandler(event:FaultEvent):void{
Alert.show(event.fault.toString());
}
private function clickTest():void{
value = new UsersVO();
value.UserID = 1;
MGService.executeEvent('get.user',value,'user,address');
}
If use the code above and the GetUser method in my previous post as
is. I am returned two empty strings.
--
Model-Glue Sites:
Home Page: http://www.model-glue.com
Documentation: http://docs.model-glue.com
Bug Tracker: http://bugs.model-glue.com
Blog: http://www.model-glue.com/blog
You received this message because you are subscribed to the Google
Groups "model-glue" 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/model-glue?hl=en