I am interested to ask... Is it possible to keep session between TWO war(s) on ONE web server. For example there are
- A) war file A
B) war file B
war file A has
...
String aText="Hello World";
session.setAttribute("anAttribute",aText);
...
so my question is... Can I call code like a
String fromAWarFile=session.getAttribute("anAttribute");
... from war file B to get "Hello World" value of war file A?
Any useful comment is appreciated