503 « Tomcat « JSP-Servlet Q&A





1. Problem with Tomcat: 503 Service Temporarily Unavailable    stackoverflow.com

Sorry if repost I’m new to JSP. I’m following a tutorial from a book, but I’m facing a problem in one of the first steps of the example web app. ...

2. Handle error 503 in application web.xml?    stackoverflow.com

i tried to handle the error code 503 in my application web.xml as follows:

<error-page>
   <error-code>503</error-code>
   <location>/serviceNotAvailable</location>
   </error-page>
but it's not working i don't know why, please advise. i ...

3. Tomcat: error 503 servlet not avaiable    coderanch.com

hey, i'm developing servlets for a school project using tomcat 4.1.27, eclipse 2.1.1 on windows server 2003 i have the following strange thing: when i create a new project in eclipse and i compile it in the tomcat\webapps\projectname directory everything works fine i can use my servlet on http://localhost:8080/projectname/test.html but when i do some changes in the sourcecode in eclipse and ...