Part of the app that I'm writing will be making a call to a ColdFusion CFC as defined by the user. The app won't have any idea of the location of the CFC, or even the URL where it can be found at compile time. I've heard so much about RemoteObject in terms of it's size, and speed, but is it possible to use RemoteObject on a server other than one you control?
For example, if I have a CFC located here: http://www.commadelimited.com/myCFC.cfc How would that change the following code? var ro:RemoteObject = new RemoteObject(); ro.destination = "??"; ro.getList.addEventListener("result", success); ro.addEventListener("fault", failure); Do I just dump the URL into the destination variable? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/Flex/message.cfm/messageid:5344 Subscription: http://www.houseoffusion.com/groups/Flex/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.37
