Re: [flexcoders] ColdFusion adapter for remoting forgets super classes.

2006-10-05 Thread Tom Chiverton
On Tuesday 03 October 2006 17:34, Mike Nimer wrote: it, it won't be as easy as you think it will be. Adding a few more cfproperty tags is a very very simple workaround. Yes, but when the CFC in question is (say) the customisable TO the extends the managed TO in Reactor, if a data type or

RE: [flexcoders] ColdFusion adapter for remoting forgets super classes.

2006-10-03 Thread Mike Nimer
Of EECOLOR Sent: Monday, September 25, 2006 10:27 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] ColdFusion adapter for remoting forgets super classes. It indeed becomes quite unhandy and exposes you to another set of human errors. I tried to use an init method in which i would

Re: [flexcoders] ColdFusion adapter for remoting forgets super classes.

2006-09-25 Thread Tom Chiverton
On Friday 22 September 2006 13:18, EECOLOR wrote: Object props[] = (Object[])CFCMetaData.get(PROPERTIES); The CF GetMetaData function has the same problem if there are properties in the class the object extends. This did pose a problem for us, returning Reactor TOs. The fix was simply to copy

Re: [flexcoders] ColdFusion adapter for remoting forgets super classes.

2006-09-25 Thread EECOLOR
It indeed becomes quite unhandy and exposes you to another set of human errors. I tried to use an init method in which i would automatically check the super components for properties and add them to the property array of the current component. This however was (for me) a bit difficult because