Sun Java System Web Server 6.1 SP12 Programmer's Guide to Web Applications

Chapter 7 Debugging Web Applications

This chapter provides guidelines for debugging web applications in Sun Java System Web Server.

This includes the following sections:

In order to debug applications, you need to edit the server.xml file as described in this chapter. For more general information about this file, see the Sun Java System Web Server 6.1 SP12 Administrator’s Configuration File Reference.

Enabling Debugging

When you enable debugging, you need to enable both local and remote debugging.

You can enable debugging in one of these ways, as described in the following sections:

Sun Java System Application Server debugging is based on the JPDA (Java™ Platform Debugger Architecture software). For more information, see JPDA Options

Using the Administration Interface

ProcedureTo enable debugging

  1. Access the Server Manager and click the Java tab.

  2. Click JVM General.

  3. Specify the Java home in the Java Home field.

    The Java home is the path to the directory where the JDK is installed.

  4. To enable debugging, select On from the Debug Enabled drop-down list

  5. Specify debug options in the Debug Options field.

    For more information about debug options, see JPDA Options

  6. Click OK.

Editing the server.xml File

To enable debugging, set the following attributes of the JAVA element in the server.xml file:

For details about the server.xml file, see the Sun Java System Web Server 6.1 SP12 Administrator’s Configuration File Reference.

JPDA Options

The default JPDA options are as follows:

-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n

If you substitute suspend=y, the JVM starts in suspended mode and stays suspended until a debugger attaches to it. This is helpful if you want to start debugging as soon as the JVM starts.

To specify the port to use when attaching the JVM to a debugger, specify address=port_number.

You can include additional options. A list of JPDA debugging options is available here:

http://java.sun.com/products/jpda/doc/conninv.html#Invocation

Using Sun Java Studio for Debugging

You can use Sun™ Java System Studio 5 technology for "remote debugging", in order to manually attach the IDE to a remote Web Server started in debug mode.

ProcedureTo manually attach the IDE to a remote Web Server

  1. Using the Sun Java System Web Server Administration interface, restart the server instance in debug mode (Server Manager > JVM General > Debug Enabled).

  2. Note the JPDA port number.

  3. Start the IDE.

  4. Choose Debug > Start.

  5. Select the dt_socket method, and then enter the remote machine name and the JPDA port number.

  6. At that moment, any breakpoint created in the IDE on servlet source code of a deployed application will be active.

    For more information about the Sun Java Studio 8 plugin for Sun Java System Web Server, and about using Sun Java Studio, see Using Sun Java Studio.

Debugging JSPs

When you use Sun Java Studio to debug JSPs, you can set breakpoints in either the JSP code or the generated servlet code, and you can switch between them and see the same breakpoints in both.

To set up debugging in Sun Java Studio, see the previous section.

Generating a Stack Trace for Debugging

You can generate a Java stack trace for debugging as described here:

If the -Xrs flag is set (for reduced signal usage) in the server.xml file (under <JVMOPTIONS>), comment it out before generating the stack trace. If the -Xrs flag is used, the server may simply dump core and restart when you send the signal to generate the trace.

The stack trace goes to the system log file or to stderr based on the LOG attributes in server.xml.

For more information about the server.xml file, see the Sun Java System Web Server 6.1 SP12 Administrator’s Configuration File Reference.

Logging

You can use the Sun Java System Web Server's log files to help debug your applications. For general information about logging, see the Sun Java System Web Server 6.1 SP12 Administrator’s Guide. For information about configuring logging in the server.xml file, see the Sun Java System Web Server 6.1 SP12 Administrator’s Configuration File Reference.

You can change logging settings in one of these ways:

Using the Administration Interface

ProcedureTo change logging settings

  1. Access the Server Manager and click the Logs tab.

  2. Set log preferences as desired.

  3. Apply your changes.

Editing the server.xml File

To change logging settings, set the attributes of the LOG element in the server.xml file. For details about server.xml file, see the Sun Java System Web Server 6.1 SP12 Administrator’s Configuration File Reference.

