RE: [flexcoders] Using Value Objects CFC's

2005-07-27 Thread Allen Manning
Good stuff... -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Malcolm Sent: 27 July 2005 02:17 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Using Value Objects CFC's Testify! That sure did the trick. I have done the following

RE: [flexcoders] Using Value Objects CFC's

2005-07-26 Thread Allen Manning
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Allen Manning Sent: Tuesday, 26 July 2005 3:11 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Using Value Objects CFC's Malcolm, We are doing this very thing and it is working well for us. We use CFCs as our VOs and it allows

RE: [flexcoders] Using Value Objects CFC's

2005-07-26 Thread Malcolm
@yahoogroups.com Subject: RE: [flexcoders] Using Value Objects CFC's Malcom, I think that's it. Try this: var call = service.login( { loginVO : loginVO } ); //strange looking syntax huh, but it works You see the anon object which is naming the param. It took us ages to figure this one out

RE: [flexcoders] Using Value Objects CFC's

2005-07-25 Thread Allen Manning
. Allen http://www.prismix.com/ -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Malcolm Sent: 24 July 2005 11:31 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Using Value Objects CFC's For the record, I did end up trying Approach 1

RE: [flexcoders] Using Value Objects CFC's

2005-07-25 Thread Malcolm
:[EMAIL PROTECTED] On Behalf Of Allen Manning Sent: Tuesday, 26 July 2005 3:11 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Using Value Objects CFC's Malcolm, We are doing this very thing and it is working well for us. We use CFCs as our VOs and it allows us to type them in and out

RE: [flexcoders] Using Value Objects CFC's

2005-07-24 Thread Malcolm
suggested best practice? Comments welcome :D Cheers, M -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Douglas Knudsen Sent: Sunday, 24 July 2005 7:32 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Using Value Objects CFC's a CFC

Re: [flexcoders] Using Value Objects CFC's

2005-07-23 Thread Tariq Ahmed
Hey Malcolm. Well CFC's generally only accept datatypes they understand: boolean, string, numeric, array, struct, etc... This article may give you a head start: http://www.flexingcfmx.com/index.cfm?mode=entryentry=D36D5CE5-FB00-283B-A23A89CB46949A4D Malcolm wrote: Hi yo'll I am using Remote