Hi!
The problem occur when deploying my-ejbs.jar which is named the same
application.xml in ear 1:
<?xml version="1.0" encoding="UTF-8"?>
| <application
xmlns="http://java.sun.com/xml/ns/j2ee"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
|
http://java.sun.com/xml/ns/j2ee/application_1_4.xsd"
| version="1.4">
| <display-name>first</display-name>
| <module>
| <ejb>my-ejbs.jar</ejb>
| </module>
| <module>
| <ejb>first.jar</ejb>
| </module>
| <module>
| <web>
| <web-uri>webApp.war</web-uri>
| <context-root>first-6-0-4</context-root>
| </web>
| </module>
| </application>
application.xml in ear 2:
<?xml version="1.0" encoding="UTF-8"?>
| <application
xmlns="http://java.sun.com/xml/ns/j2ee"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
|
http://java.sun.com/xml/ns/j2ee/application_1_4.xsd"
| version="1.4">
| <display-name>yet-other</display-name>
| <module>
| <ejb>my-ejbs.jar</ejb>
| </module>
| <module>
| <ejb>yet-other.jar</ejb>
| </module>
| <module>
| <web>
| <web-uri>webApp.war</web-uri>
| <context-root>yet-other-6-0-7</context-root>
| </web>
| </module>
| </application>
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4197595#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...