3 Replies Latest reply on Oct 18, 2002 12:00 PM by adrian.brock

    Jboss hangs when setting a session attribute

    pvamstel

      String currentLogin = (String)session.getAttribute(WebKeys.CURRENT_LOGIN);
      String currentSite = (String)session.getAttribute(WebKeys.CURRENT_SITE);
      UserFacade facade = getUserFacade(session);
      user = facade.getUser(currentLogin, currentSite);
      // This line hangs
      session.setAttribute(WebKeys.CURRENT_USER, user);

      I've checked everything on null values and they are not null. But when the servlet tries to store this object in the session it hangs. No exception or any other handy thing. It just hangs. Does someone have an idea

      grt Patrick