Disable jsessionid via http header (cookie) in Tomcat 7?

The web. Xml setting works for me with Tomcat 7.0.20.

The web. Xml setting works for me with Tomcat 7.0.20. Log and check the effective (and maybe the default) session tracking modes: logger.Info("default STM: {}" , servletContext.

GetDefaultSessionTrackingModes()); logger. Info("effective STM: {}" , servletContext. GetEffectiveSessionTrackingModes()); Maybe your app override somewhere in the code the session tracking modes.

An example: final Set trackingModes = Collections. Singleton(SessionTrackingMode. COOKIE); servletContext.

SetSessionTrackingModes(trackingModes); Check ServletContext. SetSessionTrackingModes() calls in your code.It's also possible to set default session tracking modes in the Tomcat's context settings but I found that web. Xml settings override them.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions