You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by Ol...@axa-alert.com on 2001/02/08 16:21:57 UTC

Urgent: Lost session ID

Hi, 

I need urgent help due to this problem is a show stopper for us at the
moment. 

Following problem:

After having successfully logged in we forward control to a jsp-page that
builds a frameset with two frames. 
The first frames loads a html-page, the second one a jsp that build again a
frameset out of two frames. 

Here the first one loads again a html-page whereas the second one loads a
application jsp-page. In this page we get a different session id than in the
logon-jsp-page and subsequently this page could'nt find our session
attributes. 

We use IPlanet AS6.0 and IE5.0. 

Logon.jsp:
==========
forwars control via request dispatcher to First framset-jsp...


First frameset-jsp: 
===================

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
  <head>
    <html:base />

    <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">


  </head>

  <frameset rows="50px,*" frameborder="0">
    <frame name="FraCaH01" src="Candi/candiMenue.html" scrolling="no">
    <frame name="FraCaH02" src="<%= response.encodeURL("candiASHome.jsp")
%>" scrolling="yes">
  </frameset>
</html>


Second framset-jsp:  ==> has a new session ID
===================

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
  <head>
    <html:base />

    <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">


  </head>

  <frameset rows="*,30px" frameborder="0">
    <frame name="FraCaAS01" src="<%=
response.encodeURL("candiAktensuche.jsp") %>" scrolling="yes">
    <frame name="FraCaAS02" src="Candi/green.html" scrolling="no">
  </frameset>
</html>

candiAktensuche.jsp: ==> has a new session ID
===================

Thanks !!!
Oliver