0 Replies Latest reply on Jun 30, 2008 9:20 AM by sherkan777

    How to create Bean from another bean?

    sherkan777

      Hi,
      I have authentication class (like in example), and from inside this class I want to create SFSB whitch maganes page after successful login.


      My injection looks like:


      @In(scope=ScopeType.SESSION, value="userTech", required=false)
      @Out(scope=ScopeType.SESSION, value="userTech", required=false)
      protected Technology userTech;



      So far this looks goo, but my entityManager doesn't seems to work corectly inside this bean.
      when I execute method and do merge like:


      em.find(...);
      and after that
      em.merge(obj);


      there is no change in db and no errors.


      My question is, how to create fully functional SFSB from inside another bean.


      btw. previous bean constructor looks like



      public Technology(EntityManager em) {
          this.em = em;
      }