I'm about to start testing/implementing a Flash Remoting interface to an application I'm building in Fusebox 4.1 (I figured, why make it easy on myself, I should just dive into two new areas at once! :)) I've built most of my model and am about to start on the gateway object that I plan on using as the interface to my application for Flash (please excuse my misuse of the term 'gateway' here.)
In my model, most of my methods are declared "public" but I know for Flash you need to declare your methods "remote" so here's where my question comes in. My model does a lot of reference passing when it comes to objects, stuff like productManager.getDAO() and the like, so I can more easily swap out components if needed. If I pass a component reference to Flash this way (flashInterface.getProductManager().getDAO().fetch(productID) for example) will this work, even though all the methods on productDAO() are public, and not remote? I really don't want to implement every possible method within the Flash interface object, wrapping other method calls around remote method declarations. :) Any help is greatly appreciated! Thanks, Ken ---------------------------------------------------------- You are subscribed to cfcdev. To unsubscribe, send an email to [EMAIL PROTECTED] with the words 'unsubscribe cfcdev' in the message of the email. CFCDev is run by CFCZone (www.cfczone.org) and supported by Mindtool, Corporation (www.mindtool.com). An archive of the CFCDev list is available at www.mail-archive.com/[email protected]
