Re: [flexcoders] cairngorm value object type and cfc type do not match,why?

2007-12-06 Thread Tom Chiverton
On Wednesday 05 Dec 2007, Mark Shen wrote: cfreturn true / This will arrive in Flex as the string true, but otherwise should work. Change the log level to 'Debug' at the bottom of services-config.xml, bounce CF, and you should see information about what is being sent to/from the remoteing

Re: [flexcoders] cairngorm value object type and cfc type do not match,why?

2007-12-05 Thread Mark Shen
Mark - Original Message From: Jeffry Houser [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, December 5, 2007 9:20:41 AM Subject: Re: [flexcoders] cairngorm value object type and cfc type do not match,why? Make sure you add properties to the CFC VO using the cfproperty

[flexcoders] cairngorm value object type and cfc type do not match,why?

2007-12-05 Thread markflex2007
I have built a cfc vo class and flex vo class PersonVO.as package com.abc.CESF.Bursary.vo { import com.adobe.cairngorm.vo.IValueObject; [RemoteClass(alias=Bursary.cfcs.PersonVO)] public class PersonVO implements IValueObject { public var firstname:String = ; public var lastname:String = ;

Re: [flexcoders] cairngorm value object type and cfc type do not match,why?

2007-12-05 Thread Jeffry Houser
Make sure you add properties to the CFC VO using the cfproperty tag. Properties case and order must match what is in the AS3 VO. Additionally, use the full path with dot notation as the argument type. Basically, Flex+CF is not smart enough to know that PersonVO is equal to