Author: darran.lofthouse(a)jboss.com
Date: 2007-01-15 08:25:57 -0500 (Mon, 15 Jan 2007)
New Revision: 1965
Added:
branches/jbossws-1.0.4.GA_JBWS-1454/docs/Patch Instructions.txt
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/java/org/jboss/test/ws/tools/jbws1441/
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/java/org/jboss/test/ws/tools/jbws1441/JBWS1441TestCase.java
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/AbstractType.java
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/Person.java
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/PhoneBook.wsdl
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/PhoneBook_PortType.java
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/TelephoneNumber.java
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/jaxrpc-mapping.xml
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/wstools-config.xml
Removed:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/java/org/jboss/test/ws/tools/jbws1441/JBWS1441TestCase.java
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/AbstractType.java
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/Person.java
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/PhoneBook.wsdl
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/PhoneBook_PortType.java
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/TelephoneNumber.java
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/jaxrpc-mapping.xml
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/wstools-config.xml
Modified:
branches/jbossws-1.0.4.GA_JBWS-1454/src/main/java/org/jboss/ws/tools/XSDTypeToJava.java
Log:
JBWS-1454 Complex type defined with complexContent only last element is in the generated
java class if base type is empty.
Added: branches/jbossws-1.0.4.GA_JBWS-1454/docs/Patch Instructions.txt
===================================================================
--- branches/jbossws-1.0.4.GA_JBWS-1454/docs/Patch Instructions.txt 2007-01-15 12:52:39
UTC (rev 1964)
+++ branches/jbossws-1.0.4.GA_JBWS-1454/docs/Patch Instructions.txt 2007-01-15 13:25:57
UTC (rev 1965)
@@ -0,0 +1,51 @@
+PATCH NAME:
+ JBWS-1454
+PRODUCT NAME:
+ JBoss WS
+VERSION:
+ 1.0.4.GA
+SHORT DESCRIPTION:
+ This patch addresses a number of issues identified with wstools since the JBossWS
1.0.4.GA release.
+LONG DESCRIPTION:
+ The mapping of anonymous types is not consitent across the generated source and
the generated mapping file when
+ using wsdl to java, this patch incorporates the fix for this.
+
+
http://jira.jboss.com/jira/browse/JBWS-1079
+
+ A lot of errors are reported when using wsdl to java with JBossWS 1.0.4.GA with
wrapped parameter style, this patch
+ incorporates the fixes implemented as part of the following task: -
+
+
http://jira.jboss.com/jira/browse/JBWS-1260
+
+ Also when using java to wsdl if an array is defined with indexed accessors it is
rejected even though non-indexed
+ access has been made available.
+
+
http://jira.jboss.com/jira/browse/JBWS-1428
+
+ WSDL to Java - Complex type defined with complexContent only last element is in
the generated java class
+ if base type is empty
+
+
http://jira.jboss.com/jira/browse/JBWS-1441
+MANUAL INSTALL INSTRUCTIONS:
+ If you require the Java 1.4 version: -
+ 1.) Copy lib/jbossws14-client.jar to $JBOSS_HOME/client/
+ 2.) Unzip lib/jbossws14.sar to $JBOSS_HOME/server/{configuration}/deploy/
+
+ If you require the Java 5.0 version: -
+ 1.) Copy lib/jbossws-client.jar to $JBOSS_HOME/client/
+ 2.) Unzip lib/jbossws.sar to $JBOSS_HOME/server/{configuration}/deploy/
+
+ You need to manually replace the jboss-xml-binding.jar in the $JBOSS_HOME/client
and $JBOSS_HOME/lib directories.
+ The compatible release can be found here:
http://repository.jboss.com/jboss/jbossxb/1.0.0.CR7
+COMPATIBILITY:
+ None
+DEPENDENCIES:
+ JBossAS 4.0.5.GA
+SUPERSEDES:
+ JBWS-1440
+SUPERSEDED BY:
+ None
+CREATOR:
+ Darran Lofthouse
+DATE:
+ 15th January 2007
\ No newline at end of file
Property changes on: branches/jbossws-1.0.4.GA_JBWS-1454/docs/Patch Instructions.txt
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Modified:
branches/jbossws-1.0.4.GA_JBWS-1454/src/main/java/org/jboss/ws/tools/XSDTypeToJava.java
===================================================================
---
branches/jbossws-1.0.4.GA_JBWS-1454/src/main/java/org/jboss/ws/tools/XSDTypeToJava.java 2007-01-15
12:52:39 UTC (rev 1964)
+++
branches/jbossws-1.0.4.GA_JBWS-1454/src/main/java/org/jboss/ws/tools/XSDTypeToJava.java 2007-01-15
13:25:57 UTC (rev 1965)
@@ -310,7 +310,18 @@
return;
}
- XSParticle xspar = (XSParticle)xparts.item(length - 1);
+ XSParticle xspar;
+
+ if (baseType instanceof XSComplexTypeDefinition &&
((XSComplexTypeDefinition)baseType).getContentType() ==
XSComplexTypeDefinition.CONTENTTYPE_EMPTY)
+ {
+ // If the base type is empty there will not have been a particle to
ignore.
+ xspar = xsparticle;
+ }
+ else
+ {
+ xspar = (XSParticle)xparts.item(length - 1);
+ }
+
XSTerm xsparTerm = xspar.getTerm();
if (xsparTerm instanceof XSModelGroup)
{
@@ -319,6 +330,7 @@
}
else if (xsparTerm instanceof XSElementDeclaration)
vars.addAll(createVARforXSElementDeclaration(xsparTerm,
schemautils.isArrayType(xspar), schema, type));
+
}
}
}
Copied: branches/jbossws-1.0.4.GA_JBWS-1454/src/test/java/org/jboss/test/ws/tools/jbws1441
(from rev 1892, trunk/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1441)
Deleted:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/java/org/jboss/test/ws/tools/jbws1441/JBWS1441TestCase.java
===================================================================
---
trunk/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1441/JBWS1441TestCase.java 2007-01-10
12:51:04 UTC (rev 1892)
+++
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/java/org/jboss/test/ws/tools/jbws1441/JBWS1441TestCase.java 2007-01-15
13:25:57 UTC (rev 1965)
@@ -1,65 +0,0 @@
-/*
- * 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.jbws1441;
-
-import java.io.File;
-
-import org.jboss.test.ws.JBossWSTest;
-import org.jboss.test.ws.tools.fixture.JBossSourceComparator;
-import org.jboss.test.ws.tools.validation.JaxrpcMappingValidator;
-import org.jboss.ws.tools.WSTools;
-
-/**
- *
- * @author darran.lofthouse(a)jboss.com
- * @since 5 Jan 2007
- */
-public class JBWS1441TestCase extends JBossWSTest
-{
-
- private static final String resourceDir = "resources/tools/jbws1441";
- private static final String toolsDir = "tools/jbws1441";
-
- public void testGenerate() throws Exception
- {
- String[] args = new String[] { "-dest", toolsDir, "-config",
resourceDir + "/wstools-config.xml" };
- new WSTools().generate(args);
-
- compareSource("AbstractType.java");
- compareSource("Person.java");
- compareSource("PhoneBook_PortType.java");
- compareSource("TelephoneNumber.java");
-
- JaxrpcMappingValidator mappingValidator = new JaxrpcMappingValidator();
- mappingValidator.validate(resourceDir + "/jaxrpc-mapping.xml", toolsDir +
"/jaxrpc-mapping.xml");
- }
-
- private static void compareSource(final String fileName) throws Exception
- {
- File expected = new File(resourceDir + "/" + fileName);
- File generated = new File(toolsDir + "/org/jboss/test/ws/jbws1441/" +
fileName);
-
- JBossSourceComparator sc = new JBossSourceComparator(expected, generated);
- sc.validate();
- sc.validateImports();
- }
-}
Copied:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/java/org/jboss/test/ws/tools/jbws1441/JBWS1441TestCase.java
(from rev 1892,
trunk/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1441/JBWS1441TestCase.java)
Copied: branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441 (from rev
1892, trunk/jbossws-tests/src/main/resources/tools/jbws1441)
Deleted:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/AbstractType.java
===================================================================
--- trunk/jbossws-tests/src/main/resources/tools/jbws1441/AbstractType.java 2007-01-10
12:51:04 UTC (rev 1892)
+++
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/AbstractType.java 2007-01-15
13:25:57 UTC (rev 1965)
@@ -1,13 +0,0 @@
-// This class was generated by the JAXRPC SI, do not edit.
-// Contents subject to change without notice.
-// JAX-RPC Standard Implementation (1.1.3, build R1)
-// Generated source version: 1.1.3
-
-package org.jboss.test.ws.jbws1441;
-
-
-public class AbstractType {
-
- public AbstractType() {
- }
-}
Copied:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/AbstractType.java
(from rev 1892, trunk/jbossws-tests/src/main/resources/tools/jbws1441/AbstractType.java)
Deleted:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/Person.java
===================================================================
--- trunk/jbossws-tests/src/main/resources/tools/jbws1441/Person.java 2007-01-10 12:51:04
UTC (rev 1892)
+++
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/Person.java 2007-01-15
13:25:57 UTC (rev 1965)
@@ -1,36 +0,0 @@
-// This class was generated by the JAXRPC SI, do not edit.
-// Contents subject to change without notice.
-// JAX-RPC Standard Implementation (1.1.3, build R1)
-// Generated source version: 1.1.3
-
-package org.jboss.test.ws.jbws1441;
-
-
-public class Person extends org.jboss.test.ws.jbws1441.AbstractType {
- protected java.lang.String firstName;
- protected java.lang.String surname;
-
- public Person() {
- }
-
- public Person(java.lang.String firstName, java.lang.String surname) {
- this.firstName = firstName;
- this.surname = surname;
- }
-
- public java.lang.String getFirstName() {
- return firstName;
- }
-
- public void setFirstName(java.lang.String firstName) {
- this.firstName = firstName;
- }
-
- public java.lang.String getSurname() {
- return surname;
- }
-
- public void setSurname(java.lang.String surname) {
- this.surname = surname;
- }
-}
Copied: branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/Person.java
(from rev 1892, trunk/jbossws-tests/src/main/resources/tools/jbws1441/Person.java)
Deleted:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/PhoneBook.wsdl
===================================================================
--- trunk/jbossws-tests/src/main/resources/tools/jbws1441/PhoneBook.wsdl 2007-01-10
12:51:04 UTC (rev 1892)
+++
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/PhoneBook.wsdl 2007-01-15
13:25:57 UTC (rev 1965)
@@ -1,66 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook'
targetNamespace='http://test.jboss.org/ws/jbws1441'
xmlns='http://schemas.xmlsoap.org/wsdl/'
xmlns:ns1='http://test.jboss.org/ws/jbws1441/types'
xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
xmlns:tns='http://test.jboss.org/ws/jbws1441'
xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema
targetNamespace='http://test.jboss.org/ws/jbws1441/types'
xmlns='http://www.w3.org/2001/XMLSchema'
xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/'
xmlns:tns='http://test.jboss.org/ws/jbws1441/types'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='AbstractType'>
- <sequence/>
- </complexType>
-
- <complexType name='Person'>
- <complexContent>
- <extension base='tns:AbstractType'>
- <sequence>
- <element name='firstName' nillable='true'
type='string'/>
- <element name='surname' nillable='true'
type='string'/>
- </sequence>
- </extension>
- </complexContent>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <complexContent>
- <extension base='tns:AbstractType'>
- <sequence>
- <element name='areaCode' nillable='true'
type='string'/>
- <element name='number' nillable='true'
type='string'/>
- </sequence>
- </extension>
- </complexContent>
- </complexType>
-
- <element name='lookup' type='tns:Person'/>
- <element name='lookupResponse' type='tns:TelephoneNumber'/>
-
- </schema>
- </types>
- <message name='PhoneBook_lookup'>
- <part element='ns1:lookup' name='parameters'/>
- </message>
- <message name='PhoneBook_lookupResponse'>
- <part element='ns1:lookupResponse' name='result'/>
- </message>
- <portType name='PhoneBook'>
- <operation name='lookup'>
- <input message='tns:PhoneBook_lookup'/>
- <output message='tns:PhoneBook_lookupResponse'/>
- </operation>
- </portType>
- <binding name='PhoneBookBinding' type='tns:PhoneBook'>
- <soap:binding style='document'
transport='http://schemas.xmlsoap.org/soap/http'/>
- <operation name='lookup'>
- <soap:operation soapAction=''/>
- <input>
- <soap:body use='literal'/>
- </input>
- <output>
- <soap:body use='literal'/>
- </output>
- </operation>
- </binding>
- <service name='PhoneBook'>
- <port binding='tns:PhoneBookBinding' name='PhoneBookPort'>
- <soap:address location='REPLACE_WITH_ACTUAL_URL'/>
- </port>
- </service>
-</definitions>
\ No newline at end of file
Copied:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/PhoneBook.wsdl (from
rev 1892, trunk/jbossws-tests/src/main/resources/tools/jbws1441/PhoneBook.wsdl)
Deleted:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/PhoneBook_PortType.java
===================================================================
---
trunk/jbossws-tests/src/main/resources/tools/jbws1441/PhoneBook_PortType.java 2007-01-10
12:51:04 UTC (rev 1892)
+++
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/PhoneBook_PortType.java 2007-01-15
13:25:57 UTC (rev 1965)
@@ -1,11 +0,0 @@
-// This class was generated by the JAXRPC SI, do not edit.
-// Contents subject to change without notice.
-// JAX-RPC Standard Implementation (1.1.3, build R1)
-// Generated source version: 1.1.3
-
-package org.jboss.test.ws.jbws1441;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1441.TelephoneNumber
lookup(org.jboss.test.ws.jbws1441.Person parameters) throws
- java.rmi.RemoteException;
-}
Copied:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/PhoneBook_PortType.java
(from rev 1892,
trunk/jbossws-tests/src/main/resources/tools/jbws1441/PhoneBook_PortType.java)
Deleted:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/TelephoneNumber.java
===================================================================
--- trunk/jbossws-tests/src/main/resources/tools/jbws1441/TelephoneNumber.java 2007-01-10
12:51:04 UTC (rev 1892)
+++
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/TelephoneNumber.java 2007-01-15
13:25:57 UTC (rev 1965)
@@ -1,36 +0,0 @@
-// This class was generated by the JAXRPC SI, do not edit.
-// Contents subject to change without notice.
-// JAX-RPC Standard Implementation (1.1.3, build R1)
-// Generated source version: 1.1.3
-
-package org.jboss.test.ws.jbws1441;
-
-
-public class TelephoneNumber extends org.jboss.test.ws.jbws1441.AbstractType {
- protected java.lang.String areaCode;
- protected java.lang.String number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(java.lang.String areaCode, java.lang.String number) {
- this.areaCode = areaCode;
- this.number = number;
- }
-
- public java.lang.String getAreaCode() {
- return areaCode;
- }
-
- public void setAreaCode(java.lang.String areaCode) {
- this.areaCode = areaCode;
- }
-
- public java.lang.String getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String number) {
- this.number = number;
- }
-}
Copied:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/TelephoneNumber.java
(from rev 1892,
trunk/jbossws-tests/src/main/resources/tools/jbws1441/TelephoneNumber.java)
Deleted:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/jaxrpc-mapping.xml
===================================================================
--- trunk/jbossws-tests/src/main/resources/tools/jbws1441/jaxrpc-mapping.xml 2007-01-10
12:51:04 UTC (rev 1892)
+++
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/jaxrpc-mapping.xml 2007-01-15
13:25:57 UTC (rev 1965)
@@ -1,68 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<java-wsdl-mapping
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.1"
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.jbws1441</package-type>
- <
namespaceURI>http://test.jboss.org/ws/jbws1441</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1441</package-type>
- <
namespaceURI>http://test.jboss.org/ws/jbws1441/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1441.TelephoneNumber</java-type>
- <root-type-qname
xmlns:typeNS="http://test.jboss.org/ws/jbws1441/types">typeN...
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>areaCode</java-variable-name>
- <xml-element-name>areaCode</xml-element-name>
- </variable-mapping>
- <variable-mapping>
- <java-variable-name>number</java-variable-name>
- <xml-element-name>number</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1441.Person</java-type>
- <root-type-qname
xmlns:typeNS="http://test.jboss.org/ws/jbws1441/types">typeN...
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>firstName</java-variable-name>
- <xml-element-name>firstName</xml-element-name>
- </variable-mapping>
- <variable-mapping>
- <java-variable-name>surname</java-variable-name>
- <xml-element-name>surname</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <service-interface-mapping>
-
<service-interface>org.jboss.test.ws.jbws1441.PhoneBook_Service</service-interface>
- <wsdl-service-name
xmlns:serviceNS="http://test.jboss.org/ws/jbws1441">serviceN...
- <port-mapping>
- <port-name>PhoneBookPort</port-name>
- <java-port-name>PhoneBookPort</java-port-name>
- </port-mapping>
- </service-interface-mapping>
- <service-endpoint-interface-mapping>
-
<service-endpoint-interface>org.jboss.test.ws.jbws1441.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type
xmlns:portTypeNS="http://test.jboss.org/ws/jbws1441">portTyp...
- <wsdl-binding
xmlns:bindingNS="http://test.jboss.org/ws/jbws1441">bindingN...
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>org.jboss.test.ws.jbws1441.Person</param-type>
- <wsdl-message-mapping>
- <wsdl-message
xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1441">wsdlMsgN...
- <wsdl-message-part-name>parameters</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.jbws1441.TelephoneNumber</method-return-value>
- <wsdl-message
xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1441">wsdlMsgN...
- <wsdl-message-part-name>result</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/jaxrpc-mapping.xml
(from rev 1892, trunk/jbossws-tests/src/main/resources/tools/jbws1441/jaxrpc-mapping.xml)
Deleted:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/wstools-config.xml
===================================================================
--- trunk/jbossws-tests/src/main/resources/tools/jbws1441/wstools-config.xml 2007-01-10
12:51:04 UTC (rev 1892)
+++
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/wstools-config.xml 2007-01-15
13:25:57 UTC (rev 1965)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1441/PhoneBook.wsdl"
parameter-style="bare">
- <mapping file="jaxrpc-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied:
branches/jbossws-1.0.4.GA_JBWS-1454/src/test/resources/tools/jbws1441/wstools-config.xml
(from rev 1892, trunk/jbossws-tests/src/main/resources/tools/jbws1441/wstools-config.xml)