Re: [flexcoders] CFC/VO match not recognized

2008-07-18 Thread Tom McNeer
Hi Douglas, First, thanks so much for helping. This is really the same issue I threw out last week, which you tried to help with. My supposition that it was an object translation issue was correct. But I wouldn't have solved it without you. A few specifics here, just to show what the problem

Re: [flexcoders] CFC/VO match not recognized

2008-07-18 Thread Douglas Knudsen
good to hear things are better and working there Tom. No I didn't know about __type__, interesting, thanks for the info. cheers! DK On Fri, Jul 18, 2008 at 10:41 AM, Tom McNeer [EMAIL PROTECTED] wrote: Hi Douglas, First, thanks so much for helping. This is really the same issue I threw out

Re: [flexcoders] CFC/VO match not recognized

2008-07-18 Thread Tom McNeer
On Fri, Jul 18, 2008 at 12:52 PM, Douglas Knudsen [EMAIL PROTECTED] wrote: No I didn't know about __type__, interesting, thanks for the info. If you try it, don't do what I did (and just about half the folks on the Transfer list seem have done) and only put one underscore on either side

[flexcoders] CFC/VO match not recognized

2008-07-17 Thread Tom McNeer
I'm trying to solve an issue I posted about earlier, where a call to a method of a ColdFusion CFC resulted in an error saying that the required parameter - Estimate - was missing, even though I could see through ServiceCapture that the object was, in fact, being sent. I'm working on the theory

Re: [flexcoders] CFC/VO match not recognized

2008-07-17 Thread Douglas Knudsen
your first getEstimate() shoudl do it, the second will only return to Object in Flex. Now, that said, I believe you need setters/getters on all vars in your CFC, this might be the case for sending from Flex to CF, but not sure, its been a whole year since I messed with CF that much :) Also note