Hi Ayudh,
> Is it possible to distribute apps across multiple CFMX servers so that when
> a user logs on at server A, then gets redirected to a related app in server
> B, there's no need to logon again? I guess both servers would need to be
> able to decode and recognize the CFID & CFTOKEN cookies. Is this something
> that only comes with Enterprise Edition perhaps?
You can do this pretty easily by using client variables that are stored in
a database that's networked to both machines. When the user logs in
correctly, set a client variable eg. <cfset client.loggedin = 1> You can then test for
that variable
on both machines.
If you do this, it's a good idea to use UUIDs for CFToken which you can
set in the CF Admin. Also, you will probably want to reset CFID and
CFToken to become session cookies so that closing the browser logs the
user out as well.
ie.
<cfif isDefined("cookie.CFID") AND isDefined("cookie.CFToken")>
<cfcookie name="CFID" value="#cookie.CFID#">
<cfcookie name="CFToken" value="#cookie.CFToken#">
</cfif>
HTH
Tim
---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
MX Downunder AsiaPac DevCon - http://mxdu.com/