Link to home
Start Free TrialLog in
Avatar of augustinejk
augustinejk

asked on

getting Internal error: Unexpected error condition thrown - from iPlanet

Hi,
I am getting the following error while trying to access a jsp file from iPlanet. Could anyone please help

Internal error: Unexpected error condition thrown (java.lang.NoClassDefFoundError: sun/tools/javac/Main,sun/tools/javac/Main), stack: java.lang.NoClassDefFoundError: sun/tools/javac/Main   at com.iplanet.server.http.servlet.IWSJavaC.compile(Compiled Code)   at com.iplanet.server.http.servlet.JSPCompiler.compileJSP(JSPCompiler.java:110)   at com.iplanet.server.http.servlet.JSPCompiler.compileInstance(JSPCompiler.java:125)   at com.iplanet.server.http.servlet.NSServletEntity.load(NSServletEntity.java:311)   at com.iplanet.server.http.servlet.NSServletEntity.update(NSServletEntity.java:173)   at com.iplanet.server.http.servlet.NSServletRunner.Service(NSServletRunner.java:416)  
Avatar of TimYates
TimYates
Flag of United Kingdom of Great Britain and Northern Ireland image

you need to make sure that tools.jar is on the classpath...

Tim
Avatar of augustinejk
augustinejk

ASKER

Thanks for the help.

now I am getting the version mismatch error. I using iPlanet 6.0 and j2sdk 1.4.0

Internal error: Unexpected error condition thrown (java.lang.UnsupportedClassVersionError: sun/tools/javac/Main (Unsupported major.minor version 48.0),sun/tools/javac/Main (Unsupported major.minor version 48.0)), stack: java.lang.UnsupportedClassVersionError: sun/tools/javac/Main (Unsupported major.minor version 48.0)
you need tools.jar from the JDK you are running iPlanet with...
The jsp files are working fine now. But when I use a bean in jsp it throws  the following error. could anyone please help.

JSP compilation error: java.lang.Exception: msg_badTagEnding, stack: java.lang.Exception: msg_badTagEnding   at java.lang.Throwable.fillInStackTrace(Native Method)   at java.lang.Throwable.fillInStackTrace(Compiled Code)   at java.lang.Throwable.<init>(Compiled Code)   at java.lang.Exception.<init>(Compiled Code)   at com.iplanet.server.http.jsp.jsp092.JSP.parseBlock(Compiled Code)   at com.iplanet.server.http.jsp.jsp092.JSP.parseTag(Compiled Code)   at com.iplanet.server.http.jsp.jsp092.JSP.parseNext(Compiled Code)   at com.iplanet.server.http.jsp.jsp092.JSP.parseBlock(Compiled Code)   at com.iplanet.server.http.jsp.jsp092.JSP.parse(JSP.java:608)   at com.iplanet.server.http.jsp.jsp092.JSP.compile(JSP.java:728)   at com.iplanet.server.http.servlet.JSPCompiler.JSPtoJava(JSPCompiler.java:67)   at com.iplanet.server.http.servlet.JSPCompiler.compileJSP(JSPCompiler.java:84)   at com.iplanet.server.http.servlet.JSPCompiler.compileInstance(JSPCompiler.java:125)   at com.iplanet.server.http.servlet.NSServletEntity.load(NSServletEntity.java:311)   at com.iplanet.server.http.servlet.NSServletEntity.update(NSServletEntity.java:173)   at com.iplanet.server.http.servlet.NSServletRunner.Service(NSServletRunner.java:416)  
ASKER CERTIFIED SOLUTION
Avatar of TimYates
TimYates
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
index.jsp file
---------------------------------------------------------
<%@ page import="java.util.*" %>
<%@ page import="java.io.*" %>
<%@ page import="com.admin.*"%>
<jsp:useBean id="admin" scope="page" class="com.admin.AdminTool" />
<html>
<head><title>Admin Tool</title></head>
<body>
<%=admin.getHtmlContent()%>
</body>
</html>

AdminTool.java
---------------------------------------------
package com.admin;
import java.io.*;
import java.util.*;
public class AdminTool{
       public String getHtmlData(){
           --some code ----
           return HtmlString;
      }
}
I am migrating the code from jrun to iplanet. in jrun I have placed the AdminTool.claas under WEB-INF/classes/com/admin, same way I have also done in iplanet. Is there any specific way fro deploying class files.

since I am deviating from the original question i am increasing the points to 400