0 Replies Latest reply on Mar 9, 2006 7:38 AM by chaituu

    where do i set in configuration file in jboss (may be standa

    chaituu

      i set
      <container-pool-conf>
      300
      </container-pool-conf>



      in standardjboss.xml ;

      i am creating entity bean like this in session bean;

      ic = new InitialContext();
      home = (EmployeeEntityHome)ic.lookup("EmployeeEntityBean");
      remote = (EmployeeEntity)home.create(employeeMaster);


      when i run the application instead of reusing same bean it is creating entity bean for suceessive operations;if i run the operation 5 times 5 entitybeans are creating. why entity bean not reusing from bean pool?where do i set in configuration file in jboss (may be standardjboss.xml)for reusing same bean if do multiple time for the same operation.