I need to disable PUT, DELETE & TRACE HTTP requests on my Application Server, Apache Tomcat 6.0.
All other sources, i have searched till now, have directed me towards the limit parameter in httpd.conf, Hence I’d put it before-hand that I am not using Apache Web Server, and requests are directly being handled by Tomcat, and so there is no httpd.conf in picture.
Please suggest how should I do it on Tomcat?
Inside your WEBINF, add you can add a security constraint:
Alternatively, you can do these two things:
In server.xml, edit the
<connector>element, add an attribute:allowTrace='false'. Then edit the DefaultServlet: $CATALINA_HOME/conf/web.xml