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

