WAS v8.5 > Reference > Administrator best practices

JSP troubleshooting tips

Use this tips to troubleshoot problems with JSP.


JSP source code shown by the web server

If you share the document root of the WebSphere Application Server with the web server document root, a security exposure can result as the web server might display the JSP source file as plain text.

Problem

We can use the WebSphere Web server plug-in set of rules to determine whether a given request will be handled by the WAS. When an incoming request fails to match those rules, the web server plug-in returns control to the web server so the web server can fulfill the request. In this case, the unknown host header causes the web server plug-in to return control to the web server because the rules do not indicate the WAS should handle it. Therefore, the web server looks for the request in the web server document root. Since the JSP source file is stored in the document root of the web server, the web server finds the file and displays it as plain text.

Suggested solution

Move the WAS JSP source file outside of the web server document root. Then, when this request comes in with the unknown host header, the plug-in returns control to the web server and the JSP source file is not found in the document root. Therefore, the web server returns a 404 File Not Found error rather than the JSP source file.


Problems displaying double-byte character set (DBCS) characters when using the @include directive


JSP files that use the @include directive might experience problems when displaying double-byte character set (DBCS) characters. Some applications that are migrated to WAS v6.0 and above might need to be modified to comply with the JSP 2.0 specification as a result of backwards compatibility issues. The JSP 2.0 specification requires that each statically included resource must set a page encoding or content type because the character encoding for each file is determined separately, even if one file includes another using the include directive.


Problems using the JSP engine

If you are having difficulty using the JSP engine, try these steps:

  1. Determine whether other resources such as .html files or servlets are being requested and displayed correctly. If they are not, the problem probably lies at a deeper level, such as with the HTTP server.

  2. If other resources are being displayed correctly, determine whether the JSP processor has started normally:

    • Browse the JVM logs of the server hosting the JSP files you are trying to access. The following messages indicate the JSP processor has started normally:
      Extension Processor [class com.ibm.ws.jsp.webcontainerext.JSPExtensionProcessor] 
      was initialized successfully. 
      Extension Processor [class com.ibm.ws.jsp.webcontainerext.JSPExtensionProcessor] 
      has been associated with patterns [*.jsp *.jspx *.jsw *.jsv ].
      If the JSP processor fails to load, you will see a message such as
      No Extension Processor found for handling JSPs.
      JSP Processor not defined. Skipping : jspfilename.
      in the root_dir/logs/server_name/SystemOut.log file

  3. If the JSP engine has started normally, the problem may be with the JSP file itself.

    • The JSP may have invalid JSP syntax and could not be processed by the JSP Processor. Examine the root_dir/logs/server_name/SystemOut.log file of the target application for invalid JSP directive syntax messages. Errors similar to the following in a browser indicate this kind of problem:
      Message: /filename.jsp(2,1)JSPG0076E: Missing required attribute page for jsp 
                   element jsp:include 
      This example indicates that line 2, column 1 of the named JSP file is missing a mandatory attribute for the jsp:include action. Similar messages are displayed for other syntax errors.
    • Examine the target application server's SystemErr.log files for problems with invalid Java syntax. Errors similar to Message: Unable to compile class for JSP in a browser indicate this kind of problem.

      The error message output from the Javac compiler will be found in the SystemErr.log file. It might look like:

      JSPG0091E: An error occurred at line: 2 in the file: /myJsp.jsp 
      JSPG0093E: Generated servlet error: c:\WASROOT\temp\ ... 
      test.war\_myJsp.java:16: myInt is already defined in com.ibm.ws.jsp20._myJsp 
      int myInt = 122; String myString = "number is 122"; static int myStaticInt=22; 
      int myInt=121;                    
               ^  1 error

      Correct the error in the JSP file and retry the file.

    • Examine the log files for the target application for problems with invalid Java syntax. Errors similar to Message: Unable to compile class for JSP in a browser indicate this kind of problem.

      The error message output from the Javac compiler will be found in the SystemErr.log. It might look like:

      JSPG0091E: An error occurred at line: 2 in the file: /myJsp.jsp 
      JSPG0093E: Generated servlet error: c:\WASROOT\temp\ ... 
      test.war\_myJsp.java:16: myInt is already defined in com.ibm.ws.jsp20._myJsp 
      int myInt = 122; String myString = "number is 122"; static int myStaticInt=22; 
      int myInt=121;                    
               ^  1 error

      Correct the error in the JSP file and retry the file.

IBM recommends using the HPEL log and trace infrastructure. With HPEL, one views logs using the LogViewer command-line tool in PROFILE/bin.


JavaServer Pages fail to compile when using precompile

Symptom Problem Suggested solution
JSP fail to compile during deployment through the dmgr console when precompile is selected.
SystemErr R com.ibm.websphere
 .management.exception
 .AdminException: 
ADMA0021E: Error in compiling jsps -
 xyz.war (rc=1)
JSP fail to compile during deployment through the dmgr console when precompile is selected when there is a dependency on another JAR file not available on any class path. You may use wsadmin scripting to precompile JSP files during enterprise application deployment. However to use the dmgr console, then compile all JSP files before packaging the application.

  1. Add the dependent JAR to the application server.

    1. Click Servers > Application servers > server1 > Java and Process Management > Process Definition > Application servers > Java Virtual Machine in the console navigation.
    2. Add fully qualified dependent JAR in class path field.

    3. Click OK.

    4. Restart application server.


JSPG0089E: Mismatch found between page directive encoding Shift_JIS and xml prolog encoding UTF-8

Symptom Problem Suggested solution

The following error appears:

JSP Processing Error 
HTTP Error Code: 500

Error Message: /test.jsp(2,1) 
 /test.jsp(2,1) JSPG0089E: 
 Mismatch found between page 
 directive encoding Shift_JIS 
 and xml prolog encoding UTF-8
The pageEncoding attribute in the jsp:directive.page element is not UTF-8. JSP must specify a prolog that matches the encoding specified in the page directive. For example,
<?xml version="1.0" encoding="Shift_JIS"?> <jsp:root xmlns:jsp="http://java.sun.com/
 JSP/Page" version="2.0"> <jsp:directive.page language="java" 
 contentType="text/html";
 charset=Shift_JIS pageEncoding=
  "Shift_JIS"/> <jsp:text>XXXXXjsp:text>XXXXX> </jsp:root>

For additional information, see section JSP.4.1, Page Character Encoding, in the JSP specification and section 4.3.3 and appendix F.1 of the Extensible Markup Language (XML) specification

If none of these steps solves the problem, check to see if the problem is identified and documented using the links in the topic, Diagnose and fix problems: Resources for learning. If we do not see a problem that resembles yours, or if the information provided does not solve your problem, contact IBM support for further assistance.

For current information available from IBM Support on known problems and their resolution, see the IBM Support page. The IBM Support page contains documents that can save you time gathering information needed to resolve this problem.


Related concepts:

Web applications
Troubleshooting help from IBM


Related


Troubleshoot applications with HPEL
View JVM logs


Reference:

Diagnose and fixing problems: Resources for learning


Related information:

IBM Support page


+

Search Tips   |   Advanced Search