WinXP SP1, Eclipse 3.1, MyEclipse 4.0, Weblogic 8.1, jdk1.4.2_05.
MyEclipse allows me to set breakpoints but does not appear to be stopping at the breakpoints I set.
I have researched on MyEclipse site and the net and found some references to the need of having a weblogic.xml in WEB-INF which contains the following content.
<!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>
To be pricise, the web project folder tree looks like the following:
mywebapp
source
JRE System Library Container
J2EE 1.4 Library Container
assemble
webApplication
META-INF
WEB-INF
lib
web.xml
myweb.jsp
I had to manually create weblogic.xml and had it placed under mywebapp\webApplication\Web-INF, and MyEclipse still would not stop at the breakpoints.
Help is greatly appreciated!
James