0 Replies Latest reply on May 30, 2005 10:31 AM by smeier

    Stateful Session Bean timeout after 80 seconds

      Hi all,

      I'm experiencing a problem on my stateful session beans in jboss 3.2.7. The session beans seem to time out after 80 seconds (I'm getting an "Object not found"). It did not configure this in any special way and it did not happen with 3.2.1. I'm using the Standard Stateful SessionBean container configuration with cache-policy settings as follows:

      <container-cache-conf>
       <cache-policy>org.jboss.ejb.plugins.LRUStatefulContextCachePolicy</cache-policy>
       <cache-policy-conf>
       <min-capacity>50</min-capacity>
       <max-capacity>10000</max-capacity>
       <remover-period>1800</remover-period>
       <max-bean-life>1800</max-bean-life>
       <overager-period>300</overager-period>
       <max-bean-age>600</max-bean-age>
       <resizer-period>400</resizer-period>
       <max-cache-miss-period>60</max-cache-miss-period>
       <min-cache-miss-period>1</min-cache-miss-period>
       <cache-load-factor>0.75</cache-load-factor>
       </cache-policy-conf>
       </container-cache-conf>
       <container-pool-conf>
       <MaximumSize>100</MaximumSize>
       </container-pool-conf>
      
      
      Does anyone have an idea about how to change this behaviour?

      Thanks,
      Stefan