Hey all,
I 'm trying to install iplanet web server6 and run it in intranet but got a problem
any idea?

File structure
jsp folder: containing all the jsp pages
DD1 folder containing my java class files and a servlet class
under DD1 folder I have 3different folder namely, Dao, Delegate,ValueObject
and each contains class files
My servlet class is DD1.Delegate.Dispatcher

I put the jsp folder under iplanet/servers/docs
and DD1 folder under iplanet/servers/docs/servlet

Problem

when i try to get a jsp file like below, I get a error message like this
(
Class DD1.ValueObject.CompanyVO not found in import
Class DD1.DAO.CompanyDAO not found in import
)

<HTML>
<HEAD>
<TITLE>
CompanyView
</TITLE>
<style>
<!--
<%--@ include file="JP1.css" --%>
-->
<%@ page import="DD1.ValueObject.CompanyVO" %>
<%@ page import="DD1.DAO.CompanyDAO" %>

</style>
 

</HEAD>

<body>
<%
    CompanyVO cvo = new CompanyVO();
    cvo=(CompanyVO)session.getAttribute("NEWCVO") ;

    String cd = cvo.getCreatedDate();
    int comid = cvo.getCompanyID();
%>
<H1>
  Add New Company
  </H1>
  <form action="/servlet/JP1.Delegate.Dispatcher" method="post">
  <input type="hidden" name="action" value="AddCompanySubmit">
  <input type="hidden" name="delegate" value="Company">
 
 

   <INPUT TYPE="SUBMIT" name="which" VALUE="Save">
        <INPUT TYPE="SUBMIT" name="which" VALUE="NewContact">
   <INPUT TYPE="SUBMIT" name="which" VALUE="Exit">
  </form>
 

</BODY>
</HTML>

I tested my codes with Tomcat3.2.4 and 4.0.1 and found no problem.
I guess I'm missing some kind setup procesure.
It looks like jsp page can't find my classes under DD1 folder and I have tried any possible path i can think of...

thanks in advance
 

---------------------------------------------------------------------

E-mail Confidentiality Notice and Disclaimer

This email and any files transmitted with it are confidential and are intended solely for the use of the individual or entity to which they are addressed. Access to this e-mail by anyone else is unauthorised. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is prohibited.
E-mail messages are not necessarily secure. Hitachi does not accept responsibility for any changes made to this message after it was sent.
Please note that Hitachi checks outgoing e-mail messages for the presence of computer viruses.

---------------------------------------------------------------------

Reply via email to