Problem in Running a servlet

2008-03-29 Thread Raghavan_sat
(Bootstrap.java:344) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:435) -- View this message in context: http://www.nabble.com/Problem-in-Running-a-servlet-tp16369994p16369994.html Sent from the Tomcat - User mailing list archive at Nabble.com

Re: Problem in Running a servlet

2008-03-29 Thread Mark Thomas
Raghavan_sat wrote: Hi, I have a servlet program that works fine under tomcat running in windows... But the same servlet program is not running under tomcat running in fedora... when i access this servlet tomcat just goes off.. in the sense i was even unable access the home page which i can

Re: Problem in Running a servlet

2008-03-29 Thread David Smith
The stack below tells me tomcat isn't running any longer after you try to run your servlet. In addition to what Mark suggested, your catalina.out file from the point your servlet was called onward would also be helpful. Also look for a core dump as there's a chance the JVM crashed -- that

RE: Problem in Running a servlet

2008-03-29 Thread Caldarale, Charles R
From: David Smith [mailto:[EMAIL PROTECTED] Subject: Re: Problem in Running a servlet Also look for a core dump as there's a chance the JVM crashed Also look for code in the servlet or classes it uses doing a System.exit() - a very obnoxious thing in a container environment. - Chuck