I have a stateless Spring application, so I have no use for sessions. I would like to disable everything that has to do with sessions. I have a context.xml Tomcat config, where I have added this:
<Manager pathname="" />
Source^: http://tomcat.apache.org/tomcat-6.0-doc/config/manager.html
I have also added this to every http block in my spring security xml file:
create-session="stateless" disable-url-rewriting="true"
Even with these things done, if I manually delete my JSESSIONID cookie, any page I hit will add it again. How do I prevent this?