ejb.removeTimeout

Globally configures the removal timeout for EJB stateful session beans in the module. The value is the allowed idle time in seconds. If an instance is idle for more than this amount of time, EAServer removes the instance. Client invocations fail after the instance has been removed.

To override this setting for individual components, create a <setProperties> command in your user configuration that runs the <ejbRemove> subcommand and sets the timeout attribute. For example:

<target name="configure-user">
  <setProperties component="ejb.components.myjar.MyCompRemote">
     <ejbRemove timeout="1200"/>
  </setProperties>
</target>