Can someone please tell me what @jboss:container-configuration does?  I used it in one of my beans, but I didn't see any difference in either jboss.xml or ejb-jar.xml.
 
The stuff behind all this is that I am following the Jboss3 Quickstart guide to configure security.  The example, show this:
<jboss>
    <container-configurations>
        <!-- StatelessSession beans are secure by default -->
        <container-configuration>
            <container-name>Standard Stateless SessionBean</container-name> 
            <security-domain>java:/jaas/spec-test</security-domain>
        </container-configuration>
...
 
Anyone knows how I can generate this using xdoclet?  I use <jboss version="3.0" ... securityDomain="java:/jaas/spec-test" destdir="${ejb}/bean/gen-dd/META-INF"/>, but it only generated the following:
<jboss>
   <security-domain>java:/jaas/spec-test</security-domain>
...
(See that <container-configurations> and other entries are not there)
 
Please help.
 
Thanks,
 
Derek

Reply via email to