Hi,
I am using a ws4ee-deployment.xml file and the resulting .wsdd is pasted below:

<deployment
  |  xmlns='http://xml.apache.org/axis/wsdd/'
  |  xmlns:java='http://xml.apache.org/axis/wsdd/providers/java'
  |  xmlns:soap='http://schemas.xmlsoap.org/soap/encoding/'
  |  xmlns:xsi='http://www.w3.org/2000/10/XMLSchema-instance'
  |  xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
  | 
  | <service name='wseetest1.ear/wseetest1-ejb.jar#WseeEndpoint1' style='rpc' 
use='literal' provider='Handler'>
  | 
  |   <parameter name='webserviceID' 
value='wseetest1.ear/wseetest1-ejb.jar#WseeEndpoint1' />
  |   <parameter name='handlerClass' 
value='org.jboss.webservice.server.InvokerProviderEJB' />
  | 
  |   <operation name='getFirstName' qname='ns1:getFirstName' 
returnQName='getFirstNameReturn' returnType='xsd:string' 
xmlns:ns1='http://interfaces.wseetest1.bb' >
  |     <parameter name='in0' qname='in0' mode='IN' type='xsd:int' />
  |   </operation>
  |   <operation name='getNameType' qname='ns1:getNameType' 
returnQName='ns2:ComplexType' returnType='ns2:ComplexType' 
xmlns:ns1='http://interfaces.wseetest1.bb' xmlns:ns2='http://data.wseetest1.bb' 
>
  |   </operation>
  |   <operation name='printTypes' qname='ns1:printTypes' 
returnQName='printTypesReturn' returnType='xsd:int' 
xmlns:ns1='http://interfaces.wseetest1.bb' >
  |     <parameter name='in0' qname='ns2:ComplexTypeArray' mode='IN' 
type='ns2:ComplexTypeArray' xmlns:ns2='http://data.wseetest1.bb' />
  |   </operation>
  | 
  |   <!-- User defined type mapping -->
  |   <typeMapping
  |     qname='ns2:ComplexType' xmlns:ns2='http://data.wseetest1.bb'
  |     type='java:bb.wseetest1.data.ComplexType'
  |     serializer='org.apache.axis.encoding.ser.BeanSerializerFactory'
  |     deserializer='org.apache.axis.encoding.ser.BeanDeserializerFactory'
  |     encodingStyle=''>
  |   <typeDesc>
  |   </typeDesc>
  |   </typeMapping>
  | 
  |   <!-- User defined type mapping -->
  |   <typeMapping
  |     qname='ns2:ComplexTypeArray' xmlns:ns2='http://data.wseetest1.bb'
  |     type='java:bb.wseetest1.data.ComplexTypeArray'
  |     serializer='org.apache.axis.encoding.ser.BeanSerializerFactory'
  |     deserializer='org.apache.axis.encoding.ser.BeanDeserializerFactory'
  |     encodingStyle=''>
  |   <typeDesc>
  |   </typeDesc>
  |   </typeMapping>
  | 
  |   <!-- User defined type mapping -->
  |   <typeMapping
  |     qname='ns2:printTypesRequest' xmlns:ns2='http://data.wseetest1.bb'
  |     type='java:bb.wseetest1.data.ComplexTypeArray'
  |     serializer='org.apache.axis.encoding.ser.BeanSerializerFactory'
  |     deserializer='org.apache.axis.encoding.ser.BeanDeserializerFactory'
  |     encodingStyle=''>
  |   <typeDesc>
  |   </typeDesc>
  |   </typeMapping>
  | 
  | 
  | </service>
  | </deployment>
  | 
  | 

I will also paste an excerpt from my .wsdl just in case:



  | 
  | <wsdl:types>
  |     <schema targetNamespace="http://data.wseetest1.bb"; 
xmlns="http://www.w3.org/2001/XMLSchema";>
  |    <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
  |    <complexType name="ComplexType">
  |     <sequence>
  |      <element name="name" nillable="true" type="xsd:string"/>
  |     </sequence>
  |    </complexType>
  |    <complexType name="ComplexTypeArray">
  |     <sequence>
  |      <element name="elements" nillable="true" 
type="impl:ArrayOf_tns2_ComplexType"/>
  |     </sequence>
  |    </complexType>
  |   </schema>
  |     <schema targetNamespace="http://interfaces.wseetest1.bb"; 
xmlns="http://www.w3.org/2001/XMLSchema";>
  |    <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
  |    <complexType name="ArrayOf_tns2_ComplexType">
  |     <complexContent>
  |      <restriction base="soapenc:Array">
  |       <attribute ref="soapenc:arrayType" 
wsdl:arrayType="tns2:ComplexType[]" 
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"/>
  |      </restriction>
  |     </complexContent>
  |    </complexType>
  |   </schema>
  |   </wsdl:types>
  |   <wsdl:message name="getNameTypeRequest">
  |   </wsdl:message>
  |   <wsdl:message name="getFirstNameRequest">
  |     <wsdl:part name="in0" type="xsd:int"/>
  |   </wsdl:message>
  |   <wsdl:message name="printTypesResponse">
  |     <wsdl:part name="printTypesReturn" type="xsd:int"/>
  |   </wsdl:message>
  |   <wsdl:message name="getFirstNameResponse">
  |     <wsdl:part name="getFirstNameReturn" type="xsd:string"/>
  |   </wsdl:message>
  |   <wsdl:message name="printTypesRequest">
  |     <wsdl:part name="in0" type="tns2:ComplexTypeArray"/>
  |   </wsdl:message>
  |   <wsdl:message name="getNameTypeResponse">
  |     <wsdl:part name="getNameTypeReturn" type="tns2:ComplexType"/>
  |   </wsdl:message>
  |   <wsdl:portType name="WseeEndpoint1">
  |     <wsdl:operation name="getFirstName" parameterOrder="in0">
  |       <wsdl:input name="getFirstNameRequest" 
message="impl:getFirstNameRequest"/>
  |       <wsdl:output name="getFirstNameResponse" 
message="impl:getFirstNameResponse"/>
  |     </wsdl:operation>
  |     <wsdl:operation name="getNameType">
  |       <wsdl:input name="getNameTypeRequest" 
message="impl:getNameTypeRequest"/>
  |       <wsdl:output name="getNameTypeResponse" 
message="impl:getNameTypeResponse"/>
  |     </wsdl:operation>
  |     <wsdl:operation name="printTypes" parameterOrder="in0">
  |       <wsdl:input name="printTypesRequest" 
message="impl:printTypesRequest"/>
  |       <wsdl:output name="printTypesResponse" 
message="impl:printTypesResponse"/>
  |     </wsdl:operation>
  |   </wsdl:portType>
  | 
  | 

Thanks, Sid.


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3875429#3875429

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3875429


-------------------------------------------------------
SF.Net email is sponsored by: Tell us your software development plans!
Take this survey and enter to win a one-year sub to SourceForge.net
Plus IDC's 2005 look-ahead and a copy of this survey
Click here to start!  http://www.idcswdc.com/cgi-bin/survey?id=105hix
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to