[JBoss JIRA] Updated: (JBAS-3131) Extension-List MANIFEST attribute not honored during deployment of an EAR
by Jason T. Greene (JIRA)
[ https://jira.jboss.org/jira/browse/JBAS-3131?page=com.atlassian.jira.plug... ]
Jason T. Greene updated JBAS-3131:
----------------------------------
Fix Version/s: JBossAS-6.0.0.M4
(was: JBossAS-6.0.0.M3)
> Extension-List MANIFEST attribute not honored during deployment of an EAR
> -------------------------------------------------------------------------
>
> Key: JBAS-3131
> URL: https://jira.jboss.org/jira/browse/JBAS-3131
> Project: JBoss Application Server
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Deployers
> Affects Versions: JBossAS-4.0.3 SP1
> Environment: Windows XP SP2, JDK 1.5.0_06
> Reporter: Alexander Sack
> Priority: Minor
> Fix For: JBossAS-6.0.0.M4
>
>
> If a JAR within an EAR specifies an Extension-List MANIFEST attribute, the EAR deployer does not honor it. I have a library, my.jar, that gets deployed that specifies an Extension-Name and Implementation-Version. If any of my jars within an EAR references this library, JBoss ignores the Extension-List attribute. The use of the Extension-List MANIFEST attribute is part of the core J2EE 1.4 spec and the EAR deployment should fail if the Extension-List library is not found (or if it is found and the <name>-Implementatino-Version does not meet the minimal requirements.
--
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
14 years, 10 months
[JBoss JIRA] Updated: (JBAS-3131) Extension-List MANIFEST attribute not honored during deployment of an EAR
by Jason T. Greene (JIRA)
[ https://jira.jboss.org/jira/browse/JBAS-3131?page=com.atlassian.jira.plug... ]
Jason T. Greene updated JBAS-3131:
----------------------------------
Priority: Major (was: Minor)
Increasing priority
> Extension-List MANIFEST attribute not honored during deployment of an EAR
> -------------------------------------------------------------------------
>
> Key: JBAS-3131
> URL: https://jira.jboss.org/jira/browse/JBAS-3131
> Project: JBoss Application Server
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Deployers
> Affects Versions: JBossAS-4.0.3 SP1
> Environment: Windows XP SP2, JDK 1.5.0_06
> Reporter: Alexander Sack
> Fix For: JBossAS-6.0.0.M4
>
>
> If a JAR within an EAR specifies an Extension-List MANIFEST attribute, the EAR deployer does not honor it. I have a library, my.jar, that gets deployed that specifies an Extension-Name and Implementation-Version. If any of my jars within an EAR references this library, JBoss ignores the Extension-List attribute. The use of the Extension-List MANIFEST attribute is part of the core J2EE 1.4 spec and the EAR deployment should fail if the Extension-List library is not found (or if it is found and the <name>-Implementatino-Version does not meet the minimal requirements.
--
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
14 years, 10 months
[JBoss JIRA] Assigned: (JBAS-3131) Extension-List MANIFEST attribute not honored during deployment of an EAR
by Jason T. Greene (JIRA)
[ https://jira.jboss.org/jira/browse/JBAS-3131?page=com.atlassian.jira.plug... ]
Jason T. Greene reassigned JBAS-3131:
-------------------------------------
Assignee: Jason T. Greene
> Extension-List MANIFEST attribute not honored during deployment of an EAR
> -------------------------------------------------------------------------
>
> Key: JBAS-3131
> URL: https://jira.jboss.org/jira/browse/JBAS-3131
> Project: JBoss Application Server
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Deployers
> Affects Versions: JBossAS-4.0.3 SP1
> Environment: Windows XP SP2, JDK 1.5.0_06
> Reporter: Alexander Sack
> Assignee: Jason T. Greene
> Fix For: JBossAS-6.0.0.M4
>
>
> If a JAR within an EAR specifies an Extension-List MANIFEST attribute, the EAR deployer does not honor it. I have a library, my.jar, that gets deployed that specifies an Extension-Name and Implementation-Version. If any of my jars within an EAR references this library, JBoss ignores the Extension-List attribute. The use of the Extension-List MANIFEST attribute is part of the core J2EE 1.4 spec and the EAR deployment should fail if the Extension-List library is not found (or if it is found and the <name>-Implementatino-Version does not meet the minimal requirements.
--
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
14 years, 10 months
[JBoss JIRA] Created: (JBAS-7797) EARContentsDeployer creates the wrong name for modules
by Brian Stansberry (JIRA)
EARContentsDeployer creates the wrong name for modules
------------------------------------------------------
Key: JBAS-7797
URL: https://jira.jboss.org/jira/browse/JBAS-7797
Project: JBoss Application Server
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Deployers
Affects Versions: JBossAS-6.0.0.M2
Reporter: Brian Stansberry
Assignee: Brian Stansberry
Priority: Minor
Fix For: JBossAS-6.0.0.M3
It passes the result of this calculation to ModuleMetaData.setFileName():
private String earRelativePath(String earPath, String pathName)
{
StringBuilder tmp = new StringBuilder(pathName);
tmp.delete(0, earPath.length());
return tmp.toString();
}
That will include a leading /, e.g.
foo.ear/bar.war
will have a ModuleMetaData with name "/bar.war". It should be "bar.war".
This impacts the processing done as part of JBAS-7644.
EARStructure has the same flaw, but the "earRelativePath" is passed to VirtualFile.getChild(earRelativePath) which ignores the leading /.
--
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
14 years, 10 months