I just went through about a half-hours work to setup
the "jboss.xml" file in my EJB .jar file, so that when the
bean was deployed, it would instatiate some number of
instances of the bean to begin with (as specified in the
<container-pool-conf> max,min size tags).
It deployed, but didn't see anything saying that it did
what I thought it was going to do, such as instantiating
the min# of instances. Did it??
Then, when I looked at the source code for the J2EEDeployer,
it says that the alternate descriptors aren't used (hasn't been
implemented). Is this so?
If so, when will it be? If not, what am I missing?
Here's what I've got in the jboss.xml file:
<?xml version="1.0" encoding="Cp1252"?>
<jboss>
<secure>false</secure>
<resource-managers />
<enterprise-beans>
<session>
<ejb-name>TelnetConnection</ejb-name>
<jndi-name>TelnetConnection</jndi-name>
<configuration-name>Startup</configuration-name>
</session>
</enterprise-beans>
<container-configurations>
<container-configuration>
<container-name>Startup</container-name>
<container-invoker>org.jboss.ejb.plugins.jrmp13.server.JRMPContainerInvoker</container-invoker>
<instance-pool>org.jboss.ejb.plugins.StatelessSessionInstancePool</instance-pool>
<container-invoker-conf>
<Optimized>True</Optimized>
</container-invoker-conf>
<container-pool-conf>
<MinimumSize>3</MinimumSize>
<MaximumSize>20</MaximumSize>
</container-pool-conf>
</container-configuration>
</container-configurations>
</jboss>
--
--------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
List Help?: [EMAIL PROTECTED]