In Coldfusion you can invoke a CFC, and it will live throughout the 
execution of that page.

<cfobject component="foo" name="myComp">

<cfscript>
    myComp.init(x,y,z);
    ..
    ..
    someInfo = myComp.getMe(something); //results of which are based on 
the initialization of the above
    someResult = myComp.do(somthing);
</cfscript>

And so foo persists throughout the execute of that page. So far in Flex 
I've only been doing static calls to CFC functions, but was wondering 
with the Flex2 CFC Adapter if it's possible to automatically create 
persistant connection to a RemoteObject as a CFC and just keep an active 
connection to it?

Thx.




------------------------ Yahoo! Groups Sponsor --------------------~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to