EJB as Web Service - Session Timeout
I would like to know how to increase the session-timeout of an EJB-based Web Service.
Can the automatically created web.xml found in the JBOSS_HOME/server/default/tmp/deploy/WebService.war/WEB-INF be modified or customize the creation of this file?
Th开发者_高级运维ank you
JBoss Application Server has a default session bean timeout of 30 minutes, which is configured in server/default/conf/standardjboss.xml.change the max-bean-life.
<max-bean-life>1800</max-bean-life>
精彩评论