Re: best way to debug JSP's ???

2003-11-05 Thread Christopher Schultz
Jim, [what is the best way to debug JSP's ???] The very best thing to do with JSPs is never put any Java code into them. If you can avoid that, and always use taglibs or other JSP directives, etc. then you'll be much better off. (BTW, is there a way to get at the servlet that's generated by

RE: best way to debug JSP's ???

2003-11-05 Thread Shapira, Yoav
Hola, I hope this isn't terribly off topic, but I couldn't think of a better list... No, it's not off topic. Best way to debug JSPs? Hmm, how about not use any? Just kidding. (Partially). - Have plenty of logging statements in the JSP, outputting various variable values. (BTW, is there a

RE: best way to debug JSP's ???

2003-11-05 Thread Don Jones
, don jones -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Wed 11/5/2003 8:06 AM To: Tomcat Users List Cc: Subject: RE: best way to debug JSP's ??? Hola, I hope this isn't

RE: best way to debug JSP's ???

2003-11-05 Thread Anderson, James H [IT]
Thanks for all the responses! jim - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: best way to debug JSP's ???

2003-11-05 Thread Anderson, James H [IT]
Don, Could you send a copy of your JSP debugging page? Thanks, jim -Original Message- From: Don Jones [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 05, 2003 9:18 AM To: Tomcat Users List Subject: RE: best way to debug JSP's ??? One of the techniques I use alot is to include

Re: best way to debug JSP's ???

2003-11-05 Thread Harry Mantheakis
The very best thing to do with JSPs is never put any Java code into them. If you can avoid that, and always use taglibs or other JSP directives, etc. then you'll be much better off. I second the use of tag libraries. Also, with a decent IDE (such as Eclipse) you can refactor the code in your