0 Replies Latest reply on Oct 9, 2005 8:01 AM by jbosschecker

    EJB 3.0 and HttpSession is not working locally!

    jbosschecker

      Hi!

      I'm working with JBoss (4.0.3) and EJB 3.0.

      I have developed a petsore web application, with ejb 3.0 and jsp.
      I have some entities and session beans (one stateful for a cart and theothers are stateless), one servlet and and 5 jsp pages.

      Every JSP page calls the controller servlet which holds the ejbs and puts them into session or request scopes and then calls the jsp pages to show the objects. I guess it is called "facede" pattern o.s.l.t.!

      I'm working with two computers, which are connected, one is a pc and the other is a notebook.

      JBoss is installed on the pc an I invoke the application on my notebook.

      If I invoke the app remotely like described above (with this call:
      http://192.168.2.2:8080/petshop)

      everything is working fine, but if I try to work on the pc, where jboss is installed, and the app is deployed (with his call:

      http://localhost:8080/petshop
      OR
      http://127.0.0.1:8080/petshop)

      the httpSession is getting generated again and again; everytime when the controller Servlet is invoked!

      Can someone tell me - please - what I'm doing wrong?

      Why dose it work remotely, but not locally?