pool « Session « Java Enterprise Q&A





1. Why pool Stateless session beans?    stackoverflow.com

Stateless beans in Java do not keep their state between two calls from the client. So in a nutshell we might consider them as objects with business methods. Each method takes ...

2. Relation between Oracle session and connection pool    stackoverflow.com

Let me explain the set up first. We have an oracle server running on a 2GB RAM machine. The Db instance has the init parameter "sessions" set to 160. We have the application ...

3. Weblogic 10.3.0 : Losing a stateless session bean in the bean pool    stackoverflow.com

We have a strange situation where we lose a Stateless SessionBean in a Bean Pool in Weblogic 10.3.0. Since we only have one bean in the pool, this effectively hangs all ...

4. JMS Session pooling for large numbers of Topic subscribers    stackoverflow.com

I'm writing an app that will create lots of JMS topic subscribers. What is best practise regarding reusing sessions? A session per subscriber? A pool of sessions? With a session per ...

5. Pooling of Stateful Session Beans    stackoverflow.com

Is it possible to do instance pooling of stateful session beans.. like if a stateful bean instance is being passivated, during the execution of prepassivate() remove all the state information associated ...

6. WebLogic Server Version: 10.3.3.0 not returning Stateless Sessions Beans back to EJB Pool    stackoverflow.com

Thank you in advance for spending time on my query. Problem : WebLogic Server Version: 10.3.3.0 is not returning EJBs back to the pool after being invoked (in production prototype environment). OS ...

7. Expired sessions in GenericObjectPool    stackoverflow.com

I am using child object of org.apache.commons.pool.impl.GenericObjectPool for providing connections to web services (child of org.apache.axis2.client.Stub). How to setup the pool, so connections that have expired sessions will be automatically removed form ...