Java servlet 404 error tomcat 8 but not tomcat 6

I have a server which I flip back and forth between tomcat 6 and tomcat 8. When I do an HTTP post using the command curl -v -X POST -d @webOpenCnsRealCheatsheet.xml -H Referrer:mobileWMS,LLC -H Content-Type:text/xml http://localhost:8080/fortive2/tsmService I get different results between the different versions of tomcat. First of all, for tomcat 8, I get: * … Read more

Teamcity – package javax.servlet does not exist

How do I import javax.servlet in Teamcity? I have the below error message when I try to build the java project through teamcity IntelliJ IDEA runner. This is my first time with teamcity and I’m using this https://github.com/marekbruchaty/SimpleJavaWebApp project. I have a CentOS server which has teamcity and gitlab. From my desktop, using IntelliJ IDEA … Read more

Apache Tomcat Servlet 404 Troubleshooting

I maintain a GWT web application that uses 3 java servlets for file download/upload and data transfer. I had my servlet mapping sin place and have not touched them in months, just a few days ago I started receiving 404 errors when trying to access my servlets. I can’t even seem to access the servlets … Read more

Where should I put tomcat external libraries?

I’m trying to run scala applications under tomcat, and whenever I use standard java stuff, I seem okay. However, when I do things like string concatenation or sequence generation, I get weird errors for NoClassDefFound… My first thoughts are that I’m not putting the required scala-library jar in the correct directories, or I need to … Read more

ColdFusion 10 Servlet Issues

I’m currently experiencing problems with ColdFusion finding my servlet. In ColdFusion 9, I would simply put it under the wwwroot/WEB-INF/classes/ directory and ColdFusion would serve when requested. In ColdFusion 10 I’ve added the same Servlet in the cfusion/wwwroot/WEB-INF/classes directory (restarting afterwards) and it was not found when explicitly called. I added the descriptor for it … Read more