- This topic has 3 replies, 2 voices, and was last updated 19 years, 4 months ago by
Chuck Minarik.
-
AuthorPosts
-
Chuck MinarikMemberWorking with MyEclipse 4.0.1 and WebLogic Server 8.1. I created a WebLogic.xml copied from a 2003 post:
<!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 7.0//EN" "http://www.bea.com/servers/wls810/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>
I successfully added a breakpoint to the main JSP, and when I run the app, I see the following in the Debug window:
Thread [ExecuteThread: ’13’ for queue: ‘weblogic.kernel.Default’] (Suspended (breakpoint at line 117 in jsp_servlet.__resultframe))
jsp_servlet.__resultframe._jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) line: 117But I get the following message in a window called _jspService:
Source not found for __resultframe._jspService(HttpServletRequest, HttpServletResponse) line: 117
What does this mean and what am I supposed to do?
TIA
Scott AndersonParticipantThat looks alot like what happens when weblogic.xml (note the case is all lower) is not being picked up. Where in your web project did you place it?
A rundown of a prior discussion that might prove useful is here: http://www.myeclipseide.com/PNphpBB2+file-viewtopic-t-10501-highlight-weblogic+xml.html
Chuck MinarikMemberAfter following some of the guidelines in the thread you pointed me to, I finally got debug working and stepping through the JSPs.
However, I keep getting the following error in ServletRequestImpl.class:
Source not found
The jar file weblogic.jar has no source attachment.
You can attach the source by clicking Attach Source below:What does this mean?
TIA
Chuck MinarikMemberThrough trial and error, I found out that using “Step Over” instead of “Step Into” allows me to bypass Eclipse trying to debug system functions.
Thanks.
-
AuthorPosts