I have a Tomcat 6 server and I want just about everything to be behind SSL however I want one servlet to be accessible through non-ssl. Is it possible to configure Tomcat this way? It is currently set up to forward all requests to the secure port.
Share
One way to achieve this is by editing the web.xml for your web app.
I assume you’ll already have the web app set up for forcing all requests to https with
<transport-guarantee> CONFIDENTIALlike belowNow add another block below this for the servlet you wish to bypass https for.
This URL openforall.jsp alone will now be accessible via http.
Note: This URL will also still be available on https if someone accesses it that way.