At 04:14 PM 1/29/2002, you wrote: >You say that you are jumping around between them fine. Have >you found some way to share session information between them? >Inorder to mix php and cfml in our webapps, we would need to >either share or transmit session info securely somehow.
this is easily achieved using either a central "session" database or allowing servers (possibly just web application servers on the same machine rather than physical servers) to securely interact with each other. Storing all session info in memory becomes a pain when you want to scale to multiple servers anyway (though using a mix of memory and a central database does make sense to increase performance). There is a good presentation available from the bay area CFUG (bacfug.org) on session management in a server cluster - a custom design using a "session" database and WDDX. We've done similar things here, in fact we've gone as far as sharing member and session info between servers in the US running IIS/ASP/CF and servers in Ireland running AOLServer/ADP/Tcl - securely :) Mark ______________________________________________________________________ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm ------------------------------------------------------------------------------ Archives: http://www.mail-archive.com/cf-linux%40houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_linux or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
