• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How To disable PUT,DELETE Http Methods on Tomcat 6 Webserver

 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello All,
Can you Please Provide how to disable Http Methods Delete,Put on Tomcat 6 Webserver and also how to test PUT,DELETE Http Methods Has Been Blocked by The Tonmcat 6 Webserver can anyone help me on this Please.
Regards,
Veerendranag
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Why do you want to do this? If you don't want those methods to be used (which aren't used by standard servlets anyway), you can protect them with servlet security in web.xml, or simply not put any code in place that responds to them.
reply
    Bookmark Topic Watch Topic
  • New Topic