RE: Do imports inherit?

2011-09-11 Thread Caldarale, Charles R
From: Donald Jolley [mailto:jolleyt...@gmail.com] Subject: Do imports inherit? I was sort of thinking that if I imported those classes into a parent class that would be sufficient for all the children. Apparently it isn't. Your final conclusion is correct - it's not sufficient. This is

JSP Exception object arriving null at error handler

2011-09-11 Thread Nadav Katz
Hi, I seem to be having a problem with the exception object attribute arriving null at the error handeling jsp. Since I encountered this error in production, I recreated on a small project. This is the web.xml error page entry: error-page    

Re: JSP Exception object arriving null at error handler

2011-09-11 Thread Bob Hall
From: Nadav Katz nadav.k...@oracle.com To: Tomcat Users List users@tomcat.apache.org Sent: Sunday, September 11, 2011 2:11 AM Subject: JSP Exception object arriving null at error handler Hi, I seem to be having a problem with the exception object attribute

RE: JSP Exception object arriving null at error handler

2011-09-11 Thread Nadav Katz
Hi Bob, Thanks for the quick reply. Is there anywhere where I can find documentation for this? I'm asking because I came across this behavior by chance when I got a NullPointerException in logging code calling exception.getMessage(). Is it possible that I will come across this with other types

RE: JSP Exception object arriving null at error handler

2011-09-11 Thread Caldarale, Charles R
From: Nadav Katz [mailto:nadav.k...@oracle.com] Subject: RE: JSP Exception object arriving null at error handler Is there anywhere where I can find documentation for this? Read the servlet spec. I'm asking because I came across this behavior by chance when I got a NullPointerException in

Re: Apache+Tomcat+mod_jk

2011-09-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 tRm, On 9/9/2011 5:52 PM, trm asn wrote: I have one war eample.war which is also having a images folder ( /usr/local/tomcat/webapps/example/images). I will type http://192.168.65.100and it'll load the example apps. If you want

Re:I Did it

2011-09-11 Thread dfsdf fsdfsd
pmy friends always teased me about my spending habits I was about ready to throw in the towel I cant believe this actually worked!bra

Re: Do imports inherit?

2011-09-11 Thread Donald Jolley
Thanks for the clarification. Also note that it's generally frowned upon to import with wildcards; be specific with the classes you use. Your suggestion certainly seems reasonable to me. I do, however, note that the use of wildcards seems to be fairly prolific. In this particular case my use