2 Replies Latest reply on Aug 16, 2004 4:49 AM by void

    JBoss.NET service will not deploy in ear file

    candrews

      Hi all,

      I have a simple web service that I wish to deploy as part of my enterprise application. However, the .wsr file (which only contains the web-services.xml and a single class file) deploys fine on its own, but will not deploy as part of an ear file.

      The ear file contains:

      application.xml
      .jar file containing EJBs
      .war file containing servlets
      .wsr file containing jboss.net services

      However, although the EJBs and servlets deploy, the soap services are completely ignored.

      Here is my web-services.xml:

      -------

      <deployment xmlns="http://xml.apache.org/axis/wsdd/"
       xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
       <service name="ProductAdmin" provider="java:RPC">
       <parameter name="className" value="pmsdemo.soap.ProductAdminSoap"/>
       <parameter name="allowedMethods" value="*"/>
       <parameter name="scope" value="request"/>
       </service>
      </deployment>
      


      -------

      Do I need to add anything to application.xml in order to get the .wsr to deploy? If so, what? I can't find any documentation anywhere!

      Thanks!