Working 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: 117
But 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