JSP Web Application State
Hi there,
I have a question regarding application state in a jsp web app. Can value be passed across different server like the use of cookie and session? If so what do I need to do? I'm current running the same web app on two different server because of an external plugins features that I'm using.
ex: If I start at the main webpage on Server A and intial an application variable called "test = A" and then directed to a second page on Server B and try to change the same variable to say "Test = B", now when I go back to the initial page on Server A, I should see "Test = B" not "Test = A". But I'm seeing "Test = A", my initial guess is that there when my application move to a second page on a different Server it started up a new state which on the page on the second Server will recognize while Server A still retain the application initial state.
So back to question, is it possible to have the same Application state run on two different Server? If so please provide me an example or a source to resolve this. Thanks for all you help.
Alex

