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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

java.lang.NoClassDefFoundError

Status
Not open for further replies.

awesamapowah

Technical User
Apr 12, 2005
1
US
I am trying to access a Tomcat servlet running on a Solaris machine from my client desktop, and am getting an internal error. I am able to startup the servlet and run sample programs that come with Tomcat on it, but not the custom programs that we wrote.

The following are the "exception" and the "root cause":

The server encountered an internal error () that prevented it from fulfilling this request.

javax.servlet.ServletException: Servlet execution threw an exception
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
.
.
.
.

root cause
java.lang.NoClassDefFoundError
at java.io.FileOutputStream.getChannel(FileOutputStream.java:314)
at java.util.logging.FileHandler.openFiles(FileHandler.java:378)
at java.util.logging.FileHandler.(FileHandler.java:232)
at com.redi2.util.LogConfigurator.configure(LogConfigurator.java:31)
at com.redi2.application.Application.make(Application.java:162)
at com.redi2.servlet.RevenueManagerServlet.doGet(RevenueManagerServlet.java:118)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top