Werner Punz schrieb:
Georg Füchsle schrieb:
Hallo Werner , hallo Jan-Kees,
thank you for your answers.
- I do not redirect to another application but to another URL inside
the same application.
- I do not change from http to https or vice versa.
- Werner: I tried to youse handleNavigtion instead of redirect, but
unfortunately i didn't succeed as i got an exception. ( I asked this
in another request to this news group...)
But now I examined once more an found out another strange fact:
I loose the session only if the application is called out of a frame.
(The application should be embedded into the website of a customer
using a frameset :)
<frame src="http://localhost:9080/InvestInform/login/iimnall.jsf"
name="anzeige" id="anzeige" title="anzeige" />
Ok here is the issue, you basically change applications implicitely via
the usage of frames :-)
You probably should add your session id to the link.. via
response.encodeUrl you can get a valid url including the id :-)
Make sure you do that for all frame to frame navigations (inside a frame
you wont have to do that)
Werner
Ok Just to add something here, in your case with trying to call a JSF
page from an outside frame, a navigation case wont help you. Navigaton
cases only work within the same frame.
Werner