protected synchronized void start() throws LifecycleException {
configureResource();
context.setConfigured(false);
ComponentEnvManager namingMgr = services.getService(
com.sun.enterprise.container.common.spi.util.ComponentEnvManager.class);
if (namingMgr != null) {
try {
boolean webBundleContainsEjbs =
(webBundleDescriptor.getExtensionsDescriptors(EjbBundleDescriptor.class).size() > 0);
// If .war contains EJBs, .war-defined dependencies have already been bound by
// EjbDeployer, so just add the dependencies from outside the .war
if( webBundleContainsEjbs ) {
namingMgr.addToComponentNamespace(webBundleDescriptor, envProps, resRefs);
} else {
namingMgr.bindToComponentNamespace(webBundleDescriptor);
}
String componentId = namingMgr.getComponentEnvId(webBundleDescriptor);
((WebModule) context).setComponentId(componentId);
} catch (NamingException ne) {
throw new LifecycleException(ne);
}
}