Can someone help me with this problem?

I am placing in session an object from an action class like this request.getSession().setAttribute("currentBean",orderInfoModel.getDetails()); and i use it into a jsp page to print some informations. The page name is called orders.jsp where i use the object: <jsp:useBean id = "currentBean" scope="session" type="miru.orderInfo.OrderInfoBean"/> on that page i have a button and when i click it it opens me a new window(not a new tab) <input type="button" value="Edit" onclick="openWindow('../localhost_3A8080/miru/scrisoareTransport.jsp','ScrisoareDeTransport',1150,600)">

the jsp for the new window(scrisoareTransport.jsp) looks like this :

<%@ include file="taglibs.jsp" %>

<%@ page import="database.navigator.Navigator"%>

<jsp:useBean id = "currentBean" scope="session" type="miru.orderInfo.OrderInfoBean"/>

<html>

.............................

</html>

When i run the application in Firefix i have no problem but when i run it in IE i get this error: bean currentBean not found within scope

i tried to use class="miru.orderInfo.OrderInfoBean" instead of type="" in scrisoareTransport.jsp but when i call a method of currentBean i get NullPointerException

Thanks in advance,

David

[1301 byte] By [Ichybana] at [2007-11-27 7:00:24]
# 1
It sounds like that IE starts a new session on openWindow? Print the HttpSession#getId() and compare it in the both instances.
BalusCa at 2007-7-12 18:51:08 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
and how do i print HttpSession#getId()...I'm a newbie in jsp sorry if my question sounds a bit silly
Ichybana at 2007-7-12 18:51:08 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
That is right...IE starts a new session on openWindowi am using <jsp:useBean id = "currentBean" class="miru.orderInfo.OrderInfoBean" scope="session"/>any advice?10x
Ichybana at 2007-7-12 18:51:08 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...