1 Reply Latest reply on Jul 24, 2009 5:25 PM by lstine

    share session between different application

    karboe

      Hi all,
      I'm new in seam framework. I has two web application, in the first application I try to create and save session like this following code: 
        ...
        ...
        @In@Out
        HttpServletRequest httpRequest; 
        ...
        ...
        httpRequest.setAttribute(userSession, my session val);


      when I call my session from the same application with this following code:
        ...
        ...httpRequest.getAttribute(userSession).toString();
        ...
      it's work properly. But when I call from other web application with the same browser(firefox) it's not work.


      Note: when I call session from the second web application, I has already call the first creator session application and still display.



      thx before.