Globally configures an instance pool timeout value for the entity beans and stateless session beans in the module (stateful session beans are not pooled). If a pooled instance remains idle for more than this amount of time, EAServer discards the instance.
To override this setting for individual components, create a <setProperties> command in your user configuration that runs the <instancePool> subcommand and sets the timeout attribute. For example:
<target name="configure-user"> <setProperties component="ejb.components.example.MyCompRemote"> <instancePool timeout="100"/> </setProperties> </target>