2 Replies Latest reply on Feb 17, 2016 12:19 AM by vvn07

    Issue with session sharing on Wildfly 8.2.1.final

    vvn07

      Hi,
      I just migrated from Jboss eap to Wildfly and I am facing some issues with session sharing. Previously in my web.xml I added the below configuration

       

      <session-config>

            <cookie-config>

              <path>/</path>

            </cookie-config>

          </session-config>

       

      And both the application was generating the same session id. But now the problem is application 1 will write session as for example "123" in the path "/", and if i open application 2 it will override the session as say "456", now if i refresh the app 1 it will again override the session and the process keeps on repeating. How can i successfully share session on wildfly ?