I figured it out
it is to do with JSP 2.0 spec
if you put
suppressSmap - false in web.xml
like so...
it works
<servlet>
<servlet-name>jsp</servlet-name>
<servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
<init-param>
<param-name>suppressSmap</param-name>
<param-value>true</param-value>
</init-param>
</servlet>
I will do a how-to web page in the next couple of days
--- Mark Palmer <[EMAIL PROTECTED]> wrote:
> I have been using eclipse 3.0R? for quite some time.
> And have been able to debug jsp's in tomcat 4 by
> simplying
> copying the *.java files created by tomcat's jasper
> compiler, into my eclipse workspace, into a
> directory
> called org/apache/jsp and attaching a remot e
> debugger.
>
> That way I can see the raw jsp files as a java
> source
> file
> and debug it.
>
> However with tomcat 5 this no longer works
> correctly.
>
> The remote debugger still stop on breakpoints that i
> have set, but it is unable to correctly associate
> the
> *.java file with line number it is on and
> consequently
> it does not step through the code on the screen.
>
> It has however still in debug mode because I can set
> addition breakpoint in a file and it will stop when
> it
> get there, and I can examine all the varialbles.
>
> Any ideas on what is different with tomcat5 and
> jasper2 that might be causing this?
>
>
>
> __________________________________
> Do you Yahoo!?
> New and Improved Yahoo! Mail - Send 10MB messages!
> http://promotions.yahoo.com/new_mail
>
__________________________________
Do you Yahoo!?
Yahoo! Mail - Helps protect you from nasty viruses.
http://promotions.yahoo.com/new_mail
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]