1 Reply Latest reply on Feb 18, 2015 9:05 AM by ctomc

    What is the equivalent for "emptySessionPath" in wildfly ?

    vikimohan

      Hi All ,

       

      Do we have an equivalent for "emptySessionPath=true" attribute for Wildfly 8.2.0 as in the server.xml in jboss 4.2.3?

       

      I could not find any links in the web or document pertaining to it

       

      Could someone please guide ?

       

      Thanks and Regards

      -

      Vignesh.M

        • 1. Re: What is the equivalent for "emptySessionPath" in wildfly ?
          ctomc

          two options:

           

          configure cookie-config in web.xml to use path "/" for session cookies.

          or you can configure single sign on

           

          <server name="default-server">

             <http-listener name="default" socket-binding="http" />

             <host name="default-host" alias="localhost">

             <location name="/" handler="welcome-content" />

             <filter-ref name="server-header"/>

             <filter-ref name="x-powered-by-header"/>

             <single-sign-on path="/" />

             </host>

          </server>