Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Bean deployment in IPlanet 4.1 (JSP)

Status
Not open for further replies.

andreipopescu

Programmer
Sep 9, 2002
1
US
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=&quot;user&quot; class=&quot;/Servlets/currmap/LoginData&quot; scope=&quot;session&quot;/>
<jsp:useBean id=&quot;orconn&quot; class=&quot;/Servlets/currmap/OracleConnection&quot; scope=&quot;session&quot;/>
<jsp:useBean id=&quot;curruser&quot; class=&quot;/Servlets/currmap/CurrentUser&quot; scope=&quot;session&quot;/>
<jsp:setProperty name=&quot;user&quot; property=&quot;*&quot;/>
<html>
<head>
<title>Curricula Mapping</title>
=========
The question is where do I put these classes (LoginData, CurrentUser) and others?

Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top