Scott

there is an error in the jboss 2.4 dtd.

The SingletonStatelessSessionInstancePool class in org.jboss.ejb.plugins 
has a boolean attribute isSynchronized that is set by an XML element 
'Synchronized' in the container-pool-conf.

So :-

<!ELEMENT container-pool-conf (MaximumSize , MinimumSize)>

needs to be

<!ELEMENT container-pool-conf ((MaximumSize , MinimumSize) | Synchronized)>

and a definition for Synchronized added.

<!--
         This element is only valid if the instance pool is 
StatelessSessionInstancePool.

         The Synchronized element instructs the the pool to synchronize 
calls to the Session bean.
         Its value must be true or false.

         Used in: container-pool-conf for StatelessSessionInstancePool
         -->
<!ELEMENT Synchronized (#PCDATA)>

thanks

Mike S-R 


_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to