How to set timeout for stateful session bean?

2008-02-07 Thread SergZ

I could not find this information for neither openejb-jar.xml nor configuring
geronimo app server.
Is the simple solution instead of described this
http://www.nabble.com/Geronimo-2.0:-customize-EJB-Container-settings-td15072400s134.html
(looking for it in openejb container source)?
-- 
View this message in context: 
http://www.nabble.com/How-to-set-timeout-for-stateful-session-bean--tp15338827s134p15338827.html
Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.



Re: How to set timeout for stateful session bean?

2008-02-07 Thread Manu George
Hi SergZ,
   What do you want to configure?. The link you provided
gives the configuration information.
The list of configurable container specific properties for openejb is
given below
http://openejb.apache.org/example-generated-documentation.html. Thanks
to Dain for generating this really useful doc. You can set the
properties via ContainerId.property name

eg: Default Mdb Container.InstanceLimit=15 in the case of setting the
instance limit of the container with id Default Mdb Container to 15.
Someone correct me if I am wrong :)

You can either set the property via command line or via the
config.xml. Setting via config.xml needs you to add a Gbean of type
SystemProperties to the j2ee-server configuration

module name=org.apache.geronimo.configs/j2ee-server/2.0.1/car
gbean 
gbeanInfo=org.apache.geronimo.system.properties.SystemProperties
name=org.apache.geronimo.configs/j2ee-server/2.0.1/car?ServiceModule=org.apache.geronimo.configs/j2ee-server/2.0.1/car,j2eeType=GBean,name=CustomPropertiesGBean
attribute name=systemPropertiesDefault\ MDB\
Container.InstanceLimit=20/attribute
/gbean
/module


Regards
Manu

On Feb 7, 2008 10:57 PM, SergZ [EMAIL PROTECTED] wrote:

 I could not find this information for neither openejb-jar.xml nor configuring
 geronimo app server.
 Is the simple solution instead of described this
 http://www.nabble.com/Geronimo-2.0:-customize-EJB-Container-settings-td15072400s134.html
 (looking for it in openejb container source)?
 --
 View this message in context: 
 http://www.nabble.com/How-to-set-timeout-for-stateful-session-bean--tp15338827s134p15338827.html
 Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.