-
1. Re: Is it possible to configure Wildfly/Undertow to exchange jsessionid as HTTP Header?
jaikiran pai Dec 23, 2014 12:22 AM (in response to Agustin Pazos)Just curious - why do you need it as a HTTP header?
-
2. Re: Is it possible to configure Wildfly/Undertow to exchange jsessionid as HTTP Header?
Tomaz Cerar Dec 23, 2014 5:56 AM (in response to Agustin Pazos)1 of 1 people found this helpfulOOTB this is not supported as it is not a common scenario to be using this.
As browsers wont sent this header by default unless you do some magic
what you can do is implement your version of SessionManager that would handle that.
To register it for your deployment, you will need to implement http://undertow.io/documentation/servlet/servlet-extensions.html
that will expose you options to register custom session manager.
-
3. Re: Is it possible to configure Wildfly/Undertow to exchange jsessionid as HTTP Header?
Agustin Pazos Dec 23, 2014 7:11 AM (in response to Tomaz Cerar)Tomaz Cerar thanks for the reply.
To clarify my initial request:
- The client is not a browser is a mobile app.
- The only reason why I need to pass the session as http header and not by other modes is that the client determine that mode to exchange session,
I will investigate the servlet-extensions.
Thanks,