User: cgjung  
  Date: 02/03/12 03:04:48

  Modified:    jboss.net/testsuite/src/resources/hello/wsr/META-INF
                        web-service.xml
  Log:
  Axis Beta RC1 is here. Needs no more to be patched for integrating with the
  jboss classloading architecture. Lots of interna have changed, though.
  
  Adapted the deployment descriptors to support WSDD now.
  
  Revision  Changes    Path
  1.2       +17 -16    
contrib/jboss.net/testsuite/src/resources/hello/wsr/META-INF/web-service.xml
  
  Index: web-service.xml
  ===================================================================
  RCS file: 
/cvsroot/jboss/contrib/jboss.net/testsuite/src/resources/hello/wsr/META-INF/web-service.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- web-service.xml   7 Oct 2001 20:06:12 -0000       1.1
  +++ web-service.xml   12 Mar 2002 11:04:48 -0000      1.2
  @@ -1,13 +1,11 @@
  -<!-- Use this file to deploy some handlers/chains and services  -->
  -<!-- Two ways to do this:                                       -->
  -<!--   java org.apache.axis.utils.Admin deploy.xml              -->
  -<!--      from the same dir that the Axis engine runs           -->
  -<!-- or                                                         -->
  -<!--   java org.apache.axis.client.AdminClient deploy.xml       -->
  -<!--      after the axis server is running                      -->
  -<!-- This file will be replaced by WSDD once it's ready         -->
  +<!-- Example EJB Web Service Descriptor -->
   
  -<m:deploy xmlns:m="AdminService">
  +<deployment name="Hello" 
  +     targetNamespace="http://net.jboss.org/hello";
  +     xmlns:hello="http://net.jboss.org/hello";
  +     xmlns="http://xml.apache.org/axis/wsdd/";
  +        xmlns:jbnet="http://net.jboss.org/server";
  +     xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";>
   
     <!-- this is an extension to the Axis deployment descriptor which allows to
          specify the naming environment for the deployed ws logic -->
  @@ -16,14 +14,17 @@
        <ejb-link>HelloWorld</ejb-link>
     </ejb-ref>
        
  -  <service name="Hello" pivot="EJBProvider">
  +  <service name="Hello" provider="Handler">
  +   <parameter name="handlerClass" value="org.jboss.net.axis.server.EJBProvider"/>
      <!-- the final jndi name that this provider sits upon -->
  -   <option name="beanJndiName" value="java:comp/env/ejb/Hello"/>
  -   <option name="allowedMethods" value="*"/>
  +   <parameter name="beanJndiName" value="java:comp/env/ejb/Hello"/>
  +   <parameter name="allowedMethods" value="*"/>
     </service>
   
  -  <beanMappings xmlns:hello="Hello">
  -    <hello:HelloData classname="org.jboss.test.hello.interfaces.HelloData"/>
  -  </beanMappings>
  +  <typeMapping qname="hello:HelloData" 
  +        type="java:org.jboss.test.hello.interfaces.HelloData"
  +        serializer="org.apache.axis.encoding.ser.BeanSerializerFactory"
  +        deserializer="org.apache.axis.encoding.ser.BeanDeserializerFactory"
  +        encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
   
  -</m:deploy>
  +</deployment>
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to