andreipopescu
Programmer
Hi. We have Iplanet 4.1 Web server running with support for Servelts and JSP.
I need to install a JSP application that make refferences to several beans. Where should I install the application (bean) classes? I tried to put them in a Servlet directory and change the jsp pages accordingly but they do not seem to be seen there. Here the beggining of my JSP page
=====
<jsp:useBean id="user" class="/Servlets/currmap/LoginData" scope="session"/>
<jsp:useBean id="orconn" class="/Servlets/currmap/OracleConnection" scope="session"/>
<jsp:useBean id="curruser" class="/Servlets/currmap/CurrentUser" scope="session"/>
<jsp:setProperty name="user" property="*"/>
<html>
<head>
<title>Curricula Mapping</title>
=========
The question is where do I put these classes (LoginData, CurrentUser) and others?
Thanks.
I need to install a JSP application that make refferences to several beans. Where should I install the application (bean) classes? I tried to put them in a Servlet directory and change the jsp pages accordingly but they do not seem to be seen there. Here the beggining of my JSP page
=====
<jsp:useBean id="user" class="/Servlets/currmap/LoginData" scope="session"/>
<jsp:useBean id="orconn" class="/Servlets/currmap/OracleConnection" scope="session"/>
<jsp:useBean id="curruser" class="/Servlets/currmap/CurrentUser" scope="session"/>
<jsp:setProperty name="user" property="*"/>
<html>
<head>
<title>Curricula Mapping</title>
=========
The question is where do I put these classes (LoginData, CurrentUser) and others?
Thanks.