facebook

JSP Debugging with Weblogic 8.1 [Closed]

  1. MyEclipse IDE
  2.  > 
  3. General Development
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #204257 Reply

    dunks80
    Member

    Can someone explain to me what I have to do to get JSP debugging working in MyEclipse 2.1.1 RC2 with Weblogic 8.1 SP2? I set my break point in a scriplet within my JSP but the breakpoint never catches. I’m definitely running the server in debug mode because I can set working breakpoints within my java classes just not in my JSPs. Do I have to have certain settings in my weblogic.xml file such as a particular “workingDir” for my compiled JSPs? I’ve tried it running the server using both jdk142_02 and jdk141_05

    #204258

    Scott Anderson
    Participant

    You probably haven’t configured Weblogic to compile your JSP’s in debug mode. You can do this in the weblogic.xml file 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>
    
    
    #204283

    dunks80
    Member

    That did it! Thanks for the help!

    #205596

    sri_bitla
    Member

    Hello dunks80,

    Can you tell me how did you integrate MyEclipse with Weblogic?

    I am trying to integrate WSAD5.1 with Weblogic7.0 server. I have installed Deployment Toolkit for Websphere Studio, Weblogic Edition.
    But when I try to start the weblogic server from WSAD it says source for one of my java files not found. And after some time I get “Can not connect to Weblogic server. Do you want to wait another 30 seconds?”.

    Where am I going wrong?

    Thanks,
    Srinivas.

Viewing 4 posts - 1 through 4 (of 4 total)
Reply To: JSP Debugging with Weblogic 8.1 [Closed]

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