I have deployed two WAR's in a Tomcat6 server, Say for example WAR-A, WAR-B in Context-A and Context-B respectively.
I've stored some data in Context-A, and I want to read that data in Context-B.
I have gone through the net and got some way to acheive it. I make the session ID of Context-A available for all the contexts by cookies. And I have set the crossContext = true in server.xml too.
But when I do serveltContext.getContext("Context-A"); in Context-B it's returning null.