Author: darran.lofthouse(a)jboss.com
Date: 2007-01-13 10:22:38 -0500 (Sat, 13 Jan 2007)
New Revision: 1954
Added:
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/CustomException.java
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/DataObject.java
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/JBWS1231TestCase.java
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/TestEndpoint.java
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/TestService.wsdl
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/jaxrpc-mapping.xml
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/wstools-config.xml
Modified:
branches/dlofthouse/JBWS-1231/jbossws-core/src/main/java/org/jboss/ws/tools/schema/SchemaTypeCreator.java
Log:
JBWS-1231 - Java to WSDL, support for recursive exception references.
Modified:
branches/dlofthouse/JBWS-1231/jbossws-core/src/main/java/org/jboss/ws/tools/schema/SchemaTypeCreator.java
===================================================================
---
branches/dlofthouse/JBWS-1231/jbossws-core/src/main/java/org/jboss/ws/tools/schema/SchemaTypeCreator.java 2007-01-13
15:14:17 UTC (rev 1953)
+++
branches/dlofthouse/JBWS-1231/jbossws-core/src/main/java/org/jboss/ws/tools/schema/SchemaTypeCreator.java 2007-01-13
15:22:38 UTC (rev 1954)
@@ -308,7 +308,7 @@
}
else
{
- name = utils.getJustClassName(javaType);
+ name = WSDLUtils.getJustClassName(javaType);
namespace = getNamespace(javaType);
}
@@ -705,21 +705,27 @@
else
{
namespace = getNamespace(javaType);
- name = utils.getJustClassName(javaType);
+ name = WSDLUtils.getJustClassName(javaType);
}
- JBossXSComplexTypeDefinition complexType = new JBossXSComplexTypeDefinition();
+ List<XSParticle> particles = new ArrayList<XSParticle>(0);
+ List<Class> types = new ArrayList<Class>(0);
+ JBossXSComplexTypeDefinition complexType = new JBossXSComplexTypeDefinition();
complexType.setName(name);
complexType.setNamespace(namespace);
+ xsModel.addXSComplexTypeDefinition(complexType);
+ xsModel.addXSElementDeclaration(sutils.createGlobalXSElementDeclaration(name,
complexType, namespace));
+ typeMapping.register(javaType, new QName(namespace, name), null, null);
+ registerJavaTypeMapping(new QName(namespace, name), javaType,
"complexType", particles, null);
+
Class superClass = javaType.getSuperclass();
if (!Exception.class.equals(superClass) || Throwable.class.equals(superClass))
{
JBossXSTypeDefinition baseType = generateType(null, superClass);
complexType.setBaseType(baseType);
}
- List<Class> types = new ArrayList<Class>(0);
- List<XSParticle> particles = new ArrayList<XSParticle>(0);
+
generateExceptionParticles(namespace, javaType, types, particles);
boolean found = hasConstructor(javaType, types);
@@ -744,13 +750,8 @@
}
}
- complexType.setParticle(createGroupParticle(namespace, particles));
+ complexType.setParticle(createGroupParticle(namespace, particles));
- xsModel.addXSComplexTypeDefinition(complexType);
- xsModel.addXSElementDeclaration(sutils.createGlobalXSElementDeclaration(name,
complexType, namespace));
- typeMapping.register(javaType, new QName(namespace, name), null, null);
- registerJavaTypeMapping(new QName(namespace, name), javaType,
"complexType", particles, null);
-
return complexType;
}
Added:
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/CustomException.java
===================================================================
---
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/CustomException.java 2007-01-13
15:14:17 UTC (rev 1953)
+++
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/CustomException.java 2007-01-13
15:22:38 UTC (rev 1954)
@@ -0,0 +1,52 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2007, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+ */
+package org.jboss.test.ws.tools.jbws1231;
+
+/**
+ *
+ * @author darran.lofthouse(a)jboss.com
+ * @since 13 Jan 2007
+ */
+public class CustomException extends Exception
+{
+
+ private static final long serialVersionUID = 1L;
+
+ private CustomException wrappedException;
+
+ public CustomException(CustomException wrapped)
+ {
+ super();
+ this.wrappedException = wrapped;
+ }
+
+ public CustomException getWrappedException()
+ {
+ return wrappedException;
+ }
+
+ public void setWrappedException(CustomException wrappedException)
+ {
+ this.wrappedException = wrappedException;
+ }
+
+}
Property changes on:
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/CustomException.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added:
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/DataObject.java
===================================================================
---
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/DataObject.java 2007-01-13
15:14:17 UTC (rev 1953)
+++
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/DataObject.java 2007-01-13
15:22:38 UTC (rev 1954)
@@ -0,0 +1,56 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2007, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+ */
+package org.jboss.test.ws.tools.jbws1231;
+
+/**
+ *
+ * @author darran.lofthouse(a)jboss.com
+ * @since 13 Jan 2007
+ */
+public class DataObject
+{
+
+ private String message;
+
+ private DataObject parent;
+
+ public String getMessage()
+ {
+ return message;
+ }
+
+ public void setMessage(String message)
+ {
+ this.message = message;
+ }
+
+ public DataObject getParent()
+ {
+ return parent;
+ }
+
+ public void setParent(DataObject parent)
+ {
+ this.parent = parent;
+ }
+
+}
Property changes on:
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/DataObject.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added:
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/JBWS1231TestCase.java
===================================================================
---
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/JBWS1231TestCase.java 2007-01-13
15:14:17 UTC (rev 1953)
+++
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/JBWS1231TestCase.java 2007-01-13
15:22:38 UTC (rev 1954)
@@ -0,0 +1,50 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2007, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+ */
+package org.jboss.test.ws.tools.jbws1231;
+
+import org.jboss.test.ws.tools.WSToolsTest;
+import org.jboss.test.ws.tools.validation.JaxrpcMappingValidator;
+import org.jboss.ws.tools.WSTools;
+
+/**
+ *
+ * @author darran.lofthouse(a)jboss.com
+ * @since 13 Jan 2007
+ */
+public class JBWS1231TestCase extends WSToolsTest
+{
+
+ public final void testGenerate() throws Exception
+ {
+ String resourceDir = "resources/tools/jbws1231";
+ String toolsDir = "tools/jbws1231";
+ String[] args = new String[] { "-dest", toolsDir, "-config",
resourceDir + "/wstools-config.xml" };
+
+ new WSTools().generate(args);
+
+ semanticallyValidateWSDL(resourceDir + "/TestService.wsdl", toolsDir +
"/wsdl/TestService.wsdl");
+
+ JaxrpcMappingValidator mappingValidator = new JaxrpcMappingValidator();
+ mappingValidator.validate(resourceDir + "/jaxrpc-mapping.xml", toolsDir +
"/jaxrpc-mapping.xml");
+ }
+
+}
Property changes on:
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/JBWS1231TestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added:
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/TestEndpoint.java
===================================================================
---
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/TestEndpoint.java 2007-01-13
15:14:17 UTC (rev 1953)
+++
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/TestEndpoint.java 2007-01-13
15:22:38 UTC (rev 1954)
@@ -0,0 +1,37 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2007, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+ */
+package org.jboss.test.ws.tools.jbws1231;
+
+import java.rmi.Remote;
+import java.rmi.RemoteException;
+
+/**
+ *
+ * @author darran.lofthouse(a)jboss.com
+ * @since 13 Jan 2007
+ */
+public interface TestEndpoint extends Remote
+{
+
+ public DataObject echoDataObject(final DataObject parameter) throws RemoteException,
CustomException;
+
+}
Property changes on:
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1231/TestEndpoint.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added:
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/TestService.wsdl
===================================================================
---
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/TestService.wsdl 2007-01-13
15:14:17 UTC (rev 1953)
+++
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/TestService.wsdl 2007-01-13
15:22:38 UTC (rev 1954)
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<definitions name='TestService'
targetNamespace='http://org.jboss.test.ws/jbws1231'
xmlns='http://schemas.xmlsoap.org/wsdl/'
xmlns:ns1='http://org.jboss.test.ws/jbws1231/type'
xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
xmlns:tns='http://org.jboss.test.ws/jbws1231'
xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
+ <types>
+ <schema targetNamespace='http://org.jboss.test.ws/jbws1231/type'
xmlns='http://www.w3.org/2001/XMLSchema'
xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/'
xmlns:tns='http://org.jboss.test.ws/jbws1231/type'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
+ <complexType name='CustomException'>
+ <sequence>
+ <element name='wrappedException' nillable='true'
type='tns:CustomException'/>
+ </sequence>
+ </complexType>
+ <complexType name='echoDataObject'>
+ <sequence>
+ <element name='DataObject_1' nillable='true'
type='tns:DataObject'/>
+ </sequence>
+ </complexType>
+ <complexType name='DataObject'>
+ <sequence>
+ <element name='message' nillable='true'
type='string'/>
+ <element name='parent' nillable='true'
type='tns:DataObject'/>
+ </sequence>
+ </complexType>
+ <complexType name='echoDataObjectResponse'>
+ <sequence>
+ <element name='result' nillable='true'
type='tns:DataObject'/>
+ </sequence>
+ </complexType>
+ <element name='CustomException' type='tns:CustomException'/>
+ <element name='echoDataObject' type='tns:echoDataObject'/>
+ <element name='echoDataObjectResponse'
type='tns:echoDataObjectResponse'/>
+ </schema>
+ </types>
+ <message name='TestEndpoint_echoDataObject'>
+ <part element='ns1:echoDataObject' name='echoDataObject'/>
+ </message>
+ <message name='TestEndpoint_echoDataObjectResponse'>
+ <part element='ns1:echoDataObjectResponse'
name='echoDataObjectResponse'/>
+ </message>
+ <message name='CustomException'>
+ <part element='ns1:CustomException' name='CustomException'/>
+ </message>
+ <portType name='TestEndpoint'>
+ <operation name='echoDataObject'
parameterOrder='echoDataObject'>
+ <input message='tns:TestEndpoint_echoDataObject'/>
+ <output message='tns:TestEndpoint_echoDataObjectResponse'/>
+ <fault message='tns:CustomException' name='CustomException'/>
+ </operation>
+ </portType>
+ <binding name='TestEndpointBinding' type='tns:TestEndpoint'>
+ <soap:binding style='document'
transport='http://schemas.xmlsoap.org/soap/http'/>
+ <operation name='echoDataObject'>
+ <soap:operation soapAction=''/>
+ <input>
+ <soap:body use='literal'/>
+ </input>
+ <output>
+ <soap:body use='literal'/>
+ </output>
+ <fault name='CustomException'>
+ <soap:fault name='CustomException' use='literal'/>
+ </fault>
+ </operation>
+ </binding>
+ <service name='TestService'>
+ <port binding='tns:TestEndpointBinding' name='TestEndpointPort'>
+ <soap:address location='REPLACE_WITH_ACTUAL_URL'/>
+ </port>
+ </service>
+</definitions>
\ No newline at end of file
Property changes on:
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/TestService.wsdl
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added:
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/jaxrpc-mapping.xml
===================================================================
---
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/jaxrpc-mapping.xml 2007-01-13
15:14:17 UTC (rev 1953)
+++
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/jaxrpc-mapping.xml 2007-01-13
15:22:38 UTC (rev 1954)
@@ -0,0 +1,78 @@
+<?xml version='1.0' encoding='UTF-8'?><java-wsdl-mapping
version='1.1'
xmlns='http://java.sun.com/xml/ns/j2ee'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xsi:schemaLocation='http://java.sun.com/xml/ns/j2ee
http://www.ibm.com/webservices/xsd/j2ee_jaxrpc_mapping_1_1.xsd'>
+ <package-mapping>
+ <package-type>org.jboss.test.ws.tools.jbws1231</package-type>
+ <namespaceURI>http://org.jboss.test.ws/jbws1231/type</namespaceURI>
+ </package-mapping>
+ <java-xml-type-mapping>
+ <java-type>org.jboss.test.ws.tools.jbws1231.DataObject</java-type>
+ <root-type-qname
xmlns:typeNS='http://org.jboss.test.ws/jbws1231/type'>typeNS:DataObject</root-type-qname>
+ <qname-scope>complexType</qname-scope>
+ <variable-mapping>
+ <java-variable-name>message</java-variable-name>
+ <xml-element-name>message</xml-element-name>
+ </variable-mapping>
+ <variable-mapping>
+ <java-variable-name>parent</java-variable-name>
+ <xml-element-name>parent</xml-element-name>
+ </variable-mapping>
+ </java-xml-type-mapping>
+ <java-xml-type-mapping>
+
<java-type>org.jboss.test.ws.tools.jbws1231.TestEndpoint_echoDataObject_RequestStruct</java-type>
+ <root-type-qname
xmlns:typeNS='http://org.jboss.test.ws/jbws1231/type'>typeNS:echoDataObject</root-type-qname>
+ <qname-scope>complexType</qname-scope>
+ <variable-mapping>
+ <java-variable-name>dataObject_1</java-variable-name>
+ <xml-element-name>DataObject_1</xml-element-name>
+ </variable-mapping>
+ </java-xml-type-mapping>
+ <java-xml-type-mapping>
+ <java-type>org.jboss.test.ws.tools.jbws1231.CustomException</java-type>
+ <root-type-qname
xmlns:typeNS='http://org.jboss.test.ws/jbws1231/type'>typeNS:CustomException</root-type-qname>
+ <qname-scope>complexType</qname-scope>
+ </java-xml-type-mapping>
+ <java-xml-type-mapping>
+
<java-type>org.jboss.test.ws.tools.jbws1231.TestEndpoint_echoDataObject_ResponseStruct</java-type>
+ <root-type-qname
xmlns:typeNS='http://org.jboss.test.ws/jbws1231/type'>typeNS:echoDataObjectResponse</root-type-qname>
+ <qname-scope>complexType</qname-scope>
+ <variable-mapping>
+ <java-variable-name>result</java-variable-name>
+ <xml-element-name>result</xml-element-name>
+ </variable-mapping>
+ </java-xml-type-mapping>
+ <exception-mapping>
+
<exception-type>org.jboss.test.ws.tools.jbws1231.CustomException</exception-type>
+ <wsdl-message
xmlns:exMsgNS='http://org.jboss.test.ws/jbws1231'>exMsgNS:CustomException</wsdl-message>
+ </exception-mapping>
+ <service-interface-mapping>
+
<service-interface>org.jboss.test.ws.tools.jbws1231.TestService</service-interface>
+ <wsdl-service-name
xmlns:serviceNS='http://org.jboss.test.ws/jbws1231'>serviceNS:TestService</wsdl-service-name>
+ <port-mapping>
+ <port-name>TestEndpointPort</port-name>
+ <java-port-name>TestEndpointPort</java-port-name>
+ </port-mapping>
+ </service-interface-mapping>
+ <service-endpoint-interface-mapping>
+
<service-endpoint-interface>org.jboss.test.ws.tools.jbws1231.TestEndpoint</service-endpoint-interface>
+ <wsdl-port-type
xmlns:portTypeNS='http://org.jboss.test.ws/jbws1231'>portTypeNS:TestEndpoint</wsdl-port-type>
+ <wsdl-binding
xmlns:bindingNS='http://org.jboss.test.ws/jbws1231'>bindingNS:TestEndpointBinding</wsdl-binding>
+ <service-endpoint-method-mapping>
+ <java-method-name>echoDataObject</java-method-name>
+ <wsdl-operation>echoDataObject</wsdl-operation>
+ <wrapped-element/>
+ <method-param-parts-mapping>
+ <param-position>0</param-position>
+ <param-type>org.jboss.test.ws.tools.jbws1231.DataObject</param-type>
+ <wsdl-message-mapping>
+ <wsdl-message
xmlns:wsdlMsgNS='http://org.jboss.test.ws/jbws1231'>wsdlMsgNS:TestEndpoint_echoDataObject</wsdl-message>
+ <wsdl-message-part-name>DataObject_1</wsdl-message-part-name>
+ <parameter-mode>IN</parameter-mode>
+ </wsdl-message-mapping>
+ </method-param-parts-mapping>
+ <wsdl-return-value-mapping>
+
<method-return-value>org.jboss.test.ws.tools.jbws1231.DataObject</method-return-value>
+ <wsdl-message
xmlns:wsdlMsgNS='http://org.jboss.test.ws/jbws1231'>wsdlMsgNS:TestEndpoint_echoDataObjectResponse</wsdl-message>
+ <wsdl-message-part-name>result</wsdl-message-part-name>
+ </wsdl-return-value-mapping>
+ </service-endpoint-method-mapping>
+ </service-endpoint-interface-mapping>
+</java-wsdl-mapping>
\ No newline at end of file
Property changes on:
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/jaxrpc-mapping.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added:
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/wstools-config.xml
===================================================================
---
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/wstools-config.xml 2007-01-13
15:14:17 UTC (rev 1953)
+++
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/wstools-config.xml 2007-01-13
15:22:38 UTC (rev 1954)
@@ -0,0 +1,14 @@
+<configuration
xmlns="http://www.jboss.org/jbossws-tools"
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://www.jboss.org/jbossws-tools
http://www.jboss.org/jbossws-tools/schema/jbossws-tool_1_0.xsd">
+
+ <java-wsdl>
+ <service name="TestService"
+ endpoint="org.jboss.test.ws.tools.jbws1231.TestEndpoint"
style="document" />
+ <namespaces target-namespace="http://org.jboss.test.ws/jbws1231"
+ type-namespace="http://org.jboss.test.ws/jbws1231/type" />
+ <mapping file="jaxrpc-mapping.xml" />
+ <webservices servlet-link="TestService"/>
+ </java-wsdl>
+
+</configuration>
\ No newline at end of file
Property changes on:
branches/dlofthouse/JBWS-1231/jbossws-tests/src/main/resources/tools/jbws1231/wstools-config.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF