Status « Tomcat « JSP-Servlet Q&A





1. Tomcat5 "Null component" and "HTTP Status 404 - Servlet jsp is not available"    stackoverflow.com

I need to move my application from tomcat6 to tomcat5. The application is deployed, but I can't access it with web browser. And now step by step: 1) Folders "work/Catalina/localhost/", "conf/Catalina/localhost/" and "webapps/" ...

2. how to solve error http status 404 in servlet jsp    stackoverflow.com

Respected Sir/Mam, I am trying to run some basic servlet and jsp program with Tomcat. but it gives some error. I am using Tomcat 6.0.29 and jdk 1.6.0_21. I have done everthing properly. But when ...

3. How to set HTTP status code in JSP error handlers    stackoverflow.com

I have a JSP page (in Tomcat) which uses JSP Tags to retrieve some data. But these JSP Tags can throw exceptions (For example when parameter values are invalid). Now I ...

4. HTTP Status 404 - /examples/servlet/addrec    stackoverflow.com

I am using Tomcat because I have a project in Java and I am having some problems with servlets. I installed tomcat and everything is ok. Then put all the files in the ...

5. Jsp Project not running    stackoverflow.com

I have created a web project which includes .jsp and Java beans pages. When I run this project with eclipse, using tomcat it works perfectly fine, I deployed the project ...

6. Eclipse, tomcat, 404 error    stackoverflow.com

I am learning servlets and follow this tutorial (I follow step by step but I named the project "SampleServlet" instead of "de.vogella.wtp.filecounter"). When I start the server (step 5.4) ...

7. handle error when change domain name    stackoverflow.com

I want to handle 404 error when change the domain name, here's the domain name http://localhost:8080/OnlineQuerySystemNew/ when I change any letter 404 error occurs even I make custom error page in ...

8. eclipse ee servlet tomcat doPost http405    stackoverflow.com

I'm trying to go a post from HTML to Java Servlet using eclipse ee and tomcat starting the server through eclipse. But I am getting: HTTP Status 405 - HTTP method POST is ...

9. Servlet 3.0 - Global Tomcat 7 Error Page    stackoverflow.com

The servlet 3.0 specification states that a global error message can be listed in the web.xml to encompass all server errors. Example:

<error-page>
    <location>/error.jsp</location>
</error-page>
Old Method:
<error-page>
    <error-code>401</error-code>
  ...