I am trying to deploy an EAR file containing a WAR and a Stateless Session Bean. The WAR
is getting deployed fine but the bean is not and no errors are shown in any of the logs. I
have pasted my application.xml file below:
| <?xml version="1.0" encoding="UTF-8"?>
| <application
xmlns="http://java.sun.com/xml/ns/javaee"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
|
http://java.sun.com/xml/ns/javaee/application_5.xsd"
| version="5">
| <display-name>PolicyServiceApp</display-name>
| <module id="policyServiceBean-EJB">
| <ejb>policyServiceBean-1.0.ejb</ejb>
| </module>
| <module id="policyServiceWeb-Web">
| <web>
| <web-uri>policyServiceWeb-1.0.war</web-uri>
| <context-root>/</context-root>
| </web>
| </module>
| </application>
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4175162#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...