• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Class Not Found Error iPlanet web server 6.0--Urgent

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am a newcomer to the users of iPlanet web server 6.0.
I am trying to deploy a bean for which I've placed the classfile (EncryptionObject.class) in the following path:
c:\iPlanet\Servers\https-abcd.in.xyz.com\web-apps\EncryptionObject\WEB-INF\classes\enc

This is the JSP code:
<jsp:useBean id="encobj" class="enc.EncryptionObject" />
<%
String password=encobj.readFile();
out.println("\""+password+"\"");
%>




While compiling the JSP page, following error are generated:

Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated. C:\iPlanet\Servers\https-abcd.in.xyz.com\config\..\ClassCache\_jsps\_PortalTemplates\_Content\_SetPwd\_ContentTemplate_jsp.java:63: Class enc.EncryptionObject not found. enc.EncryptionObject encobj = null; ^ C:\iPlanet\Servers\https-abcd.in.xyz.com\config\..\ClassCache\_jsps\_PortalTemplates\_Content\_SetPwd\_ContentTemplate_jsp.java:65: Class enc.EncryptionObject not found. encobj= (enc.EncryptionObject) ^ C:\iPlanet\Servers\https-abcd.in.xyz.com\config\..\ClassCache\_jsps\_PortalTemplates\_Content\_SetPwd\_ContentTemplate_jsp.java:69: Class enc.EncryptionObject not found. encobj = (enc.EncryptionObject) Beans.instantiate(this.getClass().getClassLoader(), "enc.EncryptionObject"); ^ C:\iPlanet\Servers\https-abcd.in.xyz.com\config\..\ClassCache\_jsps\_PortalTemplates\_Content\_SetPwd\_ContentTemplate_jsp.java:73: Variable encobj may not have been initialized. pageContext.setAttribute("encobj", encobj, PageContext.PAGE_SCOPE); ^ C:\iPlanet\Servers\https-abcd.in.xyz.com\config\..\ClassCache\_jsps\_PortalTemplates\_Content\_SetPwd\_ContentTemplate_jsp.java:84: Variable encobj may not have been initialized. String password=encobj.readFile(); ^ 5 errors, 1 warning

Please help me out.
Thanx.
 
Rancher
Posts: 13459
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"Failed God",
please see the comment on your display name here.
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hai,

Check once whether you followed the following conditions.
1.Make sure that EncryptionObject.java file is declared inside a package or not.When you are writing the beans your first statement must be a package.
2.You need to place the jar file into websever path.


Thanking u.
 
this llama doesn't want your drama, he just wants this tiny ad for his mama
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic