Any way to share session state between different applications in tomcat?

You should not share HttpSession; but you can share other objects. For example, you can register an object via JNDI and access the same object in all your apps (databases use this to pool connections).

Leave a Comment