MyEclipse Forums
Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Author Message
support-rkalla
Post subject: [Oracle AS] How to debug Classes or JSPs?  PostPosted: Feb 27, 2006 - 12:59 PM
Registered Member
Registered Member


Joined: Jan 06, 2004
Posts: 23824

When using OC4J you must be using atleast version 10.1.3 which added support for JSR-45. After getting OC4J installed, go into the <OC4J Home>/j2ee/home/config/ directory and open the global-web-application.xml file, navigate down to the jsp servlet defined starting with:
Code:

<servlet-name>jsp</servlet-name>
<servlet-class>oracle.jsp.runtimev2.JspServlet</servlet-class>


and add a new init-param to it, like so:

Code:

<servlet-name>jsp</servlet-name>
<servlet-class>oracle.jsp.runtimev2.JspServlet</servlet-class>
<init-param>
  <param-name>debug</param-name>
  <param-value>true</param-value>
</init-param>


now save the file and either restart the app server, or start it up. Debugging should be working now. Some people have reported problems with "Source not found" in MyEclipse when debugging JSP pages, we are currently looking into this issue.

More details are available in this thread as well as this one.
 
 View user's profile Send private message Visit poster's website  
Reply with quote Back to top
Display posts from previous:     
Jump to:  
All times are GMT - 6 Hours
Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Powered by PNphpBB2 © 2003-2004 The PNphpBB Group
Credits