[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

08/13/2004 at 03:44AM PDT, ID: 21092581
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

5.8

Unable to compile JSP under embedded Tomcat

Asked by stevebeech in Java Server Pages (JSP)

Tags: tomcat, compile, embedded, jsp

Hi,

I have a struts-based application running within embedded Tomcat - it works fine on my machine. However, when I move it to another machine and try to run it I get an error from ONE of the jsps - others run fine. The error I get is:
-----
org.apache.jasper.JasperException: Unable to compile class for JSP

No Java compiler was found to compile the generated source for the JSP.
This can usually be solved by copying manually $JAVA_HOME/lib/tools.jar from the JDK
to the common/lib directory of the Tomcat server, followed by a Tomcat restart.
If using an alternate Java compiler, please check its installation and access path.

      org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:83)
      org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:315)
      org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:406)
      org.apache.jasper.compiler.Compiler.compile(Compiler.java:463)
      org.apache.jasper.compiler.Compiler.compile(Compiler.java:442)
      org.apache.jasper.compiler.Compiler.compile(Compiler.java:430)
      org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:511)
      org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:274)
      org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
      org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

note The full stack trace of the root cause is available in the Apache Tomcat/5.0.25 logs.
---------

My JSP file is:

---------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>

<html:html locale="true">
<logic:notPresent name="vstaff" scope="application">
      <logic:redirect href="initialise.do"/>
</logic:notPresent>
<HEAD>
<%@ page
language="java"
import = "uk.co.xks.vtrack.forms.SigninForm, uk.co.xks.vtrack.forms.StaffForm, java.util.Enumeration, java.util.Vector"
contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"
%>
<% Vector vstaff = (Vector) getServletContext().getAttribute("vstaff"); %>

<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<META name="GENERATOR" content="IBM WebSphere Studio">
<META http-equiv="Content-Style-Type" content="text/css">
<LINK href="theme/vtrack.css" rel="stylesheet" type="text/css">
<TITLE><bean:message key="index.title"/></TITLE>
</HEAD>

<BODY>
<center>
<h4><bean:message key="index.welcome"/></h4>

<table width="100%" cellpadding="8" border="0" rules="rows" align="center">
<tr height="20"><td colspan="3"></td></tr>
<tr><td width="20%" valign="top"><html:img srcKey="image.company_logo" altKey="image.company_logo.alt"/></td>
<td align="center"><h1><bean:message key="index.signin"/></h1><h5><bean:message key="index.info"/></h5>
<html:errors/>
<html:form action="signin.do" focus="visitorName">
<table>
<tr valign="top"><td width="50%" align="right"><h3><bean:message key="index.name"/></h3></td>
<td width="50%"  align="left"><input type="text" name="visitorName" size="30" tabindex="1"></td></tr>
<tr valign="top"><td width="50%" align="right"><h3><bean:message key="index.company"/></h3></td>
<td width="50%"  align="left"><input type="text" name="companyName" size="30" tabindex="2"></td></tr>
<tr valign="top"><td width="50%" align="right"><h3><bean:message key="index.car_reg"/></h3></td>
<td width="50%"  align="left"><input type="text" name="carRegistration" size="30" tabindex="3"></td></tr>
<tr valign="top"><td width="50%" align="right"><h3><bean:message key="index.visiting"/></h3></td>
<td width="50%" align="left">
<html:select property="visitingName">
<html:options collection="vstaff" labelProperty="staffName" property="staffId"/></html:select></td></tr>
<tr align="center">
<td align="right"><html:submit><bean:message key="button.signin" /></html:submit></td>
<td align="center"><html:reset><bean:message key="button.reset" /></html:reset></td>
</tr>
</table>
</html:form>
</td><td></td></tr></table>

<table><tr height="70"><td></td></tr></table>

<table width="100%" cellpadding="8" border="0" rules="rows" align="center">
<tr align="center">
<td><h1><bean:message key="index.logout1"/> <a href="listvisitors.do"><bean:message key="index.logout2"/></a></h1></td>
</tr>
</table>

<table width="100%" border="0" rules="rows" align="center">
<tr valign="bottom">
<td align="center"><html:img srcKey="image.spare_logo1" altKey="image.spare_logo1.alt"/></td>
<td align="center"><html:img srcKey="image.spare_logo2" altKey="image.spare_logo2.alt"/></td>
<td align="center"><html:img srcKey="image.spare_logo3" altKey="image.spare_logo3.alt"/></td>
<td align="center"><html:img srcKey="image.spare_logo4" altKey="image.spare_logo4.alt"/></td>
</tr>
</table>

</BODY>
</html:html>
--------

As I said, other JSPs in the application work fine, so I ssumed it might be a typo but I've checked and checked and cannot find one (all "" ; etc are okay as far as I can tell). I've included the tools.jar in my classpath (set in a bat file when the app runs).

Does anyone have any ideas?
 
Loading Advertisement...
 
[+][-]08/13/04 03:57 AM, ID: 11791635

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/13/04 04:07 AM, ID: 11791687

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/13/04 04:14 AM, ID: 11791723

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/13/04 04:15 AM, ID: 11791727

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/13/04 04:19 AM, ID: 11791751

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/13/04 04:21 AM, ID: 11791760

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/13/04 04:22 AM, ID: 11791765

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/13/04 04:34 AM, ID: 11791823

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/15/04 07:01 PM, ID: 11806523

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/16/04 04:25 AM, ID: 11808860

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/16/04 04:32 AM, ID: 11808894

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/16/04 09:06 AM, ID: 11811779

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]08/20/04 10:15 AM, ID: 11853489

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Java Server Pages (JSP)
Tags: tomcat, compile, embedded, jsp
Sign Up Now!
Solution Provided By: RomMod
Participating Experts: 2
Solution Grade: B
 
 
 
Loading Advertisement...
20091111-EE-VQP-91