sharing session between two jsf web applications
I have two web applications A and B. They are deployed on the same server, so the url will be like http://localhost/A/.. and http://localhost/B/...
We need the users of A to be able to work on B directly, the way we are doing it right now is to put <IFrame> on the jsp of A. This way the pages of B are loaded and embedded in A. Users will not feel the existence of B. This is working fine.
However, B now needs to access some session data of A.
I am lookfing for some ideas of sharing the session between these two applications, besides through database....
Thanks!

