While in App A, I want to seamlessly log into App B, using the same
credentials. When using Application.cfm, all it took was to cfinclude
the Application.cfm of App B inside of a page in App A, then any
variables you set after that will be applied to App B (on account of
the cfapplication tag present in Application.cfm).

For example:
<cfset session.loggedIn=true>
<cfinclude template="/AppB/Application.cfm">
<cfset session.loggedIn=true>

How show I rewrite this code now that App B was changed from using
Application.cfm to using Application.cfc?

The example above is greatly simplified. I would need all the other
variables that are inside of Application.cfc to be present for the
single sign-on login procedure to work, so replacing the cfinclude
line with a cfapplication tag would not work.

Thank you,
Mike Chabot

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277220
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to