[jboss-user] [EJB 3.0] - Re: JBoss tmp filder increased size

2009-04-03 Thread gennadyjb
Hi, I am running jboss-4.0.5GA and having exactly the same problem. And in that ejb3-interceptors-aop.xml file I did not find anywhere removalTimeoutSeconds value. So how to get rid of those *.ser files automatically? Thank you. View the original post : http://www.jboss.org/index.html?module=bb

[jboss-user] [EJB 3.0] - Re: JBoss tmp filder increased size

2008-10-31 Thread artd
Checkout the ejb3-interceptors-aop.xml, by default, it's set to 0, which indicates keep them forever. removalTimeoutSeconds value in the stateful session beans section ... @org.jboss.annotation.ejb.cache.simple.CacheConfig (maxSize=100, idleTimeoutSeconds=300, removalTimeoutSe

[jboss-user] [EJB 3.0] - Re: JBoss tmp filder increased size

2008-10-29 Thread ALRubinger
"ALRubinger" wrote : ... that I'd expect in the RemovalTask in SimpleStatefulCache ... Correction, it's not the RemovalTask which needs this, but SimpleStatefulCache.remove(). S, ALR View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4185525#4185525 Reply to th

[jboss-user] [EJB 3.0] - Re: JBoss tmp filder increased size

2008-10-29 Thread ALRubinger
Are .ser files getting deleted upon SFSB remove(); ? I'm not seeing the call to StatefulSessionPersistenceManager.removePassivated() that I'd expect in the RemovalTask in SimpleStatefulCache (which is used in non-clustered configurations). If this is the case, please open a JIRA and assign to m

[jboss-user] [EJB 3.0] - Re: JBoss tmp filder increased size

2008-10-29 Thread jaikiran
As far as i know, the .ser files contain passivated session beans (or even HTTPSession?). So the longer your application runs, the more the size of this folder. In addition to these files, the tmp folder contains the unzipped (extracted) versions of various applications deployed on JBoss. View