| Quote: |
|
Am I asking for something that is genuinely impossible? Oracle Application Server 10g has been around for years - is there still no way to debug it? How can anyone be expected to properly develop for a platform that has no support for debugging? Especially an Enterprise level platform!? :? |
| support-scott wrote: |
| Java JSP debugging won't work with OC4J / Orion because they don't support JSR-045 which is the source level debugging JSR. Source level JSP debugging is available on Tomcat 5, as well as any server that uses Jasper 2 for JSP compilation such as JBoss 3.2.4/Tomcat5 bundle, and some versions of Jetty and JRun I believe. |
| Quote: |
|
Unfortunately, I am using OC4J and as you stated it does not support the JSR-045 standard. In addition, using an alternative J2EE server (such as Tomcat, JBoss, etc...) is not an option for me, and is only avoiding the problem rather than solving it. |
| Quote: |
|
So, just to clarify, debugging OC4J JSP applications IS impossible using MyEclipse? |
| Quote: |
|
I'm currently using JDeveloper to debug JSP's, but the user interface is ghastly so I'd much rather use MyEclipse. But if I really can't debug JSP's on OC4J through MyEclipse then I have to stick with JDeveloper. |
| support-rkalla wrote: |
|
We are sorry for this limitation causing you trouble during work. If your company decides to upgrade to version 10, AFAIKT from Oracle's site, 10g does infact support JSR-45 in that version. You might try downloading a trial version and testing it? |
| support-rkalla wrote: |
| Yes according to this page, it does:
http://www.oracle.com/technology/products/jdev/101/collateral/101/1013eanewfeatures.html "JSP debugging (JSR-45): The JSP debugging offered by JDeveloper and OC4J has been updated to comply with the new JSR-45 specification for multiple language debugging." |
| Quote: |
|
1. Myeclpse deployed the ear file to "j2ee\home\application-autodeploy", the location can NOT be modified for some reason. |
| Quote: |
|
2. Did the manual deployment (admin.jar) make the JSP page un-debuggable? |
| Quote: |
|
If you just want to generated the smap file, you can set the JspServlet init-param debug to file. If you want the smap embedded in the generated class file set debug to true. I've not tried it but these parameters are usually set in the j2ee/home/config/global-web-application.xml file as follows: <servlet> <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> </servlet> |
| support-rkalla wrote: |
| phatty,
What kind of issue? What kind of file are you trying to debug? (class or JSP)? |