Profiling

You can use a profile to perform remote profiling on the Sun Java System Web Server to discover bottlenecks in server-side performance. This section describes how to configure these profilers for use with Sun Java System Web Server:

The HPROF Profiler

HPROF is a simple profiler agent shipped with the Java™ 2 SDK. It is a dynamically linked library that interacts with the JVMPI (Java™ Virtual Machine Profiler Interface) and writes out profiling information either to a file or to a socket in ASCII or binary format. This information can be further processed by a profiler front-end tool such as HAT.

HPROF can present CPU usage, heap allocation statistics, and monitor contention profiles. In addition, it can also report complete heap dumps and states of all of the monitors and threads in the Java virtual machine. For more details on the HPROF profiler, see the JDK documentation at:

http://java.sun.com/j2se/1.4.2/docs/guide/jvmpi/jvmpi.html

Once HPROF is installed using the following instructions, its libraries are loaded into the server process.

ProcedureTo use HPROF profiling on UNIX

  1. Configure Sun Java System Web Server in one of these ways:

    • Go to the server instance page in the Administration interface, select the Java tab, click the JVM Profiler link, and edit the following fields before clicking OK:

      • Profiler: Enable

        • Classpath: (leave blank)

        • Native Lib Path: (leave blank)

        • JVM Option: For each of these options, type the option in the JVM Option field, select Add, then check its box in the JVM Options list:

          -Xrunhprof:file=log.txt,options

        Edit the server.xml file:


               <!-- hprof options -->
               <PROFILER name="hprof" enabled="true">
                   <JVMOPTIONS>
                   -Xrunhprof:file=log.txt,options
                    </JVMOPTIONS>
               </PROFILER>

      Note –

      Do not use the -Xrs flag.


      Here is an example of options that you can use:

      -Xrunhprof:file=log.txt,thread=y,depth=3

      The file option is important because it determines where the stack dump is written in step 6.

      The syntax of HPROF options is as follows:


      -Xrunhprof[:help]|[:option=value,option2=value2, ...]

      Using help lists options that can be passed to HPROF. The output is as follows:

      Hprof usage: -Xrunhprof[:help]|[:<option>=<value>, ...]
      Option Name and Value Description Default
      --------------------- ----------- -------
      heap=dump|sites|all heap profiling all
      cpu=samples|old CPU usage off
      format=a|b ascii or binary output a
      file=<file> write data to file java.hprof
      (.txt for ascii)
      net=<host>:<port> send data over a socket write to file
      depth=<size> stack trace depth 4
      cutoff=<value> output cutoff point 0.0001
      lineno=y|n line number in traces? y
      thread=y|n thread in traces? n
      doe=y|n dump on exit? y
  2. You must also change a line in the Sun Java System Web Server start script. The start script file is instance_dir/start. Change the following line:

    PRODUCT_BIN=webservd-wdog

    to this:

    PRODUCT_BIN=webservd

  3. Start the server by running the start script. Since the server runs in the foreground (the change in step 2), the command prompt returns only after the server is stopped.

  4. In another window or terminal, find the process ID of the server process.

    % ps -ef | grep webservd

    This command lists two webservd processes. Look at the PPID (parent process ID) column and identify which of the two processes is the parent process and which is the child process. Note the PID (process ID) of the child process ID.

  5. Send a SIGQUIT signal (signal 3) to the child process:

    % kill -QUIT child_PID

  6. To stop the Web Server, run the stop script from another window.

    % ./stop

    This writes an HPROF stack dump to the file you specified using the file HPROF option in step 1. For general information about using a stack dump, see Generating a Stack Trace for Debugging

  7. To return your Web Server to its original configuration, undo the changes in steps 1 and 2.

The Optimizeit Profiler

Information about Optimizeit™ is available at:

http://www.borland.com/us/products/optimizeit/index.html

Once Optimizeit is installed using the following instructions, its libraries are loaded into the server process.

To enable remote profiling with Optimizeit, do one of the following: