views:

52

answers:

1

Title says it all. I have a hybrid Ruby on Rails/GWT system and need to persist session data between the two servers, such that when a user is logged into the Rails system they are "logged in" to the GWT/Tomcat system, and vice versa. Anyone know of a simple way to do this?

+3  A: 

Store your session data into a database which can be used by both systems.

khmarbaise