facebook

JSP debugging on WebLogic 8.1 won’t work [Closed]

  1. MyEclipse IDE
  2.  > 
  3. Java EE Development (EJB, JSP, Struts, XDoclet, etc.)
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #231369 Reply

    martind
    Member

    Hi,

    I am trying to debug JSPs running on WebLogic 8.1, but the debugger just doesn’t stop at the breakpoints. I have launched the server externally and connected to it via the ‘Run >Debug…’ option, as specified in the documentation. Debugging .java classes works fine – it just won’t stop in JSPs.

    Do you have any idea what could be the problem here?

    (I am using MyEclipse 3.8.4 on Eclipse 3.1.0).

    Thanks,

    Martin.

    #231375 Reply

    Scott Anderson
    Participant

    Martin,

    To be specific, do you mean *our* remote debugging documentation here: http://myeclipseide.com/enterpriseworkbench/help/index.jsp?topic=/com.genuitec.myeclipse.doc/html/quickstarts/remotedebugging/index.html

    Did you configure weblogic.xml (in your application’s WEB-INF directory) to enable JSP debugging like this:

    
    <!-- edited with XMLSPY v5 rel. 4 U (http://www.xmlspy.com) by Tony Louis (Oz Systems) -->
    <!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>
    
    #231381 Reply

    martind
    Member

    Scott – that was the bit I was missing. Works fine now.

    Thanks,

    Martin.

Viewing 3 posts - 1 through 3 (of 3 total)
Reply To: JSP debugging on WebLogic 8.1 won’t work [Closed]

You must be logged in to post in the forum log in