I am trying to debug a web app consisting of JSP’s running on a Weblogic 8.1 server. When I set breakpoints in the JSP, the debugger doesn’t recognize them (no check mark). I have modified the weblogic.xml file in the WEB-INF directory of my application to compile in debug, but this doesn’t seem to make a difference. Here’s what the weblogic.xml file looks like:
<!DOCTYPE weblogic-web-app PUBLIC "-//BEA
Systems, Inc.//DTD Web Application 7.0//EN"
"http://www.bea.com/servers/wls700/dtd/weblogic700-web-jar.dtd">
<weblogic-web-app>
<description>WebLogic Descriptor</description>
<jsp-descriptor>
<jsp-param>
<param-name>debug</param-name>
<param-value>true</param-value>
</jsp-param>
</jsp-descriptor>
</weblogic-web-app>
And here’s my web.xml file in the same directory.
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
</web-app>
Is this correct? Is there something else that needs to be modified? Am I modifying the right file?
Thanks,
Rich