Skip to content
Snippets Groups Projects
Commit 762c21e3 authored by felmer's avatar felmer
Browse files

SSDM-6285: do not set secure flag for cookies (wouldn't work for http)

parent 29437a25
No related branches found
No related tags found
No related merge requests found
...@@ -249,10 +249,9 @@ public class DataStoreServer ...@@ -249,10 +249,9 @@ public class DataStoreServer
servletContextHandler.setAttribute( servletContextHandler.setAttribute(
WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE,
ServiceProvider.getApplicationContext()); ServiceProvider.getApplicationContext());
servletContextHandler.getSessionHandler().getSessionCookieConfig().setHttpOnly(true);
// Disable URL rewriting (forces container to stop appending ";jsessionid=xxx" to urls) // Disable URL rewriting (forces container to stop appending ";jsessionid=xxx" to urls)
// to avoid mistakes in URL parsing by download servlets // to avoid mistakes in URL parsing by download servlets
servletContextHandler.getSessionHandler().getSessionCookieConfig().setHttpOnly(true);
servletContextHandler.getSessionHandler().getSessionCookieConfig().setSecure(true);
servletContextHandler.getSessionHandler() servletContextHandler.getSessionHandler()
.setSessionIdPathParameterName(null); .setSessionIdPathParameterName(null);
String applicationName = "/" + DATA_STORE_SERVER_WEB_APPLICATION_NAME; String applicationName = "/" + DATA_STORE_SERVER_WEB_APPLICATION_NAME;
......
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
</Call> </Call>
<Get name="sessionHandler"> <Get name="sessionHandler">
<Get name="sessionCookieConfig"> <Get name="sessionCookieConfig">
<Set name="secure" type="boolean">true</Set>
<Set name="httpOnly" type="boolean">true</Set> <Set name="httpOnly" type="boolean">true</Set>
</Get> </Get>
</Get> </Get>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment