2 Replies Latest reply on Sep 8, 2008 6:30 PM by jharby1

    Problem deploying SLSB in EAR file

    jharby1

      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>