Re: tomcat exception handling

2005-09-26 Thread James Cowan
thanks. that is what I am looking for. James - Original Message - From: Alon Belman [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org; James Cowan [EMAIL PROTECTED] Sent: Friday, September 23, 2005 10:41 PM Subject: Re: tomcat exception handling you want

Re: tomcat exception handling

2005-09-23 Thread James Cowan
Subject: Re: tomcat exception handling swallowoutput=true in your context should help Jilles James Cowan wrote: Hi How do I suppress the stack trace from exception handling globally (i.e. not using an errorPage directive)? I have tried setting the Verbosity of the Logger elements

Re: tomcat exception handling

2005-09-23 Thread Alon Belman
any difference. what version of tomcat are you using? James - Original Message - From: Jilles van Gurp [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Thursday, September 22, 2005 5:33 PM Subject: Re: tomcat exception handling swallowoutput=true

Re: tomcat exception handling

2005-09-22 Thread Jilles van Gurp
swallowoutput=true in your context should help Jilles James Cowan wrote: Hi How do I suppress the stack trace from exception handling globally (i.e. not using an errorPage directive)? I have tried setting the Verbosity of the Logger elements in the server.xml (for Tomcat 5.0.28) to 0 but

Re: tomcat exception of broken pipes

2005-08-10 Thread Christoph Kutzinski
AFAIK these exceptions occur if someone requests a resource (HTML-Page, image, ...) and then closes the connection before all data was sent. I.e. click the stop-button or click on a different Hyperlink. AFAIK one can do nothing to prevent these Exceptions in the log. [EMAIL PROTECTED] wrote:

RE: Tomcat exception - Please help

2004-02-27 Thread Shapira, Yoav
Howdy, It's probably due to a problem with your IDEs JSP classpath. I'm not very familiar with NetBeans, so I can't help much there, except the obvious question: what happens when you run the code outside an IDE? Yoav Shapira Millennium ChemInformatics -Original Message- From: Rudi

RE: Tomcat Exception Handling =?= Web Tier Exception Handling

2003-12-15 Thread Shapira, Yoav
Howdy, But I read somewhere that one should always distance himself from system- level exception handling when it comes to web applications. Please save yourself time by ignoring references that say one should always... or one should never... -- there are real-world exceptions to nearly every

Re: Tomcat Exception Handling =?= Web Tier Exception Handling

2003-12-12 Thread QM
: My question is, should I use tomcat exception handling mechanism, or should I : come up with my own exception handling framework? A lot of this depends on your app's setup and how thorough/robust you expect your handling to be as it grows. 1/ Quick-And-Dirty: map a something went wrong page to

RE: Tomcat exception report I don't understand

2003-09-09 Thread Shapira, Yoav
Howdy, and Tomcat 4, version 1.1 (the same as what's on the server). I took No such version exists of tomcat. Check the string at the beginning of $CATALINA_HOME/logs/catalina.out and tell us what version of tomcat you're using ;) I did find one notable difference between the Tomcat

RE: Tomcat exception report I don't understand

2003-09-09 Thread Stephen Charles Huey
2003 08:56:26 -0400 Subject: RE: Tomcat exception report I don't understand Howdy, and Tomcat 4, version 1.1 (the same as what's on the server). I took No such version exists of tomcat. Check the string at the beginning of $CATALINA_HOME/logs/catalina.out and tell us what version of tomcat

RE: Tomcat exception report I don't understand

2003-09-09 Thread Shapira, Yoav
: Tuesday, September 09, 2003 10:16 AM To: Tomcat User; Tomcat User Subject: RE: Tomcat exception report I don't understand I'm not entirely sure my JDK is the exact same, so I guess that could be the problem. Anyway, those two extra JAR files in my Tomcat common lib have been copied

Re: tomcat exception

2001-07-06 Thread Jim Cheesman
At 11:17 AM 06/07/01, you wrote: Hi When given a jsp request, tomcat throws an exception saying... What could be the probable reasons?(FYI.class files placed in webpps/root/WEB-INF/classes folder) Pls. Help.. From the stack trace the NullPointerException is being thrown in the

RE: tomcat exception

2001-07-06 Thread albert
hi, I try to help, may be this can solve your problem 1) Delete all the *.java file inside the jar file 2) put the class in \webapps\ROOT\WEB-INF\lib 3) check your classpath setting, it must be point to your jar file, (e.g : \webapps\ROOT\WEB-INF\lib\myjar.jar) [albertoscarina]