facebook

JSP Debuging

  1. MyEclipse Archived
  2.  > 
  3. UML Development
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #232165 Reply

    guylimor
    Member

    Working with eclipse 3.1 and weblogic 7
    Just installed Myeclipse v4
    When trying to debug my JSP code it doesn’t stop on the breakpoints I put
    Can someone please advice?

    #232166 Reply

    Scott Anderson
    Participant

    The issue is likely that you haven’t configured your WEB-INF/weblogic.xml
    file to enable JSP debugging. You can do that by including a snippet like
    this:

    
    <!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>
    
    #232180 Reply

    guylimor
    Member

    Scott
    Thanks for your reply.
    I’ve added the lines into the weblogic.xml but it didn’t help.
    Any other suggestions ?

Viewing 3 posts - 1 through 3 (of 3 total)
Reply To: JSP Debuging

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