[jboss-jira] [JBoss JIRA] Resolved: (JBAS-7323) Disable Tomcat deployment for OSGi webapps
Thomas Diesler (JIRA)
jira-events at lists.jboss.org
Sat Oct 10 18:27:05 EDT 2009
[ https://jira.jboss.org/jira/browse/JBAS-7323?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Thomas Diesler resolved JBAS-7323.
----------------------------------
Resolution: Done
Fixed in LegacyWebXmlLessDeployer
// Detect and ignore OSGi WAR deployments
// FIXME Use typed OSGiMetaData when we have it available at runtime
String bundleSymbolicName = (String) unit.getAttachment("org.jboss.osgi.bundle.symbolic.name");
if (bundleSymbolicName != null)
{
log.debug("Ignore OSGi webapp: " + bundleSymbolicName);
return;
}
> Disable Tomcat deployment for OSGi webapps
> ------------------------------------------
>
> Key: JBAS-7323
> URL: https://jira.jboss.org/jira/browse/JBAS-7323
> Project: JBoss Application Server
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: Web (Tomcat) service
> Reporter: Thomas Diesler
> Assignee: Thomas Diesler
> Fix For: JBossAS-6.0.0.Alpha1
>
>
> Starting from 1.0.0.Beta4 JBoss OSGi can handle WAR deployments in JBoss.
> Disable the ordinary webapp deployment to Tomcat for these bundles.
> Later the JBoss Web Service should be enabled to handle OSGi WAR deployments.
> i.e. there would be just one service to handle WARs
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list