JBossWS SVN: r1876 - trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/jbws1190
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-01-09 10:21:39 -0500 (Tue, 09 Jan 2007)
New Revision: 1876
Modified:
trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/jbws1190/TestEndpointImpl.java
Log:
javadoc
Modified: trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/jbws1190/TestEndpointImpl.java
===================================================================
--- trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/jbws1190/TestEndpointImpl.java 2007-01-09 15:04:03 UTC (rev 1875)
+++ trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/jbws1190/TestEndpointImpl.java 2007-01-09 15:21:39 UTC (rev 1876)
@@ -35,7 +35,10 @@
import org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory;
/**
- *
+ * [JBWS-1190] - WSDL generated for JSR-181 POJO does not take 'transport-guarantee' in web.xml into account
+ *
+ * http://jira.jboss.org/jira/browse/JBWS-1190
+ *
* @author darran.lofthouse(a)jboss.com
* @since 19-October-2006
*/
18 years
JBossWS SVN: r1875 - in trunk/jbossws-tests/src/main: java/org/jboss/test/ws/tools java/org/jboss/test/ws/tools/jbws1427 resources/tools resources/tools/jbws1427
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-01-09 10:04:03 -0500 (Tue, 09 Jan 2007)
New Revision: 1875
Added:
trunk/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1427/
trunk/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1427/JBWS1427TestCase.java
trunk/jbossws-tests/src/main/resources/tools/jbws1427/
trunk/jbossws-tests/src/main/resources/tools/jbws1427/ProcessClaim.wsdl
Log:
[JBWS-1427] - NPE in WSDL11Reader.processOperationInput
More to come
Added: trunk/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1427/JBWS1427TestCase.java
===================================================================
--- trunk/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1427/JBWS1427TestCase.java 2007-01-09 14:28:41 UTC (rev 1874)
+++ trunk/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1427/JBWS1427TestCase.java 2007-01-09 15:04:03 UTC (rev 1875)
@@ -0,0 +1,298 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jbws1427;
+
+import java.io.File;
+
+import org.jboss.test.ws.JBossWSTest;
+import org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory;
+
+/**
+ * Test for a port name which ends 'PortType'
+ *
+ * @author <a href="mailto:darran.lofthouse@jboss.com">Darran Lofthouse</a>
+ * @since 27th September 2006
+ */
+public class JBWS1427TestCase extends JBossWSTest
+{
+ public final void testPortTypePort() throws Exception
+ {
+ WSDLDefinitionsFactory factory = WSDLDefinitionsFactory.newInstance();
+ File wsdlFile = new File("resources/tools/jbws1427/ProcessClaim.wsdl");
+ factory.parse(wsdlFile.toURL());
+
+ }
+
+/*
+Hi,
+
+I'm using Jboss 4.0.4 GA on Windows XP and Redhat Linux. I'm trying to deploy an EJB 2 SLSB as a web service. I get a NullPointerException
+on deployment.
+
+My SEI:
+Code:
+
+package za.co.testws.interfaces;
+import java.rmi.*;
+import za.co.testws.services.*;
+
+public interface RequestService extends Remote {
+ public Message processClaim(Message messsge) throws RemoteException;
+}
+
+
+
+SEI Implementation:
+Code:
+
+package za.co.testws.services;
+import java.rmi.*;
+import javax.ejb.*;
+import org.apache.log4j.*;
+import za.co.testws.interfaces.*;
+
+public class RequestServiceEJB implements SessionBean, RequestService {
+ private Logger logger = Logger.getLogger(this.getClass());
+
+ public Message processClaim(Message message) throws RemoteException {
+ logger.info("Executing business logic:" + message);
+ return message;
+ }
+// including the normal ejbActivate, ejbCreate etc with empty implementations
+}
+
+package za.co.testws.services;
+
+public class Message {
+ private String name;
+ private Integer status;
+
+ public Message() {}
+ public Message(String name, Integer status) {
+ setName(name);
+ setStatus(status);
+ }
+ // the getters & setters
+}
+
+
+
+
+The WSDL file: (generated by wscompile from jwsdp 2)
+Code:
+
+<?xml version="1.0" encoding="UTF-8"?>
+<definitions name="processClaim"
+ targetNamespace="http://za.co.testws.interfaces"
+ xmlns:tns="http://za.co.testws.interfaces"
+ xmlns="http://schemas.xmlsoap.org/wsdl/"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+ xmlns:ns2="http://za.co.testws.interfaces/types">
+ <types>
+ <schema targetNamespace="http://za.co.testws.interfaces/types"
+ xmlns:tns="http://za.co.testws.interfaces/types"
+ xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
+ xmlns="http://www.w3.org/2001/XMLSchema">
+ <import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
+ <complexType name="Message">
+ <sequence>
+ <element name="name" type="string" />
+ <element name="status" type="soap11-enc:int" />
+ </sequence>
+ </complexType>
+ </schema>
+ </types>
+ <message name="RequestService_processClaim">
+ <part name="Message_1" type="ns2:Message" />
+ </message>
+ <message name="RequestService_processClaimResponse">
+ <part name="result" type="ns2:Message" />
+ </message>
+ <portType name="RequestServicePort">
+ <operation name="processClaim" parameterOrder="Message_1">
+ <input message="tns:RequestService_processClaim" />
+ <output message="tns:RequestService_processClaimResponse" />
+ </operation>
+ </portType>
+ <binding name="RequestServiceBinding" type="tns:RequestService">
+ <soap:binding transport="http://schemas.xmlsoap.org/soap/http"
+ style="document" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"/>
+ <operation name="processClaim">
+ <soap:operation soapAction="http://za.co.testws.interfaces/processClaim"
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"/>
+ <input>
+ <soap:body use="literal" namespace="http://za.co.testws.interfaces" />
+ </input>
+ <output>
+ <soap:body use="literal" namespace="http://za.co.testws.interfaces" />
+ </output>
+ </operation>
+ </binding>
+ <service name="ProcessClaim">
+ <port name="RequestServicePort"
+ binding="tns:RequestServiceBinding">
+ <soap:address location="REPLACE_WITH_ACTUAL_URL" />
+ </port>
+ </service>
+</definitions>
+
+
+
+
+The generated jaxrp-mapping file
+Code:
+
+<?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>za.co.testws.interfaces</package-type>
+ <namespaceURI>http://za.co.testws.interfaces/types</namespaceURI>
+ </package-mapping>
+ <package-mapping>
+ <package-type>za.co.testws.interfaces</package-type>
+ <namespaceURI>http://za.co.testws.interfaces</namespaceURI>
+ </package-mapping>
+ <java-xml-type-mapping>
+ <java-type>za.co.testws.services.Message</java-type>
+ <root-type-qname
+ xmlns:typeNS="http://za.co.testws.interfaces/types">
+ typeNS:Message
+ </root-type-qname>
+ <qname-scope>complexType</qname-scope>
+ <variable-mapping>
+ <java-variable-name>name</java-variable-name>
+ <xml-element-name>name</xml-element-name>
+ </variable-mapping>
+ <variable-mapping>
+ <java-variable-name>status</java-variable-name>
+ <xml-element-name>status</xml-element-name>
+ </variable-mapping>
+ </java-xml-type-mapping>
+ <service-interface-mapping>
+ <service-interface>
+ za.co.testws.interfaces.ProcessClaim
+ </service-interface>
+ <wsdl-service-name
+ xmlns:serviceNS="http://za.co.testws.interfaces">
+ serviceNS:ProcessClaim
+ </wsdl-service-name>
+ <port-mapping>
+ <port-name>RequestServicePort</port-name>
+ <java-port-name>RequestServicePort</java-port-name>
+ </port-mapping>
+ </service-interface-mapping>
+ <service-endpoint-interface-mapping>
+ <service-endpoint-interface>
+ za.co.testws.interfaces.RequestService
+ </service-endpoint-interface>
+ <wsdl-port-type xmlns:portTypeNS="http://za.co.testws.interfaces">
+ portTypeNS:RequestService
+ </wsdl-port-type>
+ <wsdl-binding xmlns:bindingNS="http://za.co.testws.interfaces">
+ bindingNS:RequestServiceBinding
+ </wsdl-binding>
+ <service-endpoint-method-mapping>
+ <java-method-name>processClaim</java-method-name>
+ <wsdl-operation>processClaim</wsdl-operation>
+ <method-param-parts-mapping>
+ <param-position>0</param-position>
+ <param-type>za.co.testws.services.Message</param-type>
+ <wsdl-message-mapping>
+ <wsdl-message
+ xmlns:wsdlMsgNS="http://za.co.testws.interfaces">
+ wsdlMsgNS:RequestService_processClaim
+ </wsdl-message>
+ <wsdl-message-part-name>Message_1</wsdl-message-part-name>
+ <parameter-mode>IN</parameter-mode>
+ </wsdl-message-mapping>
+ </method-param-parts-mapping>
+ <wsdl-return-value-mapping>
+ <method-return-value>
+ za.co.testws.services.Message
+ </method-return-value>
+ <wsdl-message
+ xmlns:wsdlMsgNS="http://za.co.testws.interfaces">
+ wsdlMsgNS:RequestService_processClaimResponse
+ </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>
+
+
+
+
+My webservices.xml:
+Code:
+
+<webservices xmlns="http://java.sun.com/xml/ns/j2ee"
+ xmlns:impl="http://com.underworld.crimeportal/ws4ee"
+ 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_web_services_1_1.xsd"
+ version="1.1">
+
+ <webservice-description>
+ <webservice-description-name>RequestServiceEJB</webservice-description-name>
+ <wsdl-file>META-INF/wsdl/processClaim.wsdl</wsdl-file>
+ <jaxrpc-mapping-file>META-INF/jaxrpc-mapping.xml</jaxrpc-mapping-file>
+ <port-component>
+ <port-component-name>RequestService</port-component-name>
+ <wsdl-port>impl:RequestServicePort</wsdl-port>
+ <service-endpoint-interface>za.co.testws.interfaces.RequestService</service-endpoint-interface>
+ <service-impl-bean>
+ <ejb-link>SubmitRequestEJB</ejb-link>
+ </service-impl-bean>
+ </port-component>
+ </webservice-description>
+</webservices>
+
+
+
+
+The ejb-jar.xml
+Code:
+
+<ejb-jar 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://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd"
+ version="2.1">
+ <enterprise-beans>
+ <session>
+ <ejb-name>SubmitRequestEJB</ejb-name>
+ <service-endpoint>za.co.testws.interfaces.RequestService</service-endpoint>
+ <ejb-class>za.co.testws.services.RequestServiceEJB</ejb-class>
+ <session-type>Stateless</session-type>
+ <transaction-type>Container</transaction-type>
+ </session>
+ </enterprise-beans>
+</ejb-jar>
+
+ *
+ */
+}
Property changes on: trunk/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1427/JBWS1427TestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: trunk/jbossws-tests/src/main/resources/tools/jbws1427/ProcessClaim.wsdl
===================================================================
--- trunk/jbossws-tests/src/main/resources/tools/jbws1427/ProcessClaim.wsdl 2007-01-09 14:28:41 UTC (rev 1874)
+++ trunk/jbossws-tests/src/main/resources/tools/jbws1427/ProcessClaim.wsdl 2007-01-09 15:04:03 UTC (rev 1875)
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<definitions name="processClaim"
+ targetNamespace="http://za.co.testws.interfaces"
+ xmlns:tns="http://za.co.testws.interfaces"
+ xmlns="http://schemas.xmlsoap.org/wsdl/"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+ xmlns:ns2="http://za.co.testws.interfaces/types">
+ <types>
+ <schema targetNamespace="http://za.co.testws.interfaces/types"
+ xmlns:tns="http://za.co.testws.interfaces/types"
+ xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
+ xmlns="http://www.w3.org/2001/XMLSchema">
+ <import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
+ <complexType name="Message">
+ <sequence>
+ <element name="name" type="string" />
+ <element name="status" type="soap11-enc:int" />
+ </sequence>
+ </complexType>
+ </schema>
+ </types>
+ <message name="RequestService_processClaim">
+ <part name="Message_1" type="ns2:Message" />
+ </message>
+ <message name="RequestService_processClaimResponse">
+ <part name="result" type="ns2:Message" />
+ </message>
+ <portType name="RequestServicePort">
+ <operation name="processClaim" parameterOrder="Message_1">
+ <input message="tns:RequestService_processClaim" />
+ <output message="tns:RequestService_processClaimResponse" />
+ </operation>
+ </portType>
+ <binding name="RequestServiceBinding" type="tns:RequestService">
+ <soap:binding transport="http://schemas.xmlsoap.org/soap/http"
+ style="document" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"/>
+ <operation name="processClaim">
+ <soap:operation soapAction="http://za.co.testws.interfaces/processClaim"
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"/>
+ <input>
+ <soap:body use="literal" namespace="http://za.co.testws.interfaces" />
+ </input>
+ <output>
+ <soap:body use="literal" namespace="http://za.co.testws.interfaces" />
+ </output>
+ </operation>
+ </binding>
+ <service name="ProcessClaim">
+ <port name="RequestServicePort"
+ binding="tns:RequestServiceBinding">
+ <soap:address location="REPLACE_WITH_ACTUAL_URL" />
+ </port>
+ </service>
+</definitions>
\ No newline at end of file
Property changes on: trunk/jbossws-tests/src/main/resources/tools/jbws1427/ProcessClaim.wsdl
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
18 years
JBossWS SVN: r1874 - in trunk: integration-jboss50 integration-jboss50/src/main/java/org/jboss/ws/integration/jboss50 jbossws-core/src/main/java/org/jboss/ws/core/jaxws jbossws-core/src/main/java/org/jboss/ws/core/server jbossws-core/src/main/java/org/jboss/ws/metadata/builder/jaxws jbossws-tests/ant-import jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context jbossws-tests/src/main/resources/jaxws/context/WEB-INF
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-01-09 09:28:41 -0500 (Tue, 09 Jan 2007)
New Revision: 1874
Added:
trunk/jbossws-core/src/main/java/org/jboss/ws/core/jaxws/WebServiceContextInjector.java
trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/ContextEJBTestCase.java
trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/ContextJSETestCase.java
trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/EndpointEJB.java
trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/EndpointJSE.java
Removed:
trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/MessageContextInjector.java
trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/EndpointBean.java
trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/WebServiceContextTestCase.java
Modified:
trunk/integration-jboss50/.classpath
trunk/integration-jboss50/src/main/java/org/jboss/ws/integration/jboss50/ServiceEndpointInvokerEJB3.java
trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/ServiceEndpointInvokerJSE.java
trunk/jbossws-core/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSEndpointMetaDataBuilder.java
trunk/jbossws-core/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSWebServiceMetaDataBuilder.java
trunk/jbossws-tests/ant-import/build-jars-jaxws.xml
trunk/jbossws-tests/src/main/resources/jaxws/context/WEB-INF/web.xml
Log:
[JBWS-1443] getMessageContext Not Implemented\n More to come
Modified: trunk/integration-jboss50/.classpath
===================================================================
--- trunk/integration-jboss50/.classpath 2007-01-09 13:53:23 UTC (rev 1873)
+++ trunk/integration-jboss50/.classpath 2007-01-09 14:28:41 UTC (rev 1874)
@@ -4,7 +4,7 @@
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/jboss-5.0.x"/>
<classpathentry combineaccessrules="false" kind="src" path="/jbossws-core"/>
- <classpathentry kind="lib" path="/build/thirdparty/ejb3.deployer/jboss-ejb3.jar"/>
+ <classpathentry kind="lib" path="/build/thirdparty/ejb3.deployer/jboss-ejb3.jar" sourcepath="/home/tdiesler/svn/jbossas/trunk/ejb3/src/main"/>
<classpathentry kind="lib" path="/build/thirdparty/jboss-deployers.jar"/>
<classpathentry kind="lib" path="/build/thirdparty/jboss-vfs.jar"/>
<classpathentry kind="lib" path="/build/thirdparty/ant.jar"/>
Modified: trunk/integration-jboss50/src/main/java/org/jboss/ws/integration/jboss50/ServiceEndpointInvokerEJB3.java
===================================================================
--- trunk/integration-jboss50/src/main/java/org/jboss/ws/integration/jboss50/ServiceEndpointInvokerEJB3.java 2007-01-09 13:53:23 UTC (rev 1873)
+++ trunk/integration-jboss50/src/main/java/org/jboss/ws/integration/jboss50/ServiceEndpointInvokerEJB3.java 2007-01-09 14:28:41 UTC (rev 1874)
@@ -29,14 +29,19 @@
import javax.xml.rpc.soap.SOAPFaultException;
import org.jboss.aop.Dispatcher;
+import org.jboss.ejb3.BaseSessionContext;
import org.jboss.ejb3.stateless.StatelessContainer;
import org.jboss.logging.Logger;
import org.jboss.ws.WSException;
+import org.jboss.ws.core.CommonMessageContext;
import org.jboss.ws.core.EndpointInvocation;
+import org.jboss.ws.core.jaxrpc.handler.SOAPMessageContextJAXRPC;
+import org.jboss.ws.core.jaxws.handler.SOAPMessageContextJAXWS;
import org.jboss.ws.core.server.AbstractServiceEndpointInvoker;
import org.jboss.ws.core.server.ServiceEndpointInfo;
import org.jboss.ws.core.server.ServiceEndpointInvoker;
import org.jboss.ws.core.server.UnifiedDeploymentInfo;
+import org.jboss.ws.core.soap.MessageContextAssociation;
import org.jboss.ws.core.utils.ObjectNameFactory;
/**
@@ -91,24 +96,10 @@
}
/** Invoke an instance of the SEI implementation bean */
- public void invokeServiceEndpoint(ServiceEndpointInfo seInfo, Object seiImpl, EndpointInvocation epInv) throws SOAPFaultException, Exception
+ public void invokeServiceEndpoint(ServiceEndpointInfo seInfo, Object beanInstance, EndpointInvocation epInv) throws SOAPFaultException, Exception
{
log.debug("invokeServiceEndpoint: " + epInv.getJavaMethod().getName());
- /* [FIXME] how to do this for EJB3
-
- // these are provided by the ServerLoginHandler
- Principal principal = SecurityAssociation.getPrincipal();
- Object credential = SecurityAssociation.getCredential();
-
- CommonMessageContext msgContext = MessageContextAssociation.getMessageContext();
-
- Invocation inv = new Invocation(null, method, args, null, principal, credential);
- inv.setValue(InvocationKey.SOAP_MESSAGE_CONTEXT, msgContext);
- inv.setValue(InvocationKey.SOAP_MESSAGE, msgContext.getMessage());
- inv.setType(InvocationType.SERVICE_ENDPOINT);
- */
-
// invoke on the container
try
{
@@ -118,11 +109,33 @@
Dispatcher dispatcher = Dispatcher.singleton;
StatelessContainer container = (StatelessContainer)dispatcher.getRegistered(objectName.getCanonicalName());
+ Class beanClass = container.getBeanClass();
+
+ SOAPMessageContextJAXWS jaxwsMessageContext;
+ SOAPMessageContextJAXRPC jaxrpcMessageContext;
+ CommonMessageContext msgContext = MessageContextAssociation.peekMessageContext();
+ if (msgContext instanceof SOAPMessageContextJAXRPC)
+ {
+ jaxrpcMessageContext = (SOAPMessageContextJAXRPC)msgContext;
+ jaxwsMessageContext = new SOAPMessageContextJAXWS(msgContext);
+ }
+ if (msgContext instanceof SOAPMessageContextJAXWS)
+ {
+ jaxwsMessageContext = (SOAPMessageContextJAXWS)msgContext;
+ jaxrpcMessageContext = new SOAPMessageContextJAXRPC(msgContext);
+ }
+
+ // WebServiceContext injection
+ // beanInstance = TODO get the bean instance somehow
+ // WebServiceContextInjector.injectContext(beanInstance, (SOAPMessageContextJAXWS)msgContext);
+
+ // MessageContext injection
+ //BaseSessionContext ejbContext = TODO get the bean base context somehow
+ //ejbContext.setMessageContext(jaxrpcMessageContext);
- Class implClass = container.getBeanClass();
- Method implMethod = getImplMethod(implClass, seiMethod);
-
+ Method implMethod = getImplMethod(beanClass, seiMethod);
Object retObj = container.localInvoke(implMethod, args);
+
epInv.setReturnValue(retObj);
}
catch (Throwable th)
Added: trunk/jbossws-core/src/main/java/org/jboss/ws/core/jaxws/WebServiceContextInjector.java
===================================================================
--- trunk/jbossws-core/src/main/java/org/jboss/ws/core/jaxws/WebServiceContextInjector.java 2007-01-09 13:53:23 UTC (rev 1873)
+++ trunk/jbossws-core/src/main/java/org/jboss/ws/core/jaxws/WebServiceContextInjector.java 2007-01-09 14:28:41 UTC (rev 1874)
@@ -0,0 +1,84 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.ws.core.jaxws;
+
+// $Id$
+
+import java.lang.reflect.Field;
+import java.lang.reflect.Method;
+
+import javax.annotation.Resource;
+import javax.xml.ws.WebServiceContext;
+import javax.xml.ws.handler.MessageContext;
+
+import org.jboss.logging.Logger;
+import org.jboss.ws.core.jaxws.WebServiceContextImpl;
+
+/**
+ * Inject the JAXWS WebServiceContext
+ *
+ * @author Thomas.Diesler(a)jboss.org
+ * @since 04-Jan-2006
+ */
+public class WebServiceContextInjector
+{
+ // provide logging
+ private static Logger log = Logger.getLogger(WebServiceContextInjector.class);
+
+ public static void injectContext(Object epImpl, MessageContext msgContext)
+ {
+ WebServiceContextImpl webServiceContext = new WebServiceContextImpl(msgContext);
+ try
+ {
+ // scan fields that are marked with @Resource
+ Field[] fields = epImpl.getClass().getFields();
+ for (Field field : fields)
+ {
+ Class type = field.getType();
+ if (type == WebServiceContext.class && field.isAnnotationPresent(Resource.class))
+ {
+ field.set(epImpl, webServiceContext);
+ }
+ }
+
+ // scan methods that are marked with @Resource
+ Method[] methods = epImpl.getClass().getMethods();
+ for (Method method : methods)
+ {
+ Class[] paramTypes = method.getParameterTypes();
+ if (paramTypes.length == 1 && paramTypes[0] == WebServiceContext.class && method.isAnnotationPresent(Resource.class))
+ {
+ method.invoke(epImpl, new Object[] { webServiceContext });
+
+ }
+ }
+ }
+ catch (RuntimeException rte)
+ {
+ throw rte;
+ }
+ catch (Exception ex)
+ {
+ log.warn("Cannot inject WebServiceContext", ex);
+ }
+ }
+}
Property changes on: trunk/jbossws-core/src/main/java/org/jboss/ws/core/jaxws/WebServiceContextInjector.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Deleted: trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/MessageContextInjector.java
===================================================================
--- trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/MessageContextInjector.java 2007-01-09 13:53:23 UTC (rev 1873)
+++ trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/MessageContextInjector.java 2007-01-09 14:28:41 UTC (rev 1874)
@@ -1,85 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, 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.ws.core.server;
-
-// $Id$
-
-import java.lang.reflect.Field;
-import java.lang.reflect.Method;
-
-import javax.annotation.Resource;
-import javax.xml.ws.WebServiceContext;
-import javax.xml.ws.handler.MessageContext;
-
-import org.jboss.logging.Logger;
-import org.jboss.ws.core.jaxws.WebServiceContextImpl;
-
-/**
- * Inject the JAXWS WebServiceContext
- *
- * @author Thomas.Diesler(a)jboss.org
- * @since 04-Jan-2006
- */
-public class MessageContextInjector
-{
- // provide logging
- private static Logger log = Logger.getLogger(MessageContextInjector.class);
-
- public static void injectMessageContext(Object epImpl, MessageContext msgContext)
- {
- WebServiceContextImpl webServiceContext = new WebServiceContextImpl(msgContext);
-
- try
- {
- // scan fields that are marked with @Resource
- Field[] fields = epImpl.getClass().getFields();
- for (Field field : fields)
- {
- Class type = field.getType();
- if (type == WebServiceContext.class && field.isAnnotationPresent(Resource.class))
- {
- field.set(epImpl, webServiceContext);
- }
- }
-
- // scan methods that are marked with @Resource
- Method[] methods = epImpl.getClass().getMethods();
- for (Method method : methods)
- {
- Class[] paramTypes = method.getParameterTypes();
- if (paramTypes.length == 1 && paramTypes[0] == WebServiceContext.class && method.isAnnotationPresent(Resource.class))
- {
- method.invoke(epImpl, new Object[] { webServiceContext });
-
- }
- }
- }
- catch (RuntimeException rte)
- {
- throw rte;
- }
- catch (Exception ex)
- {
- log.warn("Cannot inject WebServiceContext", ex);
- }
- }
-}
Modified: trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/ServiceEndpointInvokerJSE.java
===================================================================
--- trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/ServiceEndpointInvokerJSE.java 2007-01-09 13:53:23 UTC (rev 1873)
+++ trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/ServiceEndpointInvokerJSE.java 2007-01-09 14:28:41 UTC (rev 1874)
@@ -35,6 +35,7 @@
import org.jboss.ws.core.CommonMessageContext;
import org.jboss.ws.core.EndpointInvocation;
import org.jboss.ws.core.jaxrpc.ServletEndpointContextImpl;
+import org.jboss.ws.core.jaxws.WebServiceContextInjector;
import org.jboss.ws.core.jaxws.handler.SOAPMessageContextJAXWS;
import org.jboss.ws.core.soap.MessageContextAssociation;
import org.jboss.ws.metadata.umdm.ServerEndpointMetaData;
@@ -88,7 +89,7 @@
{
CommonMessageContext msgContext = MessageContextAssociation.peekMessageContext();
if (msgContext instanceof SOAPMessageContextJAXWS)
- MessageContextInjector.injectMessageContext(seiImpl, (SOAPMessageContextJAXWS)msgContext);
+ WebServiceContextInjector.injectContext(seiImpl, (SOAPMessageContextJAXWS)msgContext);
Class implClass = seiImpl.getClass();
Method seiMethod = epInv.getJavaMethod();
Modified: trunk/jbossws-core/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSEndpointMetaDataBuilder.java
===================================================================
--- trunk/jbossws-core/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSEndpointMetaDataBuilder.java 2007-01-09 13:53:23 UTC (rev 1873)
+++ trunk/jbossws-core/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSEndpointMetaDataBuilder.java 2007-01-09 14:28:41 UTC (rev 1874)
@@ -79,7 +79,7 @@
sepMetaData.setConfigFile(configFile);
}
- boolean isJSEEndpoint = udi.type == DeploymentType.JAXWS_JSE;
+ boolean isJSEEndpoint = (udi.type == DeploymentType.JAXWS_JSE);
// context-root
if (anPortComponent.contextRoot().length() > 0)
Modified: trunk/jbossws-core/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSWebServiceMetaDataBuilder.java
===================================================================
--- trunk/jbossws-core/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSWebServiceMetaDataBuilder.java 2007-01-09 13:53:23 UTC (rev 1873)
+++ trunk/jbossws-core/src/main/java/org/jboss/ws/metadata/builder/jaxws/JAXWSWebServiceMetaDataBuilder.java 2007-01-09 14:28:41 UTC (rev 1874)
@@ -997,7 +997,8 @@
processOrGenerateWSDL(seiClass, serviceMetaData, result.wsdlLocation, sepMetaData);
// process config name and config file amongst others
- processPortComponent(udi, seiClass, linkName, sepMetaData);
+ // Note, that @PortComponent needs to be defined on the endpoint not the SEI
+ processPortComponent(udi, sepClass, linkName, sepMetaData);
// setup handler chain from config
sepMetaData.configure(sepMetaData);
Modified: trunk/jbossws-tests/ant-import/build-jars-jaxws.xml
===================================================================
--- trunk/jbossws-tests/ant-import/build-jars-jaxws.xml 2007-01-09 13:53:23 UTC (rev 1873)
+++ trunk/jbossws-tests/ant-import/build-jars-jaxws.xml 2007-01-09 14:28:41 UTC (rev 1874)
@@ -39,10 +39,16 @@
<!-- jaxws-context -->
<war warfile="${tests.output.dir}/libs/jaxws-context.war" webxml="${tests.output.dir}/resources/jaxws/context/WEB-INF/web.xml">
<classes dir="${tests.output.dir}/classes">
- <include name="org/jboss/test/ws/jaxws/context/EndpointBean.class"/>
+ <include name="org/jboss/test/ws/jaxws/context/EndpointJSE.class"/>
<include name="org/jboss/test/ws/jaxws/context/EndpointInterface.class"/>
</classes>
</war>
+ <jar jarfile="${tests.output.dir}/libs/jaxws-context.jar">
+ <fileset dir="${tests.output.dir}/classes">
+ <include name="org/jboss/test/ws/jaxws/context/EndpointEJB.class"/>
+ <include name="org/jboss/test/ws/jaxws/context/EndpointInterface.class"/>
+ </fileset>
+ </jar>
<!-- jaxws-eardeployment -->
<war warfile="${tests.output.dir}/libs/jaxws-eardeployment.war" webxml="${tests.output.dir}/resources/jaxws/eardeployment/WEB-INF/web.xml">
Added: trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/ContextEJBTestCase.java
===================================================================
--- trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/ContextEJBTestCase.java 2007-01-09 13:53:23 UTC (rev 1873)
+++ trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/ContextEJBTestCase.java 2007-01-09 14:28:41 UTC (rev 1874)
@@ -0,0 +1,74 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.context;
+
+// $Id$
+
+import java.io.File;
+import java.net.MalformedURLException;
+import java.net.URL;
+
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+
+import junit.framework.Test;
+
+import org.jboss.test.ws.JBossWSTest;
+import org.jboss.test.ws.JBossWSTestSetup;
+import org.jboss.ws.metadata.wsdl.WSDLDefinitions;
+import org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory;
+
+/**
+ * Test JAXWS WebServiceContext
+ *
+ * @author Thomas.Diesler(a)jboss.org
+ * @since 29-Apr-2005
+ */
+public class ContextEJBTestCase extends JBossWSTest
+{
+ public static Test suite()
+ {
+ return JBossWSTestSetup.newTestSetup(ContextEJBTestCase.class, "jaxws-context.jar");
+ }
+
+ public void testWSDLAccess() throws MalformedURLException
+ {
+
+ URL wsdlURL = new URL("http://" + getServerHost() + ":8080/jaxws-context?wsdl");
+ WSDLDefinitionsFactory factory = WSDLDefinitionsFactory.newInstance();
+ WSDLDefinitions wsdlDefinitions = factory.parse(wsdlURL);
+ assertNotNull(wsdlDefinitions);
+ }
+
+ public void testClientAccess() throws Exception
+ {
+ URL wsdlURL = new File("resources/jaxws/context/WEB-INF/wsdl/TestService.wsdl").toURL();
+ QName qname = new QName("http://org.jboss.ws/jaxws/context", "TestService");
+ Service service = Service.create(wsdlURL, qname);
+ EndpointInterface port = (EndpointInterface)service.getPort(EndpointInterface.class);
+
+ String helloWorld = "Hello world!";
+ Object retObj = port.echo(helloWorld);
+ assertEquals(helloWorld + "/" + helloWorld, retObj);
+ }
+
+}
Property changes on: trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/ContextEJBTestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/ContextJSETestCase.java
===================================================================
--- trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/ContextJSETestCase.java 2007-01-09 13:53:23 UTC (rev 1873)
+++ trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/ContextJSETestCase.java 2007-01-09 14:28:41 UTC (rev 1874)
@@ -0,0 +1,74 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.context;
+
+// $Id$
+
+import java.io.File;
+import java.net.MalformedURLException;
+import java.net.URL;
+
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+
+import junit.framework.Test;
+
+import org.jboss.test.ws.JBossWSTest;
+import org.jboss.test.ws.JBossWSTestSetup;
+import org.jboss.ws.metadata.wsdl.WSDLDefinitions;
+import org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory;
+
+/**
+ * Test JAXWS WebServiceContext
+ *
+ * @author Thomas.Diesler(a)jboss.org
+ * @since 29-Apr-2005
+ */
+public class ContextJSETestCase extends JBossWSTest
+{
+ public static Test suite()
+ {
+ return JBossWSTestSetup.newTestSetup(ContextJSETestCase.class, "jaxws-context.war");
+ }
+
+ public void testWSDLAccess() throws MalformedURLException
+ {
+
+ URL wsdlURL = new URL("http://" + getServerHost() + ":8080/jaxws-context?wsdl");
+ WSDLDefinitionsFactory factory = WSDLDefinitionsFactory.newInstance();
+ WSDLDefinitions wsdlDefinitions = factory.parse(wsdlURL);
+ assertNotNull(wsdlDefinitions);
+ }
+
+ public void testClientAccess() throws Exception
+ {
+ URL wsdlURL = new File("resources/jaxws/context/WEB-INF/wsdl/TestService.wsdl").toURL();
+ QName qname = new QName("http://org.jboss.ws/jaxws/context", "TestService");
+ Service service = Service.create(wsdlURL, qname);
+ EndpointInterface port = (EndpointInterface)service.getPort(EndpointInterface.class);
+
+ String helloWorld = "Hello world!";
+ Object retObj = port.echo(helloWorld);
+ assertEquals(helloWorld, retObj);
+ }
+
+}
Property changes on: trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/ContextJSETestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Deleted: trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/EndpointBean.java
===================================================================
--- trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/EndpointBean.java 2007-01-09 13:53:23 UTC (rev 1873)
+++ trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/EndpointBean.java 2007-01-09 14:28:41 UTC (rev 1874)
@@ -1,56 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, 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.jaxws.context;
-
-// $Id: $
-
-import javax.annotation.Resource;
-import javax.jws.WebService;
-import javax.xml.soap.SOAPElement;
-import javax.xml.soap.SOAPException;
-import javax.xml.soap.SOAPMessage;
-import javax.xml.ws.WebServiceContext;
-import javax.xml.ws.WebServiceException;
-import javax.xml.ws.handler.soap.SOAPMessageContext;
-
-@WebService(endpointInterface = "org.jboss.test.ws.jaxws.context.EndpointInterface", serviceName = "TestService", targetNamespace = "http://org.jboss.ws/jaxws/context")
-public class EndpointBean
-{
- @Resource
- public WebServiceContext context;
-
- public String echo(String input)
- {
- try
- {
- SOAPMessageContext msgContext = (SOAPMessageContext)context.getMessageContext();
- SOAPMessage soapMessage = msgContext.getMessage();
- SOAPElement soapElement = (SOAPElement)soapMessage.getSOAPBody().getChildElements().next();
- soapElement = (SOAPElement)soapElement.getChildElements().next();
- return soapElement.getValue();
- }
- catch (SOAPException ex)
- {
- throw new WebServiceException(ex);
- }
- }
-}
Added: trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/EndpointEJB.java
===================================================================
--- trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/EndpointEJB.java 2007-01-09 13:53:23 UTC (rev 1873)
+++ trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/EndpointEJB.java 2007-01-09 14:28:41 UTC (rev 1874)
@@ -0,0 +1,79 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.context;
+
+// $Id$
+
+import javax.annotation.Resource;
+import javax.ejb.SessionContext;
+import javax.ejb.Stateless;
+import javax.jws.WebService;
+import javax.xml.soap.SOAPElement;
+import javax.xml.soap.SOAPException;
+import javax.xml.soap.SOAPMessage;
+import javax.xml.ws.WebServiceContext;
+import javax.xml.ws.WebServiceException;
+
+import org.jboss.ws.annotation.PortComponent;
+
+@WebService(endpointInterface = "org.jboss.test.ws.jaxws.context.EndpointInterface", serviceName = "TestService", targetNamespace = "http://org.jboss.ws/jaxws/context")
+@PortComponent(contextRoot = "/jaxws-context", urlPattern = "/*")
+@Stateless
+public class EndpointEJB
+{
+ @Resource
+ WebServiceContext wsCtx;
+
+ @Resource
+ SessionContext ejbCtx;
+
+ public String echo(String input)
+ {
+ try
+ {
+ String retValue = getValueJAXWS() + "/" + getValueJAXRPC();
+ return retValue;
+ }
+ catch (SOAPException ex)
+ {
+ throw new WebServiceException(ex);
+ }
+ }
+
+ private String getValueJAXWS() throws SOAPException
+ {
+ javax.xml.ws.handler.soap.SOAPMessageContext jaxwsContext = (javax.xml.ws.handler.soap.SOAPMessageContext)wsCtx.getMessageContext();
+ SOAPMessage soapMessage = jaxwsContext.getMessage();
+ SOAPElement soapElement = (SOAPElement)soapMessage.getSOAPBody().getChildElements().next();
+ soapElement = (SOAPElement)soapElement.getChildElements().next();
+ return soapElement.getValue();
+ }
+
+ private String getValueJAXRPC() throws SOAPException
+ {
+ javax.xml.rpc.handler.soap.SOAPMessageContext jaxrpcContext = (javax.xml.rpc.handler.soap.SOAPMessageContext)ejbCtx.getMessageContext();
+ SOAPMessage soapMessage = jaxrpcContext.getMessage();
+ SOAPElement soapElement = (SOAPElement)soapMessage.getSOAPBody().getChildElements().next();
+ soapElement = (SOAPElement)soapElement.getChildElements().next();
+ return soapElement.getValue();
+ }
+}
Property changes on: trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/EndpointEJB.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Copied: trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/EndpointJSE.java (from rev 1858, trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/EndpointBean.java)
===================================================================
--- trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/EndpointBean.java 2007-01-08 10:08:16 UTC (rev 1858)
+++ trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/EndpointJSE.java 2007-01-09 14:28:41 UTC (rev 1874)
@@ -0,0 +1,56 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.jaxws.context;
+
+// $Id: $
+
+import javax.annotation.Resource;
+import javax.jws.WebService;
+import javax.xml.soap.SOAPElement;
+import javax.xml.soap.SOAPException;
+import javax.xml.soap.SOAPMessage;
+import javax.xml.ws.WebServiceContext;
+import javax.xml.ws.WebServiceException;
+import javax.xml.ws.handler.soap.SOAPMessageContext;
+
+@WebService(endpointInterface = "org.jboss.test.ws.jaxws.context.EndpointInterface", serviceName = "TestService", targetNamespace = "http://org.jboss.ws/jaxws/context")
+public class EndpointJSE
+{
+ @Resource
+ public WebServiceContext wsCtx;
+
+ public String echo(String input)
+ {
+ try
+ {
+ SOAPMessageContext msgContext = (SOAPMessageContext)wsCtx.getMessageContext();
+ SOAPMessage soapMessage = msgContext.getMessage();
+ SOAPElement soapElement = (SOAPElement)soapMessage.getSOAPBody().getChildElements().next();
+ soapElement = (SOAPElement)soapElement.getChildElements().next();
+ return soapElement.getValue();
+ }
+ catch (SOAPException ex)
+ {
+ throw new WebServiceException(ex);
+ }
+ }
+}
Deleted: trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/WebServiceContextTestCase.java
===================================================================
--- trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/WebServiceContextTestCase.java 2007-01-09 13:53:23 UTC (rev 1873)
+++ trunk/jbossws-tests/src/main/java/org/jboss/test/ws/jaxws/context/WebServiceContextTestCase.java 2007-01-09 14:28:41 UTC (rev 1874)
@@ -1,74 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, 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.jaxws.context;
-
-// $Id: $
-
-import java.io.File;
-import java.net.MalformedURLException;
-import java.net.URL;
-
-import javax.xml.namespace.QName;
-import javax.xml.ws.Service;
-
-import junit.framework.Test;
-
-import org.jboss.test.ws.JBossWSTest;
-import org.jboss.test.ws.JBossWSTestSetup;
-import org.jboss.ws.metadata.wsdl.WSDLDefinitions;
-import org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory;
-
-/**
- * Test JAXWS WebServiceContext
- *
- * @author Thomas.Diesler(a)jboss.org
- * @since 29-Apr-2005
- */
-public class WebServiceContextTestCase extends JBossWSTest
-{
- public static Test suite()
- {
- return JBossWSTestSetup.newTestSetup(WebServiceContextTestCase.class, "jaxws-context.war");
- }
-
- public void testWSDLAccess() throws MalformedURLException
- {
-
- URL wsdlURL = new URL("http://" + getServerHost() + ":8080/jaxws-context?wsdl");
- WSDLDefinitionsFactory factory = WSDLDefinitionsFactory.newInstance();
- WSDLDefinitions wsdlDefinitions = factory.parse(wsdlURL);
- assertNotNull(wsdlDefinitions);
- }
-
- public void testClientAccess() throws Exception
- {
- URL wsdlURL = new File("resources/jaxws/context/WEB-INF/wsdl/TestService.wsdl").toURL();
- QName qname = new QName("http://org.jboss.ws/jaxws/context", "TestService");
- Service service = Service.create(wsdlURL, qname);
- EndpointInterface port = (EndpointInterface)service.getPort(EndpointInterface.class);
-
- String helloWorld = "Hello world!";
- Object retObj = port.echo(helloWorld);
- assertEquals(helloWorld, retObj);
- }
-
-}
Modified: trunk/jbossws-tests/src/main/resources/jaxws/context/WEB-INF/web.xml
===================================================================
--- trunk/jbossws-tests/src/main/resources/jaxws/context/WEB-INF/web.xml 2007-01-09 13:53:23 UTC (rev 1873)
+++ trunk/jbossws-tests/src/main/resources/jaxws/context/WEB-INF/web.xml 2007-01-09 14:28:41 UTC (rev 1874)
@@ -7,7 +7,7 @@
<servlet>
<servlet-name>TestService</servlet-name>
- <servlet-class>org.jboss.test.ws.jaxws.context.EndpointBean</servlet-class>
+ <servlet-class>org.jboss.test.ws.jaxws.context.EndpointJSE</servlet-class>
</servlet>
<servlet-mapping>
18 years
JBossWS SVN: r1873 - branches/jbossws-1.0.4.GA_JBWS-1436/docs
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2007-01-09 08:53:23 -0500 (Tue, 09 Jan 2007)
New Revision: 1873
Added:
branches/jbossws-1.0.4.GA_JBWS-1436/docs/patch-instructions.txt
Log:
JBWS-1436 - Patch Instructions
Added: branches/jbossws-1.0.4.GA_JBWS-1436/docs/patch-instructions.txt
===================================================================
--- branches/jbossws-1.0.4.GA_JBWS-1436/docs/patch-instructions.txt 2007-01-09 13:50:25 UTC (rev 1872)
+++ branches/jbossws-1.0.4.GA_JBWS-1436/docs/patch-instructions.txt 2007-01-09 13:53:23 UTC (rev 1873)
@@ -0,0 +1,32 @@
+PATCH NAME:
+ JBWS-1436
+PRODUCT NAME:
+ JBoss WS
+VERSION:
+ 1.0.4.GA
+SHORT DESCRIPTION:
+ JSR-181 Support methods with no parameters for document/literal/wrapped
+LONG DESCRIPTION:
+ This patch allows for methods which take no parameters when using
+ document/literal/wrapped JSR-181 endpoints.
+MANUAL INSTALL INSTRUCTIONS:
+ As JSR-181 endpoints require Java 5.0 the Java 1.4 version of JBossWS is not
+ inlcuded with this patch.
+
+ 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:
+ None
+SUPERSEDED BY:
+ None
+CREATOR:
+ Darran Lofthouse
+DATE:
+ 9th January 2007
Property changes on: branches/jbossws-1.0.4.GA_JBWS-1436/docs/patch-instructions.txt
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
18 years
JBossWS SVN: r1872 - trunk/jbossws-core/src/main/java/org/jboss/ws/core/server
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2007-01-09 08:50:25 -0500 (Tue, 09 Jan 2007)
New Revision: 1872
Modified:
trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/ServiceEndpoint.java
Log:
typo
Modified: trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/ServiceEndpoint.java
===================================================================
--- trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/ServiceEndpoint.java 2007-01-09 12:35:24 UTC (rev 1871)
+++ trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/ServiceEndpoint.java 2007-01-09 13:50:25 UTC (rev 1872)
@@ -191,7 +191,7 @@
{
SOAPEnvelope soapEnv = reqMessage.getSOAPPart().getEnvelope();
String envStr = SOAPElementWriter.writeElement((SOAPElementImpl)soapEnv, true);
- msgLog.trace("Incomming SOAPMessage\n" + envStr);
+ msgLog.trace("Incoming SOAPMessage\n" + envStr);
}
// Set the thread context class loader
18 years
JBossWS SVN: r1871 - in branches/jbossws-1.0.4.GA_JBWS-1436/src: main/java/org/jboss/ws/jaxrpc test/ant test/java/org/jboss/test/ws/jaxws test/java/org/jboss/test/ws/jaxws/jbws1436 test/resources/jaxws test/resources/jaxws/jbws1436 test/resources/jaxws/jbws1436/META-INF test/resources/jaxws/jbws1436/META-INF/wsdl test/resources/jaxws/jbws1436/WEB-INF
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2007-01-09 07:35:24 -0500 (Tue, 09 Jan 2007)
New Revision: 1871
Added:
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorld.java
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorldBean.java
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorldPort.java
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorldResponse.java
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/JBWS1436TestCase.java
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/application-client.xml
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/jaxrpc-mapping.xml
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/jboss-client.xml
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/wsdl/
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/wsdl/TestService.wsdl
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/WEB-INF/
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/WEB-INF/web.xml
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/wstools-config.xml
Modified:
branches/jbossws-1.0.4.GA_JBWS-1436/src/main/java/org/jboss/ws/jaxrpc/ParameterWrapping.java
branches/jbossws-1.0.4.GA_JBWS-1436/src/test/ant/build-jars-jaxws.xml
Log:
JBWS-1436 - Test case and temporary fix.
Modified: branches/jbossws-1.0.4.GA_JBWS-1436/src/main/java/org/jboss/ws/jaxrpc/ParameterWrapping.java
===================================================================
--- branches/jbossws-1.0.4.GA_JBWS-1436/src/main/java/org/jboss/ws/jaxrpc/ParameterWrapping.java 2007-01-08 21:52:08 UTC (rev 1870)
+++ branches/jbossws-1.0.4.GA_JBWS-1436/src/main/java/org/jboss/ws/jaxrpc/ParameterWrapping.java 2007-01-09 12:35:24 UTC (rev 1871)
@@ -459,8 +459,8 @@
if (operationMetaData.isDocumentWrapped() == false)
throw new WSException("Operation is not document/literal (wrapped)");
- if (wrappedTypes.size() == 0)
- throw new WSException("No wrapped types available");
+ if (wrappedTypes == null)
+ throw new WSException("Cannot generate a type when their is no type information");
String serviceName = serviceMetaData.getQName().getLocalPart();
String parameterName = pmd.getXmlName().getLocalPart();
Modified: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/ant/build-jars-jaxws.xml
===================================================================
--- branches/jbossws-1.0.4.GA_JBWS-1436/src/test/ant/build-jars-jaxws.xml 2007-01-08 21:52:08 UTC (rev 1870)
+++ branches/jbossws-1.0.4.GA_JBWS-1436/src/test/ant/build-jars-jaxws.xml 2007-01-09 12:35:24 UTC (rev 1871)
@@ -111,6 +111,26 @@
</classes>
</war>
+ <!-- jaxws-jbws1436 -->
+ <war destfile="${build.tests.dir}/libs/jaxws-jbws1436.war" webxml="${build.tests.dir}/resources/jaxws/jbws1436/WEB-INF/web.xml">
+ <classes dir="${build.tests.dir}/classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1436/HelloWorldBean.class"/>
+ </classes>
+ </war>
+ <jar destfile="${build.tests.dir}/libs/jaxws-jbws1436-client.jar">
+ <fileset dir="${build.tests.dir}/classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1436/HelloWorld.class"/>
+ <include name="org/jboss/test/ws/jaxws/jbws1436/HelloWorldPort.class"/>
+ <include name="org/jboss/test/ws/jaxws/jbws1436/HelloWorldResponse.class"/>
+ </fileset>
+ <metainf dir="${build.tests.dir}/resources/jaxws/jbws1436/META-INF">
+ <include name="application-client.xml"/>
+ <include name="jboss-client.xml"/>
+ <include name="jaxrpc-mapping.xml"/>
+ <include name="wsdl/TestService.wsdl"/>
+ </metainf>
+ </jar>
+
<!-- jaxws-jsr181-complex -->
<war warfile="${build.tests.dir}/libs/jaxws-jsr181-complex.war" webxml="${build.tests.dir}/resources/jaxws/jsr181/complex/WEB-INF/web.xml">
<classes dir="${build.tests.dir}/classes">
Added: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorld.java
===================================================================
--- branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorld.java 2007-01-08 21:52:08 UTC (rev 1870)
+++ branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorld.java 2007-01-09 12:35:24 UTC (rev 1871)
@@ -0,0 +1,18 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Tue Jan 09 13:27:11 CET 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package org.jboss.test.ws.jaxws.jbws1436;
+
+
+public class HelloWorld
+{
+public HelloWorld(){
+}
+}
Property changes on: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorld.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorldBean.java
===================================================================
--- branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorldBean.java 2007-01-08 21:52:08 UTC (rev 1870)
+++ branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorldBean.java 2007-01-09 12:35:24 UTC (rev 1871)
@@ -0,0 +1,48 @@
+/*
+ * 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.jaxws.jbws1436;
+
+import javax.jws.WebMethod;
+import javax.jws.WebService;
+
+import org.jboss.logging.Logger;
+
+/**
+ *
+ * @author darran.lofthouse(a)jboss.com
+ * @since 9 Jan 2007
+ */
+@WebService(targetNamespace = "http://org.jboss/test/ws/jbws1436", name = "HelloWorldPort")
+public class HelloWorldBean
+{
+
+ private static final Logger log = Logger.getLogger(HelloWorldBean.class);
+
+ @WebMethod
+ public String helloWorld()
+ {
+ log.info("Hello World");
+
+ return "Hello World";
+ }
+
+}
Property changes on: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorldBean.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorldPort.java
===================================================================
--- branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorldPort.java 2007-01-08 21:52:08 UTC (rev 1870)
+++ branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorldPort.java 2007-01-09 12:35:24 UTC (rev 1871)
@@ -0,0 +1,15 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Tue Jan 09 13:27:11 CET 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+package org.jboss.test.ws.jaxws.jbws1436;
+public interface HelloWorldPort extends java.rmi.Remote
+{
+
+ public org.jboss.test.ws.jaxws.jbws1436.HelloWorldResponse helloWorld(org.jboss.test.ws.jaxws.jbws1436.HelloWorld helloWorld) throws java.rmi.RemoteException;
+}
Property changes on: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorldPort.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorldResponse.java
===================================================================
--- branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorldResponse.java 2007-01-08 21:52:08 UTC (rev 1870)
+++ branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorldResponse.java 2007-01-09 12:35:24 UTC (rev 1871)
@@ -0,0 +1,27 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Tue Jan 09 13:27:11 CET 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package org.jboss.test.ws.jaxws.jbws1436;
+
+
+public class HelloWorldResponse
+{
+
+protected java.lang.String result;
+public HelloWorldResponse(){}
+
+public HelloWorldResponse(java.lang.String result){
+this.result=result;
+}
+public java.lang.String getResult() { return result ;}
+
+public void setResult(java.lang.String result){ this.result=result; }
+
+}
Property changes on: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/HelloWorldResponse.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/JBWS1436TestCase.java
===================================================================
--- branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/JBWS1436TestCase.java 2007-01-08 21:52:08 UTC (rev 1870)
+++ branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/JBWS1436TestCase.java 2007-01-09 12:35:24 UTC (rev 1871)
@@ -0,0 +1,68 @@
+/*
+ * 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.jaxws.jbws1436;
+
+import javax.naming.InitialContext;
+import javax.xml.rpc.Service;
+
+import junit.framework.Test;
+
+import org.jboss.test.ws.JBossWSTest;
+import org.jboss.test.ws.JBossWSTestSetup;
+
+/**
+ *
+ * @author darran.lofthouse(a)jboss.com
+ * @since 9 Jan 2007
+ */
+public class JBWS1436TestCase extends JBossWSTest
+{
+
+ private static final String ARCHIVE_NAME = "jaxws-jbws1436.war, jaxws-jbws1436-client.jar";
+
+ private static HelloWorldPort port;
+
+ public static Test suite()
+ {
+ return JBossWSTestSetup.newTestSetup(JBWS1436TestCase.class, ARCHIVE_NAME);
+ }
+
+ @Override
+ protected void setUp() throws Exception
+ {
+ super.setUp();
+ if (port == null)
+ {
+ InitialContext iniCtx = getInitialContext();
+ Service service = (Service)iniCtx.lookup("java:comp/env/service/TestService");
+ port = (HelloWorldPort)service.getPort(HelloWorldPort.class);
+ }
+ }
+
+ public void testHelloWorld() throws Exception
+ {
+ HelloWorldResponse response = port.helloWorld(new HelloWorld());
+
+ assertEquals("Hello World", response.result);
+ }
+
+}
Property changes on: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/java/org/jboss/test/ws/jaxws/jbws1436/JBWS1436TestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/application-client.xml
===================================================================
--- branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/application-client.xml 2007-01-08 21:52:08 UTC (rev 1870)
+++ branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/application-client.xml 2007-01-09 12:35:24 UTC (rev 1871)
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<application-client 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://java.sun.com/xml/ns/j2ee/application-client_1_4.xsd"
+ version="1.4">
+
+ <display-name>JBWS981 Test</display-name>
+
+ <service-ref>
+ <service-ref-name>service/TestService</service-ref-name>
+ <service-interface>javax.xml.rpc.Service</service-interface>
+ <wsdl-file>META-INF/wsdl/TestService.wsdl</wsdl-file>
+ <jaxrpc-mapping-file>META-INF/jaxrpc-mapping.xml</jaxrpc-mapping-file>
+ <port-component-ref>
+ <service-endpoint-interface>org.jboss.test.ws.jaxws.jbws1436.HelloWorldPort</service-endpoint-interface>
+ </port-component-ref>
+ </service-ref>
+
+</application-client>
+
Property changes on: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/application-client.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/jaxrpc-mapping.xml
===================================================================
--- branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/jaxrpc-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
+++ branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/jaxrpc-mapping.xml 2007-01-09 12:35:24 UTC (rev 1871)
@@ -0,0 +1,51 @@
+<?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.jaxws.jbws1436</package-type>
+ <namespaceURI>http://org.jboss/test/ws/jbws1436</namespaceURI>
+ </package-mapping>
+ <java-xml-type-mapping>
+ <java-type>org.jboss.test.ws.jaxws.jbws1436.HelloWorld</java-type>
+ <root-type-qname xmlns:typeNS='http://org.jboss/test/ws/jbws1436'>typeNS:helloWorld</root-type-qname>
+ <qname-scope>complexType</qname-scope>
+ </java-xml-type-mapping>
+ <java-xml-type-mapping>
+ <java-type>org.jboss.test.ws.jaxws.jbws1436.HelloWorldResponse</java-type>
+ <root-type-qname xmlns:typeNS='http://org.jboss/test/ws/jbws1436'>typeNS:helloWorldResponse</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>
+ <service-interface-mapping>
+ <service-interface>org.jboss.test.ws.jaxws.jbws1436.HelloWorldPortService</service-interface>
+ <wsdl-service-name xmlns:serviceNS='http://org.jboss/test/ws/jbws1436'>serviceNS:HelloWorldPortService</wsdl-service-name>
+ <port-mapping>
+ <port-name>HelloWorldPortPort</port-name>
+ <java-port-name>HelloWorldPortPort</java-port-name>
+ </port-mapping>
+ </service-interface-mapping>
+ <service-endpoint-interface-mapping>
+ <service-endpoint-interface>org.jboss.test.ws.jaxws.jbws1436.HelloWorldPort</service-endpoint-interface>
+ <wsdl-port-type xmlns:portTypeNS='http://org.jboss/test/ws/jbws1436'>portTypeNS:HelloWorldPort</wsdl-port-type>
+ <wsdl-binding xmlns:bindingNS='http://org.jboss/test/ws/jbws1436'>bindingNS:HelloWorldPortBinding</wsdl-binding>
+ <service-endpoint-method-mapping>
+ <java-method-name>helloWorld</java-method-name>
+ <wsdl-operation>helloWorld</wsdl-operation>
+ <method-param-parts-mapping>
+ <param-position>0</param-position>
+ <param-type>org.jboss.test.ws.jaxws.jbws1436.HelloWorld</param-type>
+ <wsdl-message-mapping>
+ <wsdl-message xmlns:wsdlMsgNS='http://org.jboss/test/ws/jbws1436'>wsdlMsgNS:HelloWorldPort_helloWorld</wsdl-message>
+ <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.jaxws.jbws1436.HelloWorldResponse</method-return-value>
+ <wsdl-message xmlns:wsdlMsgNS='http://org.jboss/test/ws/jbws1436'>wsdlMsgNS:HelloWorldPort_helloWorldResponse</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/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/jaxrpc-mapping.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/jboss-client.xml
===================================================================
--- branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/jboss-client.xml 2007-01-08 21:52:08 UTC (rev 1870)
+++ branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/jboss-client.xml 2007-01-09 12:35:24 UTC (rev 1871)
@@ -0,0 +1,9 @@
+<?xml version='1.0' encoding='UTF-8' ?>
+
+<!DOCTYPE jboss-client PUBLIC
+ "-//JBoss//DTD Application Client 4.0//EN"
+ "http://www.jboss.org/j2ee/dtd/jboss-client_4_0.dtd">
+
+<jboss-client>
+ <jndi-name>jbossws-client</jndi-name>
+</jboss-client>
Property changes on: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/jboss-client.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/wsdl/TestService.wsdl
===================================================================
--- branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/wsdl/TestService.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
+++ branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/wsdl/TestService.wsdl 2007-01-09 12:35:24 UTC (rev 1871)
@@ -0,0 +1,45 @@
+<definitions name="HelloWorldPortService" targetNamespace="http://org.jboss/test/ws/jbws1436" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://org.jboss/test/ws/jbws1436" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+ <types>
+ <schema elementFormDefault="qualified" targetNamespace="http://org.jboss/test/ws/jbws1436" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://org.jboss/test/ws/jbws1436" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <complexType name="helloWorld">
+ <sequence/>
+ </complexType>
+ <complexType name="helloWorldResponse">
+ <sequence>
+ <element name="result" nillable="true" type="string"/>
+ </sequence>
+ </complexType>
+ <element name="helloWorld" type="tns:helloWorld"/>
+ <element name="helloWorldResponse" type="tns:helloWorldResponse"/>
+ </schema>
+ </types>
+ <message name="HelloWorldPort_helloWorldResponse">
+ <part element="tns:helloWorldResponse" name="result"/>
+ </message>
+ <message name="HelloWorldPort_helloWorld">
+ <part element="tns:helloWorld" name="parameters"/>
+ </message>
+ <portType name="HelloWorldPort">
+ <operation name="helloWorld">
+ <input message="tns:HelloWorldPort_helloWorld"/>
+ <output message="tns:HelloWorldPort_helloWorldResponse"/>
+ </operation>
+ </portType>
+ <binding name="HelloWorldPortBinding" type="tns:HelloWorldPort">
+ <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
+ <operation name="helloWorld">
+ <soap:operation soapAction=""/>
+ <input>
+ <soap:body use="literal"/>
+ </input>
+ <output>
+ <soap:body use="literal"/>
+ </output>
+ </operation>
+ </binding>
+ <service name="HelloWorldPortService">
+ <port binding="tns:HelloWorldPortBinding" name="HelloWorldPortPort">
+ <soap:address location="http://localhost.localdomain:8080/jaxws-jbws1436"/>
+ </port>
+ </service>
+</definitions>
\ No newline at end of file
Property changes on: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/META-INF/wsdl/TestService.wsdl
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/WEB-INF/web.xml
===================================================================
--- branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/WEB-INF/web.xml 2007-01-08 21:52:08 UTC (rev 1870)
+++ branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/WEB-INF/web.xml 2007-01-09 12:35:24 UTC (rev 1871)
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<web-app 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://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
+ version="2.4">
+
+ <servlet>
+ <servlet-name>HelloWorldService</servlet-name>
+ <servlet-class>org.jboss.test.ws.jaxws.jbws1436.HelloWorldBean</servlet-class>
+ </servlet>
+
+ <servlet-mapping>
+ <servlet-name>HelloWorldService</servlet-name>
+ <url-pattern>/*</url-pattern>
+ </servlet-mapping>
+
+</web-app>
+
Property changes on: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/WEB-INF/web.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/wstools-config.xml
===================================================================
--- branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
+++ branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/wstools-config.xml 2007-01-09 12:35:24 UTC (rev 1871)
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ wstools -config wstools-config.xml
+-->
+
+<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">
+
+ <global>
+ <package-namespace package="org.jboss.test.ws.jaxws.jbws1436" namespace="http://org.jboss/test/ws/jbws1436"/>
+ </global>
+
+ <wsdl-java location="META-INF/wsdl/TestService.wsdl" parameter-style="bare">
+ <mapping file="jaxrpc-mapping.xml" />
+ </wsdl-java>
+
+</configuration>
\ No newline at end of file
Property changes on: branches/jbossws-1.0.4.GA_JBWS-1436/src/test/resources/jaxws/jbws1436/wstools-config.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
18 years
JBossWS SVN: r1870 - in branches/dlofthouse/JBWS-1260/jbossws-tests/src/main: java/org/jboss/test/ws/tools java/org/jboss/test/ws/tools/jbws1079 java/org/jboss/test/ws/tools/jbws1253 java/org/jboss/test/ws/tools/jbws1260 java/org/jboss/test/ws/tools/validation resources/tools resources/tools/jbws1079 resources/tools/jbws1253 resources/tools/jbws1260 resources/tools/jbws1260/scenario_A resources/tools/jbws1260/scenario_AA resources/tools/jbws1260/scenario_AB resources/tools/jbws1260/scenari
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2007-01-08 16:52:08 -0500 (Mon, 08 Jan 2007)
New Revision: 1870
Added:
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1260/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1260/JBWS1260TestCase.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Telephone.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Title.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Name.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Telephone.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Name.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Telephone.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/wstools-config.xml
Removed:
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1260/JBWS1260TestCase.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/TelephoneNumberNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Telephone.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Title.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/LookupName.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/LookupResponseNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Lookup.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/LookupResponse.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Name.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Telephone.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/wstools-config.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Name.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Person.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/PhoneBook_PortType.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Telephone.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Wrapped.wsdl
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/wrapped-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/wstools-config.xml
Modified:
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/WSToolsTest.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1079/JBWS1079TestCase.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1253/JBWS1253TestCase.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/validation/JaxrpcMappingValidator.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/TelephoneNumber.java
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/anonymous-mapping.xml
branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1253/myporttype-mapping.xml
Log:
JBWS-1260 - Test Case.
Modified: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/WSToolsTest.java
===================================================================
--- branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/WSToolsTest.java 2007-01-08 21:50:24 UTC (rev 1869)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/WSToolsTest.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -179,21 +179,21 @@
return typeMapping;
}
- protected void generateMappingFile(String packageName, WSDLDefinitions wsdl, TypeMapping typeMapping, String serviceName, String fileLoc, Class seiClass,
- String typeNamespace) throws IOException
- {
- MappingFileGenerator mgf = new MappingFileGenerator(wsdl, new LiteralTypeMapping());
- mgf.setPackageName(packageName);
- mgf.setServiceName(serviceName);
- if (seiClass != null)
- mgf.setServiceEndpointInterface(seiClass);
- if (typeNamespace != null && typeNamespace.length() > 0)
- mgf.setTypeNamespace(typeNamespace);
- JavaWsdlMapping jwm = mgf.generate();
- FileWriter fw = new FileWriter(fileLoc);
- fw.write(DOMWriter.printNode(DOMUtils.parse(jwm.serialize()), true));
- fw.close();
- }
+ // protected void generateMappingFile(String packageName, WSDLDefinitions wsdl, TypeMapping typeMapping, String serviceName, String fileLoc, Class seiClass,
+ // String typeNamespace) throws IOException
+ // {
+ // MappingFileGenerator mgf = new MappingFileGenerator(wsdl, new LiteralTypeMapping());
+ // mgf.setPackageName(packageName);
+ // mgf.setServiceName(serviceName);
+ // if (seiClass != null)
+ // mgf.setServiceEndpointInterface(seiClass);
+ // if (typeNamespace != null && typeNamespace.length() > 0)
+ // mgf.setTypeNamespace(typeNamespace);
+ // JavaWsdlMapping jwm = mgf.generate();
+ // FileWriter fw = new FileWriter(fileLoc);
+ // fw.write(DOMWriter.printNode(DOMUtils.parse(jwm.serialize()), true));
+ // fw.close();
+ // }
protected void generateServiceFile(String packageName, WSDLDefinitions wsdl, String location) throws IOException
{
Modified: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1079/JBWS1079TestCase.java
===================================================================
--- branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1079/JBWS1079TestCase.java 2007-01-08 21:50:24 UTC (rev 1869)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1079/JBWS1079TestCase.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -22,13 +22,11 @@
package org.jboss.test.ws.tools.jbws1079;
import java.io.File;
-import java.io.FileInputStream;
import org.jboss.test.ws.JBossWSTest;
import org.jboss.test.ws.tools.fixture.JBossSourceComparator;
-import org.jboss.ws.core.utils.DOMUtils;
+import org.jboss.test.ws.tools.validation.JaxrpcMappingValidator;
import org.jboss.ws.tools.WSTools;
-import org.w3c.dom.Element;
/**
*
@@ -45,12 +43,13 @@
String[] args = new String[] { "-dest", toolsDir, "-config", resourceDir + "/wstools-config.xml" };
new WSTools().generate(args);
- Element exp = DOMUtils.parse(new FileInputStream(resourceDir + "/anonymous-mapping.xml"));
- Element was = DOMUtils.parse(new FileInputStream(toolsDir + "/anonymous-mapping.xml"));
- assertEquals(exp, was);
-
+ compareSource(resourceDir + "/LookupResponseNumber.java", toolsDir + "/org/jboss/test/ws/jbws1079/LookupResponseNumber.java");
+ compareSource(resourceDir + "/Person.java", toolsDir + "/org/jboss/test/ws/jbws1079/Person.java");
+ compareSource(resourceDir + "/PhoneBook_PortType.java", toolsDir + "/org/jboss/test/ws/jbws1079/PhoneBook_PortType.java");
compareSource(resourceDir + "/TelephoneNumber.java", toolsDir + "/org/jboss/test/ws/jbws1079/TelephoneNumber.java");
- compareSource(resourceDir + "/TelephoneNumberNumber.java", toolsDir + "/org/jboss/test/ws/jbws1079/TelephoneNumberNumber.java");
+
+ JaxrpcMappingValidator mappingValidator = new JaxrpcMappingValidator();
+ mappingValidator.validate(resourceDir + "/anonymous-mapping.xml", toolsDir + "/anonymous-mapping.xml");
}
private static void compareSource(final String expectedName, final String generatedName) throws Exception
Modified: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1253/JBWS1253TestCase.java
===================================================================
--- branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1253/JBWS1253TestCase.java 2007-01-08 21:50:24 UTC (rev 1869)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1253/JBWS1253TestCase.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -22,13 +22,11 @@
package org.jboss.test.ws.tools.jbws1253;
import java.io.File;
-import java.io.FileInputStream;
import org.jboss.test.ws.JBossWSTest;
import org.jboss.test.ws.tools.fixture.JBossSourceComparator;
-import org.jboss.ws.core.utils.DOMUtils;
+import org.jboss.test.ws.tools.validation.JaxrpcMappingValidator;
import org.jboss.ws.tools.WSTools;
-import org.w3c.dom.Element;
/**
* Test for a port name which ends 'PortType'
@@ -45,10 +43,9 @@
String[] args = new String[] { "-dest", toolsDir, "-config", resourceDir + "/wstools-config.xml" };
new WSTools().generate(args);
- Element exp = DOMUtils.parse(new FileInputStream(resourceDir + "/myporttype-mapping.xml"));
- Element was = DOMUtils.parse(new FileInputStream(toolsDir + "/myporttype-mapping.xml"));
- assertEquals(exp, was);
-
+ JaxrpcMappingValidator mappingValidator = new JaxrpcMappingValidator();
+ mappingValidator.validate(resourceDir + "/myporttype-mapping.xml", toolsDir + "/myporttype-mapping.xml");
+
File expSEI = new File(resourceDir + "/My.java");
File wasSEI = new File(toolsDir + "/org/jboss/test/ws/jbws1253/My.java");
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1260 (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/java/org/jboss/test/ws/tools/jbws1260)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1260/JBWS1260TestCase.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/java/org/jboss/test/ws/tools/jbws1260/JBWS1260TestCase.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1260/JBWS1260TestCase.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,901 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, 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.jbws1260;
-
-import java.io.File;
-import java.io.FilenameFilter;
-
-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.WSException;
-import org.jboss.ws.tools.WSTools;
-
-/**
- * Test case to test various scenarios unwrapping parameters
- * when using wsdl-java.
- *
- * @author darran.lofthouse(a)jboss.com
- * @since Nov 22, 2006
- */
-public class JBWS1260TestCase extends JBossWSTest
-{
-
- /**
- * Test scenario where the element referenced as the message
- * parts contains an anonymous complex type which contains
- * a single element.
- *
- * <element name='lookupResponse'>
- * <complexType>
- * <sequence>
- * <element name='number' nillable='true' type='string'/>
- * </sequence>
- * </complexType>
- * </element>
- *
- */
- public void testScenario_A() throws Exception
- {
- generateScenario("A");
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts contains an anonymous complex type which contains
- * two elements.
- *
- * <element name='lookupResponse'>
- * <complexType>
- * <sequence>
- * <element name='areaCode' nillable='true' type='string'/>
- * <element name='number' nillable='true' type='string'/>
- * </sequence>
- * </complexType>
- * </element>
- *
- */
- public void testScenario_B() throws Exception
- {
- try
- {
- generateScenario("B");
- fail("Expected exception not thrown.");
- }
- catch (WSException e)
- {
- }
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts references a complex type which contains
- * a single element.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='number' nillable='true' type='string'/>
- * </sequence>
- * </complexType>
- *
- */
- public void testScenario_C() throws Exception
- {
- generateScenario("C");
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts references a complex type which contains two
- * elements.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='areaCode' nillable='true' type='string'/>
- * <element name='number' nillable='true' type='string'/>
- * </sequence>
- * </complexType>
- *
- */
- public void testScenario_D() throws Exception
- {
- try
- {
- generateScenario("D");
- fail("Expected exception not thrown.");
- }
- catch (WSException e)
- {
- }
- }
-
- /**
- * Test scenario where the element referenced as the message part
- * references a complex type which contains an anonymous complex
- * type which contains one element.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='Number'>
- * <complexType>
- * <sequence>
- * <element name='number' nillable='true' type='string'/>
- * </sequence>
- * </complexType>
- * </element>
- * </sequence>
- * </complexType>
- */
- public void testScenario_E() throws Exception
- {
- generateScenario("E");
- }
-
- /**
- * Test scenario where the element referenced as the message part
- * references a complex type which contains an anonymout complex
- * type which contains two elements.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='Number'>
- * <complexType>
- * <sequence>
- * <element name='areaCode' nillable='true' type='string'/>
- * <element name='number' nillable='true' type='string'/>
- * </sequence>
- * </complexType>
- * </element>
- * </sequence>
- * </complexType>
- *
- */
- public void testScenario_F() throws Exception
- {
- generateScenario("F");
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts contains an anonymous complex type which contains
- * a single element which is an array.
- *
- * <element name='lookupResponse'>
- * <complexType>
- * <sequence>
- * <element name='number' nillable='true' type='string' maxOccurs='unbounded'/>
- * </sequence>
- * </complexType>
- * </element>
- */
- public void testScenario_G() throws Exception
- {
- generateScenario("G");
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts references a complex type which contains a single
- * element which is an array.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='number' nillable='true' type='string' maxOccurs='unbounded'/>
- * </sequence>
- * </complexType>
- *
- */
- public void testScenario_H() throws Exception
- {
- generateScenario("H");
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts references a complex type which contains an anonymous
- * complex type which contains a single element which is an array.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='Number'>
- * <complexType>
- * <sequence>
- * <element name='number' nillable='true' type='string' maxOccurs='unbounded'/>
- * </sequence>
- * </complexType>
- * </element>
- * </sequence>
- * </complexType>
- *
- */
- public void testScenario_I() throws Exception
- {
- generateScenario("I");
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts contains an anonymous complex type which contains
- * an empty sequence.
- *
- * <element name='lookupResponse'>
- * <complexType>
- * <sequence>
- * </sequence>
- * </complexType>
- * </element>
- *
- */
- public void testScenario_J() throws Exception
- {
- generateScenario("J");
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts references a complex type which contains
- * an empty sequence.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * </sequence>
- * </complexType>
- *
- */
- public void testScenario_K() throws Exception
- {
- generateScenario("K");
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts references a complex type which contains an anonymous
- * complex type which contains an empty sequence.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='Number'>
- * <complexType>
- * <sequence>
- * </sequence>
- * </complexType>
- * </element>
- * </sequence>
- * </complexType>
- *
- */
- public void testScenario_L() throws Exception
- {
- generateScenario("L");
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts contains an anonymous complex type which contains
- * a single element and an attribute.
- *
- * <element name='lookupResponse'>
- * <complexType>
- * <sequence>
- * <element name='number' nillable='true' type='string'/>
- * </sequence>
- * <attribute name='postcode' type='string'/>
- * </complexType>
- * </element>
- *
- */
- public void testScenario_M() throws Exception
- {
- try
- {
- generateScenario("M");
- fail("Expected exception not thrown.");
- }
- catch (WSException e)
- {
- }
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts references a complex type which contains
- * a single element and an attribute.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='number' nillable='true' type='string'/>
- * </sequence>
- * <attribute name='postcode' type='string'/>
- * </complexType>
- *
- */
- public void testScenario_N() throws Exception
- {
- try
- {
- generateScenario("N");
- fail("Expected exception not thrown.");
- }
- catch (WSException e)
- {
- }
- }
-
- /**
- * Test scenario where the element referenced as the message part
- * references a complex type which contains an anonymous complex
- * type which contains one element and one attribute.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='Number'>
- * <complexType>
- * <sequence>
- * <element name='number' nillable='true' type='string'/>
- * </sequence>
- * <attribute name='postcode' type='string'/>
- * </complexType>
- * </element>
- * </sequence>
- * </complexType>
- *
- */
- public void testScenario_O() throws Exception
- {
- generateScenario("O");
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts contains an anonymous complex type which contains
- * a single element which is an array and a single parameter.
- *
- * <element name='lookupResponse'>
- * <complexType>
- * <sequence>
- * <element name='number' nillable='true' type='string' maxOccurs='unbounded'/>
- * </sequence>
- * <attribute name='postcode' type='string'/>
- * </complexType>
- * </element>
- *
- */
- public void testScenario_P() throws Exception
- {
- try
- {
- generateScenario("P");
- fail("Expected exception not thrown.");
- }
- catch (WSException e)
- {
- }
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts references a complex type which contains a single
- * element which is an array and a single attribute.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='number' nillable='true' type='string' maxOccurs='unbounded'/>
- * </sequence>
- * <attribute name='postcode' type='string'/>
- * </complexType>
- *
- */
- public void testScenario_Q() throws Exception
- {
- try
- {
- generateScenario("Q");
- fail("Expected exception not thrown.");
- }
- catch (WSException e)
- {
- }
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts references a complex type which contains an anonymous
- * complex type which contains a single element which is an array
- * and a single attribute.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='Number'>
- * <complexType>
- * <sequence>
- * <element name='number' nillable='true' type='string' maxOccurs='unbounded'/>
- * </sequence>
- * <attribute name='postcode' type='string'/>
- * </complexType>
- * </element>
- * </sequence>
- * </complexType>
- *
- */
- public void testScenario_R() throws Exception
- {
- generateScenario("R");
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts contains an anonymous complex type which contains
- * an empty sequence and a single attribute.
- *
- * <element name='lookupResponse'>
- * <complexType>
- * <sequence>
- * </sequence>
- * <attribute name='postcode' type='string'/>
- * </complexType>
- * </element>
- *
- */
- public void testScenario_S() throws Exception
- {
- try
- {
- generateScenario("S");
- fail("Expected exception not thrown.");
- }
- catch (WSException e)
- {
- }
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts references a complex type which contains
- * an empty sequence and a single attribute.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * </sequence>
- * <attribute name='postcode' type='string'/>
- * </complexType>
- *
- */
- public void testScenario_T() throws Exception
- {
- try
- {
- generateScenario("T");
- fail("Expected exception not thrown.");
- }
- catch (WSException e)
- {
- }
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts references a complex type which contains an anonymous
- * complex type which contains an empty sequence and a single
- * attribute.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='Number'>
- * <complexType>
- * <sequence>
- * </sequence>
- * <attribute name='postcode' type='string'/>
- * </complexType>
- * </element>
- * </sequence>
- * </complexType>
- *
- */
- public void testScenario_U() throws Exception
- {
- generateScenario("U");
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts contains an anonymous complex type which contains
- * a single attribute.
- *
- * <element name='lookupResponse'>
- * <complexType>
- * <attribute name='postcode' type='string'/>
- * </complexType>
- * </element>
- *
- */
- public void testScenario_V() throws Exception
- {
- try
- {
- generateScenario("V");
- fail("Expected exception not thrown.");
- }
- catch (WSException e)
- {
- }
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts references a complex type which contains
- * a single attribute.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <attribute name='postcode' type='string'/>
- * </complexType>
- *
- */
- public void testScenario_W() throws Exception
- {
- try
- {
- generateScenario("W");
- fail("Expected exception not thrown.");
- }
- catch (WSException e)
- {
- }
- }
-
- /**
- * Test scenario where the element referenced as the message
- * parts references a complex type which contains an anonymous
- * complex type which contains a single attribute.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='Number'>
- * <complexType>
- * <attribute name='postcode' type='string'/>
- * </complexType>
- * </element>
- * </sequence>
- * </complexType>
- *
- */
- public void testScenario_X() throws Exception
- {
- generateScenario("X");
- }
-
- /**
- * Test case to test where the element referenced as the message
- * parts contains an anonymous complex type which contains a
- * single element which is an array (which is a complex type).
- *
- * <complexType name='Telephone'>
- * <sequence>
- * <element name='digits' type='string'/>
- * </sequence>
- * </complexType>
- *
- * <element name='lookupResponse'>
- * <complexType>
- * <sequence>
- * <element name='number' nillable='true' type='tns:Telephone' maxOccurs='unbounded'/>
- * </sequence>
- * </complexType>
- * </element>
- *
- */
- public void testScenario_Y() throws Exception
- {
- generateScenario("Y");
- }
-
- /**
- * Test case to test where the element referenced as the message
- * parts references a complex type which contains a single element
- * which is an array (which is a complex type).
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='Telephone'>
- * <sequence>
- * <element name='digits' type='string'/>
- * </sequence>
- * </complexType>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='number' nillable='true' type='tns:Telephone' maxOccurs='unbounded'/>
- * </sequence>
- * </complexType>
- *
- */
- public void testScenario_Z() throws Exception
- {
- generateScenario("Z");
- }
-
- /**
- * Test case to test where the element referenced as the message
- * parts references a complex type which contains an anonymous type
- * which contains a single element which is an array (which is a comlex type).
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='Title'>
- * <sequence>
- * <element name='text' type='string'/>
- * </sequence>
- * </complexType>
- *
- * <complexType name='Person'>
- * <sequence>
- * <element name='Name'>
- * <complexType>
- * <sequence>
- * <element name='surname' nillable='true' type='tns:Title' maxOccurs='unbounded'/>
- * </sequence>
- * </complexType>
- * </element>
- * </sequence>
- * </complexType>
- *
- */
- public void testScenario_AA() throws Exception
- {
- generateScenario("AA");
- }
-
- /**
- * Test case to test where the element referenced as the message
- * parts contains an anonymous simple type.
- *
- * <element name='lookupResponse'>
- * <simpleType>
- * <restriction base='string'>
- * <maxLength value="50"/>
- * </restriction>
- * </simpleType>
- * </element>
- *
- */
- public void testScenario_AB() throws Exception
- {
- try
- {
- generateScenario("AB");
- fail("Expected exception not thrown.");
- }
- catch (WSException e)
- {
- }
- }
-
- /**
- * Test case to test where the element referenced as the message
- * parts references a named simple type.
- *
- * <element name='lookupResponse' type='tns:number'/>
- *
- * <simpleType name='number'>
- * <restriction base='string'>
- * <maxLength value="50"/>
- * </restriction>
- * </simpleType>
- *
- */
- public void testScenario_AC() throws Exception
- {
- try
- {
- generateScenario("AC");
- fail("Expected exception not thrown.");
- }
- catch (WSException e)
- {
- }
- }
-
- /**
- * Test scenario where the element referenced as the input message
- * part contains an anonymous complex type which contains
- * two elements.
- *
- * The element referenced as the output message part contains an
- * anonymous complex type with a single element.
- *
- * <element name='lookupResponse'>
- * <complexType>
- * <sequence>
- * <element name='number' nillable='true' type='string'/>
- * </sequence>
- * </complexType>
- * </element>
- *
- */
- public void testScenario_AD() throws Exception
- {
- generateScenario("AD");
- }
-
- /**
- * Test scenario where the element referenced as the input message
- * part references a complex type which contains two elements.
- *
- * The element referenced as the output message part references a
- * complex type with a single element.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='number' nillable='true' type='string'/>
- * </sequence>
- * </complexType>
- *
- */
- public void testScenario_AE() throws Exception
- {
- generateScenario("AE");
- }
-
- /**
- * Test scenario where the element referenced as the input message
- * part references a complex type which contains an element which
- * contains an anonymous complex type which contains two elements.
- *
- * The element referenced as the output message part references a
- * complex type which contains an element which contains an anonymous
- * complex type which contains a single element.
- *
- * <element name='lookupResponse' type='tns:TelephoneNumber'/>
- *
- * <complexType name='TelephoneNumber'>
- * <sequence>
- * <element name='Number'>
- * <complexType>
- * <sequence>
- * <element name='number' nillable='true' type='string'/>
- * </sequence>
- * </complexType>
- * </element>
- * </sequence>
- * </complexType>
- *
- */
- public void testScenario_AF() throws Exception
- {
- generateScenario("AF");
- }
-
- /**
- * Test scenario where unwrapping should not occur as the element for the request
- * message does not match the name of the operation.
- *
- * <operation name='lookup'>
- * <input message='tns:PhoneBook_lookup'/>
- * <output message='tns:PhoneBook_lookupResponse'/>
- * </operation>
- *
- * <message name='PhoneBook_lookup'>
- * <part element='ns1:lookupPerson' name='parameters'/>
- * </message>
- */
- public void testScenario_AG() throws Exception
- {
- try
- {
- generateScenario("AG");
- fail("Expected exception not thrown.");
- }
- catch (WSException e)
- {
- }
- }
-
- protected void generateScenario(final String scenario) throws Exception
- {
- String resourceDir = "resources/tools/jbws1260/scenario_" + scenario;
- String toolsDir = "tools/jbws1260/scenario_" + scenario;
- String[] args = new String[] { "-dest", toolsDir, "-config", resourceDir + "/wstools-config.xml" };
- new WSTools().generate(args);
-
- File resourceDirFile = new File(resourceDir);
- String[] expectedFiles = resourceDirFile.list(new FilenameFilter() {
- public boolean accept(File dir, String name)
- {
- return name.endsWith(".java");
- }
- });
-
- for (int i = 0; i < expectedFiles.length; i++)
- {
- String currentFile = expectedFiles[i];
-
- try
- {
- compareSource(resourceDir + "/" + currentFile, toolsDir + "/org/jboss/test/ws/jbws1260/" + currentFile);
- }
- catch (Exception e)
- {
- throw new Exception("Validation of '" + currentFile + "' failed.", e);
- }
- }
-
- File packageDir = new File(toolsDir + "/org/jboss/test/ws/jbws1260");
- String[] generatedFiles = packageDir.list();
- for (int i = 0; i < generatedFiles.length; i++)
- {
- String currentFile = generatedFiles[i];
-
- boolean matched = "PhoneBook_Service.java".equals(currentFile);
-
- for (int j = 0; j < expectedFiles.length && (matched == false); j++)
- matched = currentFile.equals(expectedFiles[j]);
-
- assertTrue("File '" + currentFile + "' was not expected to be generated", matched);
- }
-
- JaxrpcMappingValidator mappingValidator = new JaxrpcMappingValidator();
- mappingValidator.validate(resourceDir + "/wrapped-mapping.xml", toolsDir + "/wrapped-mapping.xml");
- }
-
- private static void compareSource(final String expectedName, final String generatedName) throws Exception
- {
- File expected = new File(expectedName);
- File generated = new File(generatedName);
-
- JBossSourceComparator sc = new JBossSourceComparator(expected, generated);
- sc.validate();
- sc.validateImports();
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/jbws1260/JBWS1260TestCase.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/java/org/jboss/test/ws/tools/jbws1260/JBWS1260TestCase.java)
Modified: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/validation/JaxrpcMappingValidator.java
===================================================================
--- branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/validation/JaxrpcMappingValidator.java 2007-01-08 21:50:24 UTC (rev 1869)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/java/org/jboss/test/ws/tools/validation/JaxrpcMappingValidator.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,27 +1,28 @@
/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, 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.
- */
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, 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.validation;
import java.io.File;
+import java.util.HashMap;
import javax.xml.namespace.QName;
@@ -48,419 +49,435 @@
public class JaxrpcMappingValidator
{
public static Logger log = Logger.getLogger(JaxrpcMappingValidator.class);
- /**
- * Validates two jaxrpc mapping files given their location as strings
- *
- * @param mappingFile1 location of the first mapping file
- * @param mappingFile2 location of the second mapping file
- * @return true - both are equal, false - Do not match
- * @throws Exception
- */
- public boolean validate(String mappingFile1, String mappingFile2) throws Exception
- {
- JavaWsdlMappingFactory mappingFactory = JavaWsdlMappingFactory.newInstance();
- JavaWsdlMapping javaWsdlMapping1 = mappingFactory.parse(new File(mappingFile1).toURL());
- JavaWsdlMapping javaWsdlMapping2 = mappingFactory.parse(new File(mappingFile2).toURL());
- return validate(javaWsdlMapping1,javaWsdlMapping2);
- }
-
- /**
- * Validates two mapping metadata models
- *
- * @param jw1 metadata model for the first mapping file
- * @param jw2 metadata model for the second mapping file
- * @return
- */
- public boolean validate(JavaWsdlMapping jw1, JavaWsdlMapping jw2)
- {
- boolean bool = true;
- bool = validatePackageMappings(jw1.getPackageMappings(),jw2.getPackageMappings());
- if(bool)
- bool = validateJavaXmlTypeMappings(jw1.getJavaXmlTypeMappings(),
- jw2.getJavaXmlTypeMappings());
- else
- throw new IllegalStateException("Validation of PackageMappings failed");
- if(bool)
- bool = validateServiceInterfaceMappings(jw1.getServiceInterfaceMappings(),
- jw2.getServiceInterfaceMappings());
- else
- throw new IllegalStateException("Validation of JavaXmlTypeMappings failed");
- if(bool)
- bool = validateServiceEndpointInterfaceMappings(jw1.getServiceEndpointInterfaceMappings(),
- jw2.getServiceEndpointInterfaceMappings());
- else
- throw new IllegalStateException("Validation of ServiceInterfaceMappings failed");
-
- if(bool == false)
- throw new IllegalStateException("Validation of ServiceEndpointInterfaceMappings failed");
- return bool;
- }
-
- //PRIVATE METHODS
- private boolean validatePackageMappings(PackageMapping[] pm1, PackageMapping[] pm2)
- {
- boolean bool = true;
- int len1 = pm1 != null ? pm1.length : 0;
- int len2 = pm2 != null ? pm2.length : 0;
- if(len1 != len2) return false;
- for(int i =0; i < len1; i++)
- {
- bool = validatePackageMapping( pm1[i], pm2[i]);
- if( bool == false) break;
- }
- return bool;
- }
-
- private boolean validatePackageMapping(PackageMapping pm1, PackageMapping pm2)
- {
- boolean bool = true;
- bool = checkStringEquality(pm1.getPackageType(),pm2.getPackageType());
- if(bool)
- bool = checkStringEquality(pm1.getNamespaceURI(),pm2.getNamespaceURI());
- else
- throw new IllegalStateException("Validation of PackageMapping/PackageType failed");
-
- if(bool == false)
- throw new IllegalStateException("Validation of PackageMapping/NamespaceURI failed");
- return bool;
- }
-
- private boolean validateJavaXmlTypeMappings(JavaXmlTypeMapping[] jm1,
- JavaXmlTypeMapping[] jm2)
- {
- boolean bool = true;
- int len1 = jm1 != null ? jm1.length : 0;
- int len2 = jm2 != null ? jm2.length : 0;
- if(len1 != len2)
- {
- throw new IllegalStateException("Length of JavaXmlTypeMapping[] do not match");
- }
+ /**
+ * Validates two jaxrpc mapping files given their location as strings
+ *
+ * @param mappingFile1 location of the first mapping file
+ * @param mappingFile2 location of the second mapping file
+ * @return true - both are equal, false - Do not match
+ * @throws Exception
+ */
+ public boolean validate(String mappingFile1, String mappingFile2) throws Exception
+ {
+ JavaWsdlMappingFactory mappingFactory = JavaWsdlMappingFactory.newInstance();
+ JavaWsdlMapping javaWsdlMapping1 = mappingFactory.parse(new File(mappingFile1).toURL());
+ JavaWsdlMapping javaWsdlMapping2 = mappingFactory.parse(new File(mappingFile2).toURL());
+ return validate(javaWsdlMapping1, javaWsdlMapping2);
+ }
- for(int i =0; i < len1; i++)
- {
- //Now go over the other array to see possible match
- for(int j = 0; j < len1; j++)
- {
- bool = validateJavaXmlTypeMapping( jm1[i], jm2[j]);
- if(bool)
- break;
- }
- //bool = validateJavaXmlTypeMapping( jm1[i], jm2[i]);
- if( bool == false)
- {
- throw new IllegalStateException(jm1[i] + " does not match with other side");
- }
- }
- return bool;
- }
-
- private boolean validateJavaXmlTypeMapping(JavaXmlTypeMapping jm1,
- JavaXmlTypeMapping jm2)
- {
- boolean bool = true;
- bool = checkStringEquality(jm1.getJavaType(),jm2.getJavaType());
- if(bool)
- bool = checkStringEquality(jm1.getQnameScope(),jm2.getQnameScope());
- if(bool)
- bool = checkQNameEquality(jm1.getRootTypeQName(),jm2.getRootTypeQName());
- if(bool)
- bool = checkQNameEquality(jm1.getAnonymousTypeQName(),jm2.getAnonymousTypeQName());
- if(bool)
- bool = validateVariableMappings(jm1.getVariableMappings(),jm2.getVariableMappings());
-
- return bool;
- }
-
- private boolean validateVariableMappings(VariableMapping[] vm1, VariableMapping[] vm2)
- {
- boolean bool = true;
- int len1 = vm1 != null ? vm1.length : 0;
- int len2 = vm2 != null ? vm2.length : 0;
- if(len1 != len2)
- {
- throw new IllegalStateException("Length of VariableMapping[] do not match");
- }
+ /**
+ * Validates two mapping metadata models
+ *
+ * @param jw1 metadata model for the first mapping file
+ * @param jw2 metadata model for the second mapping file
+ * @return
+ */
+ public boolean validate(JavaWsdlMapping jw1, JavaWsdlMapping jw2)
+ {
+ boolean bool = true;
+ bool = validatePackageMappings(jw1.getPackageMappings(), jw2.getPackageMappings());
+ if (bool)
+ bool = validateJavaXmlTypeMappings(jw1.getJavaXmlTypeMappings(), jw2.getJavaXmlTypeMappings());
+ else throw new IllegalStateException("Validation of PackageMappings failed");
+ if (bool)
+ bool = validateServiceInterfaceMappings(jw1.getServiceInterfaceMappings(), jw2.getServiceInterfaceMappings());
+ else throw new IllegalStateException("Validation of JavaXmlTypeMappings failed");
- for(int i =0; i < len1; i++)
- {
- bool = validateVariableMapping( vm1[i], vm2[i]);
- if( bool == false)
- throw new IllegalStateException("VariableMapping" + vm1[i] + " does not match with "+vm2[i]);
-
- }
- return bool;
- }
-
- private boolean validateVariableMapping(VariableMapping vm1, VariableMapping vm2)
- {
- boolean bool = true;
- bool = checkStringEquality(vm1.getJavaVariableName(),vm2.getJavaVariableName());
- if(bool)
- bool = checkStringEquality(vm1.getXmlAttributeName(),vm2.getXmlAttributeName());
- if(bool)
- bool = checkStringEquality(vm1.getXmlElementName(),vm2.getXmlElementName());
- if(bool)
- bool = vm1.getXmlWildcard() == vm2.getXmlWildcard();
- if(bool)
- bool = vm1.isDataMember() == vm2.isDataMember();
- return bool;
- }
-
- private boolean validateServiceInterfaceMappings(ServiceInterfaceMapping[] sim1,
- ServiceInterfaceMapping[] sim2)
- {
- boolean bool = true;
- int len1 = sim1 != null ? sim1.length : 0;
- int len2 = sim2 != null ? sim2.length : 0;
- if(len1 != len2)
- {
- throw new IllegalStateException("Length of ServiceInterfaceMapping[] do not match");
- }
+ if (bool)
+ bool = validateServiceEndpointInterfaceMappings(jw1.getServiceEndpointInterfaceMappings(), jw2.getServiceEndpointInterfaceMappings());
+ else throw new IllegalStateException("Validation of ServiceInterfaceMappings failed");
- for(int i =0; i < len1; i++)
- {
- bool = validateServiceInterfaceMapping( sim1[i], sim2[i]);
- if( bool == false) break;
- }
- return bool;
- }
-
- private boolean validateServiceInterfaceMapping(ServiceInterfaceMapping sim1,
- ServiceInterfaceMapping sim2)
- {
- boolean bool = true;
- bool = checkStringEquality(sim1.getServiceInterface(),sim2.getServiceInterface());
- if(bool)
- bool = checkQNameEquality(sim1.getWsdlServiceName(),sim2.getWsdlServiceName());
- if(bool)
- bool = validatePortMappings(sim1.getPortMappings(),sim2.getPortMappings());
- return bool;
- }
-
- private boolean validatePortMappings(PortMapping[] pm1, PortMapping[] pm2 )
- {
- boolean bool = true;
+ if (bool == false)
+ throw new IllegalStateException("Validation of ServiceEndpointInterfaceMappings failed");
+ return bool;
+ }
- int len1 = pm1 != null ? pm1.length : 0;
- int len2 = pm2 != null ? pm2.length : 0;
- if(len1 != len2)
- {
- throw new IllegalStateException("Length of PortMapping[] do not match");
- }
+ //PRIVATE METHODS
+ private boolean validatePackageMappings(PackageMapping[] pm1, PackageMapping[] pm2)
+ {
+ boolean bool = true;
+ int len1 = pm1 != null ? pm1.length : 0;
+ int len2 = pm2 != null ? pm2.length : 0;
+ if (len1 != len2)
+ throw new IllegalStateException("Number of package mappings does not match expected=" + len1 + " actual=" + len2);
- for(int i =0; i < len1; i++)
- {
- bool = validatePortMapping( pm1[i], pm2[i]);
- if( bool == false) break;
- }
- return bool;
- }
-
- private boolean validatePortMapping( PortMapping pm1, PortMapping pm2)
- {
- boolean bool = true;
- bool = checkStringEquality(pm1.getPortName(),pm2.getJavaPortName());
- if(bool)
- bool = checkStringEquality(pm1.getJavaPortName(),pm2.getJavaPortName());
- return bool;
- }
-
- private boolean validateServiceEndpointInterfaceMappings(ServiceEndpointInterfaceMapping[] sm1,
- ServiceEndpointInterfaceMapping[] sm2)
- {
- boolean bool = true;
+ for (int i = 0; i < len1; i++)
+ {
+ bool = validatePackageMapping(pm1[i], pm2[i]);
+ if (bool == false)
+ break;
+ }
+ return bool;
+ }
- int len1 = sm1 != null ? sm1.length : 0;
- int len2 = sm2 != null ? sm2.length : 0;
- if(len1 != len2)
- {
- throw new IllegalStateException("Length of ServiceEndpointInterfaceMapping[] do not match");
- }
+ private boolean validatePackageMapping(PackageMapping pm1, PackageMapping pm2)
+ {
+ String expectedPackage = pm1.getPackageType();
+ String actualPackage = pm2.getPackageType();
- for(int i =0; i < len1; i++)
- {
- for(int j = 0 ; j < len1; j++)
- {
- bool = validateServiceEndpointInterfaceMapping( sm1[i], sm2[j]);
- if (bool)
- break;
- }
- if( bool == false)
- throw new IllegalStateException(sm1[i].getServiceEndpointInterface() + " has no match");
- }
- return bool;
- }
-
- private boolean validateServiceEndpointInterfaceMapping(ServiceEndpointInterfaceMapping sm1,
- ServiceEndpointInterfaceMapping sm2)
- {
- boolean bool = true;
- bool = checkStringEquality(sm1.getServiceEndpointInterface(),sm2.getServiceEndpointInterface());
- if(bool)
- bool = checkQNameEquality(sm1.getWsdlBinding(),sm2.getWsdlBinding());
- if(bool)
- bool = checkQNameEquality(sm1.getWsdlPortType(),sm2.getWsdlPortType());
- if(bool)
- bool = validateServiceEndpointMethodMappings(sm1.getServiceEndpointMethodMappings(),
- sm2.getServiceEndpointMethodMappings());
- return bool;
- }
-
- private boolean validateServiceEndpointMethodMappings(ServiceEndpointMethodMapping[] semm1,
- ServiceEndpointMethodMapping[] semm2)
- {
- boolean bool = true;
+ if (checkStringEquality(expectedPackage, actualPackage) == false)
+ {
+ throw new IllegalStateException("Package type '" + expectedPackage + "' does not equal '" + actualPackage + "'");
+ }
- int len1 = semm1 != null ? semm1.length : 0;
- int len2 = semm2 != null ? semm2.length : 0;
- if(len1 != len2)
- {
- throw new IllegalStateException("Length of ServiceEndpointMethodMapping[] do not match");
- }
+ String expectedNamespace = pm1.getNamespaceURI();
+ String actualNamespace = pm2.getNamespaceURI();
- for(int i =0; i < len1; i++)
- {
- for(int j = 0 ; j < len1; j++)
- {
- bool = validateServiceEndpointMethodMapping( semm1[i], semm2[j]);
- if(bool)
- break;
- }
- if( bool == false)
- throw new IllegalStateException(semm1[i].getJavaMethodName() + " do not match in"
- + " in ServiceEndpointMethod Mapping");
-
- }
- return bool;
- }
-
- private boolean validateServiceEndpointMethodMapping(ServiceEndpointMethodMapping semm1,
- ServiceEndpointMethodMapping semm2)
- {
- boolean bool = true;
- bool = checkStringEquality(semm1.getJavaMethodName(),semm2.getJavaMethodName());
- if(bool)
- bool = checkStringEquality(semm1.getWsdlOperation(),semm2.getWsdlOperation());
- else
- log.error("getJavaMethodName check failed");
- if(bool)
- bool = semm1.isWrappedElement() == semm2.isWrappedElement();
- else
- log.error("wsdloperation check failed");
- if(bool)
- bool = validateWsdlReturnValueMapping(semm1.getWsdlReturnValueMapping(),
- semm2.getWsdlReturnValueMapping());
- else
- log.error("isWrappedElement check failed");
- if(bool)
- bool = validateMethodParamPartsMappings(semm1.getMethodParamPartsMappings(),
- semm2.getMethodParamPartsMappings());
- else
- log.error("validateWsdlReturnValueMapping check failed");
-
- if(bool == false)
- log.error("validateMethodParamPartsMappings check failed");
- return bool;
- }
-
- private boolean validateWsdlReturnValueMapping(WsdlReturnValueMapping w1, WsdlReturnValueMapping w2)
- {
- checkNullParametersInconsistency(w1,w2,WsdlReturnValueMapping.class);
- boolean bool = true;
- if(w1 != null && w2 != null)
- {
- bool = checkStringEquality(w1.getMethodReturnValue(),w2.getMethodReturnValue());
- if(bool)
- bool = checkStringEquality(w1.getWsdlMessagePartName(),w2.getWsdlMessagePartName());
- if(bool)
- bool = checkQNameEquality(w1.getWsdlMessage(),w2.getWsdlMessage());
- }
-
- return bool;
- }
-
- private boolean validateMethodParamPartsMappings(MethodParamPartsMapping[] mppm1,
- MethodParamPartsMapping[] mppm2)
- {
- boolean bool = true;
+ if (checkStringEquality(expectedPackage, actualPackage) == false)
+ {
+ throw new IllegalStateException("Namespace '" + expectedNamespace + "' does not equal '" + actualNamespace + "'");
+ }
- int len1 = mppm1 != null ? mppm1.length : 0;
- int len2 = mppm2 != null ? mppm2.length : 0;
- if(len1 != len2)
- {
- throw new IllegalStateException("Length of MethodParamPartsMapping[] do not match");
- }
+ return true;
+ }
- for(int i =0; i < len1; i++)
- {
- bool = validateMethodParamPartsMapping( mppm1[i], mppm2[i]);
- if( bool == false) break;
- }
- return bool;
- }
-
- private boolean validateMethodParamPartsMapping(MethodParamPartsMapping mppm1,
- MethodParamPartsMapping mppm2)
- {
- boolean bool = true;
- bool = mppm1.getParamPosition() == mppm2.getParamPosition();
- if(bool)
- bool = checkStringEquality(mppm1.getParamType(), mppm2.getParamType());
- if(bool)
- bool = validateWsdlMessageMapping(mppm1.getWsdlMessageMapping(),mppm2.getWsdlMessageMapping());
- return bool;
- }
-
- private boolean validateWsdlMessageMapping(WsdlMessageMapping wmm1,WsdlMessageMapping wmm2)
- {
- String semmName = wmm1.getMethodParamPartsMapping().getServiceEndpointMethodMapping().getJavaMethodName();
-
- String path = "ServiceEndpointMethodMapping-"+semmName + "/methodparampartsmapping";
- boolean bool = true;
- if(bool)
- bool = checkStringEquality(wmm1.getParameterMode(),wmm2.getParameterMode());
- if(bool)
- bool = checkStringEquality(wmm1.getWsdlMessagePartName(),wmm2.getWsdlMessagePartName());
- else
- throw new IllegalStateException(path + "/parameterMode does not match");
- if(bool)
- bool = checkQNameEquality(wmm1.getWsdlMessage(),wmm2.getWsdlMessage());
- if(bool)
- bool = wmm1.isSoapHeader() == wmm2.isSoapHeader();
- else
- throw new IllegalStateException(path + "/wsdlMessage does not match");
- return bool;
- }
-
- //PRIVATE EQUALITY CHECKS
-
- private boolean checkStringEquality(String str1, String str2)
- {
- if(str1 == null && str2 == null)
- return true;
- if(str1 == null && str2 != null)
- return false;
- if(str1 != null && str2 == null)
- return false;
- return str1.equals(str2);
- }
-
- private boolean checkQNameEquality(QName q1, QName q2)
- {
- if(q1 == null && q2 == null)
- return true;
- if(q1 == null && q2 != null)
- return false;
- if(q1 != null && q2 == null)
- return false;
- return q1.equals(q2);
- }
-
- private void checkNullParametersInconsistency(Object o1, Object o2, Class c)
- {
- WSDLUtils utils = WSDLUtils.getInstance();
- if((o1 == null && o2 != null) || (o1 != null && o2 == null) )
- throw new IllegalStateException(utils.getJustClassName(c) + " does not match");
- }
+ private boolean validateJavaXmlTypeMappings(JavaXmlTypeMapping[] jm1, JavaXmlTypeMapping[] jm2)
+ {
+ int len1 = jm1 != null ? jm1.length : 0;
+ int len2 = jm2 != null ? jm2.length : 0;
+ if (len1 != len2)
+ {
+ throw new IllegalStateException("Length of JavaXmlTypeMapping[] do not match expected=" + len1 + " actual=" + len2);
+ }
+
+ // Don't need the order to be the same so cope with this.
+ HashMap actualMappings = new HashMap(len1);
+
+ for (int i = 0; i < len1; i++)
+ {
+ JavaXmlTypeMapping current = jm2[i];
+ String name = current.getJavaType();
+ if (actualMappings.containsKey(name))
+ {
+ throw new IllegalStateException("Type '" + name + "' registered more than once.");
+ }
+
+ actualMappings.put(name, current);
+ }
+
+ for (int i = 0; i < len1; i++)
+ {
+ JavaXmlTypeMapping expected = jm1[i];
+ JavaXmlTypeMapping actual = (JavaXmlTypeMapping)actualMappings.get(expected.getJavaType());
+
+ if (actual == null)
+ {
+ throw new IllegalStateException("Mapping not found for '" + expected.getJavaType() + "'");
+ }
+
+ if (validateJavaXmlTypeMapping(expected, actual) == false)
+ {
+ throw new IllegalStateException(expected + " does not match with other side " + actual);
+ }
+ }
+
+ return true;
+ }
+
+ private boolean validateJavaXmlTypeMapping(JavaXmlTypeMapping jm1, JavaXmlTypeMapping jm2)
+ {
+ boolean bool = true;
+ bool = checkStringEquality(jm1.getJavaType(), jm2.getJavaType());
+ if (bool)
+ bool = checkStringEquality(jm1.getQnameScope(), jm2.getQnameScope());
+ if (bool)
+ bool = checkQNameEquality(jm1.getRootTypeQName(), jm2.getRootTypeQName());
+ if (bool)
+ bool = checkQNameEquality(jm1.getAnonymousTypeQName(), jm2.getAnonymousTypeQName());
+ if (bool)
+ bool = validateVariableMappings(jm1.getVariableMappings(), jm2.getVariableMappings());
+
+ return bool;
+ }
+
+ private boolean validateVariableMappings(VariableMapping[] vm1, VariableMapping[] vm2)
+ {
+ boolean bool = true;
+ int len1 = vm1 != null ? vm1.length : 0;
+ int len2 = vm2 != null ? vm2.length : 0;
+ if (len1 != len2)
+ {
+ throw new IllegalStateException("Length of VariableMapping[] do not match");
+ }
+
+ for (int i = 0; i < len1; i++)
+ {
+ bool = validateVariableMapping(vm1[i], vm2[i]);
+ if (bool == false)
+ throw new IllegalStateException("VariableMapping " + variableMappingToString(vm1[i]) + " does not match with " + variableMappingToString(vm2[i]));
+
+ }
+ return bool;
+ }
+
+ private String variableMappingToString(VariableMapping vm)
+ {
+ StringBuffer sb = new StringBuffer("[");
+ sb.append("JavaVariableName=").append(vm.getJavaVariableName());
+ sb.append(",XmlAttributeName=").append(vm.getXmlAttributeName());
+ sb.append(",XmlElementName=").append(vm.getXmlElementName());
+ sb.append(",XmlWildcard=").append(vm.getXmlWildcard());
+ sb.append(",DataMember=").append(vm.isDataMember());
+ sb.append("]");
+
+ return sb.toString();
+ }
+
+ private boolean validateVariableMapping(VariableMapping vm1, VariableMapping vm2)
+ {
+ boolean bool = true;
+ bool = checkStringEquality(vm1.getJavaVariableName(), vm2.getJavaVariableName());
+ if (bool)
+ bool = checkStringEquality(vm1.getXmlAttributeName(), vm2.getXmlAttributeName());
+ if (bool)
+ bool = checkStringEquality(vm1.getXmlElementName(), vm2.getXmlElementName());
+ if (bool)
+ bool = vm1.getXmlWildcard() == vm2.getXmlWildcard();
+ if (bool)
+ bool = vm1.isDataMember() == vm2.isDataMember();
+ return bool;
+ }
+
+ private boolean validateServiceInterfaceMappings(ServiceInterfaceMapping[] sim1, ServiceInterfaceMapping[] sim2)
+ {
+ boolean bool = true;
+ int len1 = sim1 != null ? sim1.length : 0;
+ int len2 = sim2 != null ? sim2.length : 0;
+ if (len1 != len2)
+ {
+ throw new IllegalStateException("Length of ServiceInterfaceMapping[] do not match");
+ }
+
+ for (int i = 0; i < len1; i++)
+ {
+ bool = validateServiceInterfaceMapping(sim1[i], sim2[i]);
+ if (bool == false)
+ break;
+ }
+ return bool;
+ }
+
+ private boolean validateServiceInterfaceMapping(ServiceInterfaceMapping sim1, ServiceInterfaceMapping sim2)
+ {
+ boolean bool = true;
+ bool = checkStringEquality(sim1.getServiceInterface(), sim2.getServiceInterface());
+ if (bool)
+ bool = checkQNameEquality(sim1.getWsdlServiceName(), sim2.getWsdlServiceName());
+ if (bool)
+ bool = validatePortMappings(sim1.getPortMappings(), sim2.getPortMappings());
+ return bool;
+ }
+
+ private boolean validatePortMappings(PortMapping[] pm1, PortMapping[] pm2)
+ {
+ boolean bool = true;
+
+ int len1 = pm1 != null ? pm1.length : 0;
+ int len2 = pm2 != null ? pm2.length : 0;
+ if (len1 != len2)
+ {
+ throw new IllegalStateException("Length of PortMapping[] do not match");
+ }
+
+ for (int i = 0; i < len1; i++)
+ {
+ bool = validatePortMapping(pm1[i], pm2[i]);
+ if (bool == false)
+ break;
+ }
+ return bool;
+ }
+
+ private boolean validatePortMapping(PortMapping pm1, PortMapping pm2)
+ {
+ boolean bool = true;
+ bool = checkStringEquality(pm1.getPortName(), pm2.getJavaPortName());
+ if (bool)
+ bool = checkStringEquality(pm1.getJavaPortName(), pm2.getJavaPortName());
+ return bool;
+ }
+
+ private boolean validateServiceEndpointInterfaceMappings(ServiceEndpointInterfaceMapping[] sm1, ServiceEndpointInterfaceMapping[] sm2)
+ {
+ boolean bool = true;
+
+ int len1 = sm1 != null ? sm1.length : 0;
+ int len2 = sm2 != null ? sm2.length : 0;
+ if (len1 != len2)
+ {
+ throw new IllegalStateException("Length of ServiceEndpointInterfaceMapping[] do not match");
+ }
+
+ for (int i = 0; i < len1; i++)
+ {
+ for (int j = 0; j < len1; j++)
+ {
+ bool = validateServiceEndpointInterfaceMapping(sm1[i], sm2[j]);
+ if (bool)
+ break;
+ }
+ if (bool == false)
+ throw new IllegalStateException(sm1[i].getServiceEndpointInterface() + " has no match");
+ }
+ return bool;
+ }
+
+ private boolean validateServiceEndpointInterfaceMapping(ServiceEndpointInterfaceMapping sm1, ServiceEndpointInterfaceMapping sm2)
+ {
+ boolean bool = true;
+ bool = checkStringEquality(sm1.getServiceEndpointInterface(), sm2.getServiceEndpointInterface());
+ if (bool)
+ bool = checkQNameEquality(sm1.getWsdlBinding(), sm2.getWsdlBinding());
+ if (bool)
+ bool = checkQNameEquality(sm1.getWsdlPortType(), sm2.getWsdlPortType());
+ if (bool)
+ bool = validateServiceEndpointMethodMappings(sm1.getServiceEndpointMethodMappings(), sm2.getServiceEndpointMethodMappings());
+ return bool;
+ }
+
+ private boolean validateServiceEndpointMethodMappings(ServiceEndpointMethodMapping[] semm1, ServiceEndpointMethodMapping[] semm2)
+ {
+ boolean bool = true;
+
+ int len1 = semm1 != null ? semm1.length : 0;
+ int len2 = semm2 != null ? semm2.length : 0;
+ if (len1 != len2)
+ {
+ throw new IllegalStateException("Length of ServiceEndpointMethodMapping[] do not match");
+ }
+
+ for (int i = 0; i < len1; i++)
+ {
+ for (int j = 0; j < len1; j++)
+ {
+ bool = validateServiceEndpointMethodMapping(semm1[i], semm2[j]);
+ if (bool)
+ break;
+ }
+ if (bool == false)
+ throw new IllegalStateException(semm1[i].getJavaMethodName() + " do not match in" + " in ServiceEndpointMethod Mapping");
+
+ }
+ return bool;
+ }
+
+ private boolean validateServiceEndpointMethodMapping(ServiceEndpointMethodMapping semm1, ServiceEndpointMethodMapping semm2)
+ {
+ boolean bool = true;
+ bool = checkStringEquality(semm1.getJavaMethodName(), semm2.getJavaMethodName());
+ if (bool)
+ bool = checkStringEquality(semm1.getWsdlOperation(), semm2.getWsdlOperation());
+ else log.error("getJavaMethodName check failed");
+ if (bool)
+ bool = semm1.isWrappedElement() == semm2.isWrappedElement();
+ else log.error("wsdloperation check failed");
+ if (bool)
+ bool = validateWsdlReturnValueMapping(semm1.getWsdlReturnValueMapping(), semm2.getWsdlReturnValueMapping());
+ else log.error("isWrappedElement check failed");
+ if (bool)
+ bool = validateMethodParamPartsMappings(semm1.getMethodParamPartsMappings(), semm2.getMethodParamPartsMappings());
+ else log.error("validateWsdlReturnValueMapping check failed");
+
+ if (bool == false)
+ log.error("validateMethodParamPartsMappings check failed");
+ return bool;
+ }
+
+ private boolean validateWsdlReturnValueMapping(WsdlReturnValueMapping w1, WsdlReturnValueMapping w2)
+ {
+ checkNullParametersInconsistency(w1, w2, WsdlReturnValueMapping.class);
+ boolean bool = true;
+ if (w1 != null && w2 != null)
+ {
+ bool = checkStringEquality(w1.getMethodReturnValue(), w2.getMethodReturnValue());
+ if (bool)
+ bool = checkStringEquality(w1.getWsdlMessagePartName(), w2.getWsdlMessagePartName());
+ if (bool)
+ bool = checkQNameEquality(w1.getWsdlMessage(), w2.getWsdlMessage());
+ }
+
+ return bool;
+ }
+
+ private boolean validateMethodParamPartsMappings(MethodParamPartsMapping[] mppm1, MethodParamPartsMapping[] mppm2)
+ {
+ boolean bool = true;
+
+ int len1 = mppm1 != null ? mppm1.length : 0;
+ int len2 = mppm2 != null ? mppm2.length : 0;
+ if (len1 != len2)
+ {
+ throw new IllegalStateException("Length of MethodParamPartsMapping[] do not match");
+ }
+
+ for (int i = 0; i < len1; i++)
+ {
+ bool = validateMethodParamPartsMapping(mppm1[i], mppm2[i]);
+ if (bool == false)
+ break;
+ }
+ return bool;
+ }
+
+ private boolean validateMethodParamPartsMapping(MethodParamPartsMapping mppm1, MethodParamPartsMapping mppm2)
+ {
+ boolean bool = true;
+ bool = mppm1.getParamPosition() == mppm2.getParamPosition();
+ if (bool)
+ bool = checkStringEquality(mppm1.getParamType(), mppm2.getParamType());
+ if (bool)
+ bool = validateWsdlMessageMapping(mppm1.getWsdlMessageMapping(), mppm2.getWsdlMessageMapping());
+ return bool;
+ }
+
+ private boolean validateWsdlMessageMapping(WsdlMessageMapping wmm1, WsdlMessageMapping wmm2)
+ {
+ String semmName = wmm1.getMethodParamPartsMapping().getServiceEndpointMethodMapping().getJavaMethodName();
+
+ String path = "ServiceEndpointMethodMapping-" + semmName + "/methodparampartsmapping";
+ boolean bool = true;
+ if (bool)
+ bool = checkStringEquality(wmm1.getParameterMode(), wmm2.getParameterMode());
+ if (bool)
+ bool = checkStringEquality(wmm1.getWsdlMessagePartName(), wmm2.getWsdlMessagePartName());
+ else throw new IllegalStateException(path + "/parameterMode does not match");
+ if (bool)
+ bool = checkQNameEquality(wmm1.getWsdlMessage(), wmm2.getWsdlMessage());
+ if (bool)
+ bool = wmm1.isSoapHeader() == wmm2.isSoapHeader();
+ else throw new IllegalStateException(path + "/wsdlMessage does not match");
+ return bool;
+ }
+
+ //PRIVATE EQUALITY CHECKS
+
+ private boolean checkStringEquality(String str1, String str2)
+ {
+ if (str1 == null && str2 == null)
+ return true;
+ if (str1 == null && str2 != null)
+ return false;
+ if (str1 != null && str2 == null)
+ return false;
+ return str1.equals(str2);
+ }
+
+ private boolean checkQNameEquality(QName q1, QName q2)
+ {
+ if (q1 == null && q2 == null)
+ return true;
+ if (q1 == null && q2 != null)
+ return false;
+ if (q1 != null && q2 == null)
+ return false;
+ return q1.equals(q2);
+ }
+
+ private void checkNullParametersInconsistency(Object o1, Object o2, Class c)
+ {
+ WSDLUtils utils = WSDLUtils.getInstance();
+ if ((o1 == null && o2 != null) || (o1 != null && o2 == null))
+ throw new IllegalStateException(utils.getJustClassName(c) + " does not match");
+ }
}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/LookupResponseNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1079/LookupResponseNumber.java)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1079/Person.java)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1079/PhoneBook_PortType.java)
Modified: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/TelephoneNumber.java 2007-01-08 21:50:24 UTC (rev 1869)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,27 +1,26 @@
-/*
- * JBossWS WS-Tools Generated Source
- *
- * Generation Date: Sun Nov 05 12:21:27 CET 2006
- *
- * This generated source code represents a derivative work of the input to
- * the generator that produced it. Consult the input for the copyright and
- * terms of use that apply to this source code.
- */
+// 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.jbws1079;
-public class TelephoneNumber
-{
-
-protected org.jboss.test.ws.jbws1079.TelephoneNumberNumber number;
-public TelephoneNumber(){}
-
-public TelephoneNumber(org.jboss.test.ws.jbws1079.TelephoneNumberNumber number){
-this.number=number;
+public class TelephoneNumber {
+ protected org.jboss.test.ws.jbws1079.LookupResponseNumber number;
+
+ public TelephoneNumber() {
+ }
+
+ public TelephoneNumber(org.jboss.test.ws.jbws1079.LookupResponseNumber number) {
+ this.number = number;
+ }
+
+ public org.jboss.test.ws.jbws1079.LookupResponseNumber getNumber() {
+ return number;
+ }
+
+ public void setNumber(org.jboss.test.ws.jbws1079.LookupResponseNumber number) {
+ this.number = number;
+ }
}
-public org.jboss.test.ws.jbws1079.TelephoneNumberNumber getNumber() { return number ;}
-
-public void setNumber(org.jboss.test.ws.jbws1079.TelephoneNumberNumber number){ this.number=number; }
-
-}
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/TelephoneNumberNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/TelephoneNumberNumber.java 2007-01-08 21:50:24 UTC (rev 1869)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/TelephoneNumberNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,34 +0,0 @@
-/*
- * JBossWS WS-Tools Generated Source
- *
- * Generation Date: Sun Nov 05 12:21:27 CET 2006
- *
- * This generated source code represents a derivative work of the input to
- * the generator that produced it. Consult the input for the copyright and
- * terms of use that apply to this source code.
- */
-
-package org.jboss.test.ws.jbws1079;
-
-
-public class TelephoneNumberNumber
-{
-
-protected java.lang.String areaCode;
-
-protected java.lang.String number;
-public TelephoneNumberNumber(){}
-
-public TelephoneNumberNumber(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; }
-
-}
Modified: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/anonymous-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/anonymous-mapping.xml 2007-01-08 21:50:24 UTC (rev 1869)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1079/anonymous-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,72 +1,77 @@
-<?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.jbws1079</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1079</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1079.Person</java-type>
- <root-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1079/types'>typeNS:Person</root-type-qname>
- <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>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1079.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1079/types'>typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1079.TelephoneNumberNumber</java-type>
- <anonymous-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1079/types'>typeNS:>Number</anonymous-type-qname>
- <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>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1079.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS='http://test.jboss.org/ws/jbws1079'>serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1079.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS='http://test.jboss.org/ws/jbws1079'>portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS='http://test.jboss.org/ws/jbws1079'>bindingNS:PhoneBookBinding</wsdl-binding>
- <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.jbws1079.Person</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS='http://test.jboss.org/ws/jbws1079'>wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <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.jbws1079.TelephoneNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS='http://test.jboss.org/ws/jbws1079'>wsdlMsgNS:PhoneBook_lookupResponse</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
+<?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.jbws1079</package-type>
+ <namespaceURI>http://test.jboss.org/ws/jbws1079</namespaceURI>
+ </package-mapping>
+ <package-mapping>
+ <package-type>org.jboss.test.ws.jbws1079</package-type>
+ <namespaceURI>http://test.jboss.org/ws/jbws1079/types</namespaceURI>
+ </package-mapping>
+ <java-xml-type-mapping>
+ <java-type>org.jboss.test.ws.jbws1079.LookupResponseNumber</java-type>
+ <anonymous-type-qname>http://test.jboss.org/ws/jbws1079/types:>TelephoneNumber>Number</anonymous-type-qname>
+ <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.jbws1079.TelephoneNumber</java-type>
+ <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1079/types">typeNS:TelephoneNumber</root-type-qname>
+ <qname-scope>complexType</qname-scope>
+ <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.jbws1079.Person</java-type>
+ <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1079/types">typeNS:Person</root-type-qname>
+ <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.jbws1079.PhoneBook_Service</service-interface>
+ <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1079">serviceNS:PhoneBook</wsdl-service-name>
+ <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.jbws1079.PhoneBook_PortType</service-endpoint-interface>
+ <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1079">portTypeNS:PhoneBook</wsdl-port-type>
+ <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1079">bindingNS:PhoneBookBinding</wsdl-binding>
+ <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.jbws1079.Person</param-type>
+ <wsdl-message-mapping>
+ <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1079">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
+ <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.jbws1079.TelephoneNumber</method-return-value>
+ <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1079">wsdlMsgNS:PhoneBook_lookupResponse</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>
Modified: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1253/myporttype-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1253/myporttype-mapping.xml 2007-01-08 21:50:24 UTC (rev 1869)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1253/myporttype-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,6 +1,10 @@
<?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.jbws1253</package-type>
+ <namespaceURI>http://test.jboss.org/ws/jbws1253/types</namespaceURI>
+ </package-mapping>
+ <package-mapping>
+ <package-type>org.jboss.test.ws.jbws1253</package-type>
<namespaceURI>http://test.jboss.org/ws/jbws1253</namespaceURI>
</package-mapping>
<java-xml-type-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260 (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_A)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/Lookup.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_A/Lookup.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/Lookup.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Lookup {
- protected java.lang.String surname;
-
- public Lookup() {
- }
-
- public Lookup(java.lang.String surname) {
- this.surname = surname;
- }
-
- public java.lang.String getSurname() {
- return surname;
- }
-
- public void setSurname(java.lang.String surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/Lookup.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_A/Lookup.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/LookupResponse.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_A/LookupResponse.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/LookupResponse.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupResponse {
- protected java.lang.String number;
-
- public LookupResponse() {
- }
-
- public LookupResponse(java.lang.String number) {
- this.number = number;
- }
-
- public java.lang.String getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/LookupResponse.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_A/LookupResponse.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_A/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public java.lang.String lookup(java.lang.String surname) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_A/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_A/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <element name='lookup'>
- <complexType>
- <sequence>
- <element name='surname' nillable='true' type='string'/>
- </sequence>
- </complexType>
- </element>
-
- <element name='lookupResponse'>
- <complexType>
- <sequence>
- <element name='number' nillable='true' type='string'/>
- </sequence>
- </complexType>
- </element>
-
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_A/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_A/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,61 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponse</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookupResponse</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.Lookup</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookup</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>java.lang.String</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>surname</wsdl-message-part-name>
- <parameter-mode>IN</parameter-mode>
- </wsdl-message-mapping>
- </method-param-parts-mapping>
- <wsdl-return-value-mapping>
- <method-return-value>java.lang.String</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_A/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_A/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_A/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_A/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_A/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/LookupName.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/LookupName.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/LookupName.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupName {
- protected org.jboss.test.ws.jbws1260.Title[] surname;
-
- public LookupName() {
- }
-
- public LookupName(org.jboss.test.ws.jbws1260.Title[] surname) {
- this.surname = surname;
- }
-
- public org.jboss.test.ws.jbws1260.Title[] getSurname() {
- return surname;
- }
-
- public void setSurname(org.jboss.test.ws.jbws1260.Title[] surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/LookupName.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/LookupName.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/LookupResponseNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/LookupResponseNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/LookupResponseNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupResponseNumber {
- protected org.jboss.test.ws.jbws1260.Telephone[] number;
-
- public LookupResponseNumber() {
- }
-
- public LookupResponseNumber(org.jboss.test.ws.jbws1260.Telephone[] number) {
- this.number = number;
- }
-
- public org.jboss.test.ws.jbws1260.Telephone[] getNumber() {
- return number;
- }
-
- public void setNumber(org.jboss.test.ws.jbws1260.Telephone[] number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/LookupResponseNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/LookupResponseNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected org.jboss.test.ws.jbws1260.LookupName name;
-
- public Person() {
- }
-
- public Person(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-
- public org.jboss.test.ws.jbws1260.LookupName getName() {
- return name;
- }
-
- public void setName(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponseNumber lookup(org.jboss.test.ws.jbws1260.LookupName name) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Telephone.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/Telephone.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Telephone.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Telephone {
- protected java.lang.String digits;
-
- public Telephone() {
- }
-
- public Telephone(java.lang.String digits) {
- this.digits = digits;
- }
-
- public java.lang.String getDigits() {
- return digits;
- }
-
- public void setDigits(java.lang.String digits) {
- this.digits = digits;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Telephone.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/Telephone.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected org.jboss.test.ws.jbws1260.LookupResponseNumber number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-
- public org.jboss.test.ws.jbws1260.LookupResponseNumber getNumber() {
- return number;
- }
-
- public void setNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Title.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/Title.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Title.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Title {
- protected java.lang.String text;
-
- public Title() {
- }
-
- public Title(java.lang.String text) {
- this.text = text;
- }
-
- public java.lang.String getText() {
- return text;
- }
-
- public void setText(java.lang.String text) {
- this.text = text;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Title.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/Title.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,76 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Title'>
- <sequence>
- <element name='text' type='string'/>
- </sequence>
- </complexType>
-
- <complexType name='Person'>
- <sequence>
- <element name='Name'>
- <complexType>
- <sequence>
- <element name='surname' nillable='true' type='tns:Title' maxOccurs='unbounded'/>
- </sequence>
- </complexType>
- </element>
- </sequence>
- </complexType>
-
- <complexType name='Telephone'>
- <sequence>
- <element name='digits' type='string'/>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='Number'>
- <complexType>
- <sequence>
- <element name='number' nillable='true' type='tns:Telephone' maxOccurs='unbounded'/>
- </sequence>
- </complexType>
- </element>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,110 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponseNumber</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>TelephoneNumber>Number</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>name</java-variable-name>
- <xml-element-name>Name</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Telephone</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Telephone</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>digits</java-variable-name>
- <xml-element-name>digits</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupName</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>Person>Name</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>surname</java-variable-name>
- <xml-element-name>surname</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.Title</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Title</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>text</java-variable-name>
- <xml-element-name>text</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
-
- <!-- Anonymous wrapping of arrays not required for JBossWS -->
- <!--java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Telephone[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>TelephoneNumber>Number>...</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping-->
- <!--java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Title[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>Person>Name>surname[1,u...</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping-->
-
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>org.jboss.test.ws.jbws1260.LookupName</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>Name</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.jbws1260.LookupResponseNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>Number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_AA/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AA/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AA/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AB)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AB/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public java.lang.String lookup(java.lang.String parameters) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AB/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AB/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <element name='lookup'>
- <simpleType>
- <restriction base='string'>
- <maxLength value="50"/>
- </restriction>
- </simpleType>
- </element>
-
- <element name='lookupResponse'>
- <simpleType>
- <restriction base='string'>
- <maxLength value="50"/>
- </restriction>
- </simpleType>
- </element>
-
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AB/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AB/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,38 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <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>java.lang.String</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <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>java.lang.String</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</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>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AB/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AB/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_AB/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AB/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AB/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AC)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AC/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public java.lang.String lookup(java.lang.String parameters) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AC/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AC/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,51 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <simpleType name='person'>
- <restriction base='string'>
- <maxLength value="50"/>
- </restriction>
- </simpleType>
-
- <simpleType name='number'>
- <restriction base='string'>
- <maxLength value="50"/>
- </restriction>
- </simpleType>
-
- <element name='lookup' type='tns:person'/>
- <element name='lookupResponse' type='tns:number'/>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AC/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AC/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,38 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <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>java.lang.String</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <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>java.lang.String</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</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>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AC/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AC/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_AC/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AC/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AC/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AD)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/Lookup.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AD/Lookup.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/Lookup.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class Lookup {
- protected java.lang.String firstName;
- protected java.lang.String surname;
-
- public Lookup() {
- }
-
- public Lookup(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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/Lookup.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AD/Lookup.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/LookupResponse.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AD/LookupResponse.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/LookupResponse.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupResponse {
- protected java.lang.String number;
-
- public LookupResponse() {
- }
-
- public LookupResponse(java.lang.String number) {
- this.number = number;
- }
-
- public java.lang.String getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/LookupResponse.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AD/LookupResponse.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AD/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public java.lang.String lookup(java.lang.String firstName, java.lang.String surname) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AD/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AD/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,54 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <element name='lookup'>
- <complexType>
- <sequence>
- <element name='firstName' nillable='true' type='string'/>
- <element name='surname' nillable='true' type='string'/>
- </sequence>
- </complexType>
- </element>
-
- <element name='lookupResponse'>
- <complexType>
- <sequence>
- <element name='number' nillable='true' type='string'/>
- </sequence>
- </complexType>
- </element>
-
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AD/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AD/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,74 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponse</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookupResponse</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.Lookup</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookup</anonymous-type-qname>
- <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.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>java.lang.String</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>firstName</wsdl-message-part-name>
- <parameter-mode>IN</parameter-mode>
- </wsdl-message-mapping>
- </method-param-parts-mapping>
- <method-param-parts-mapping>
- <param-position>1</param-position>
- <param-type>java.lang.String</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>surname</wsdl-message-part-name>
- <parameter-mode>IN</parameter-mode>
- </wsdl-message-mapping>
- </method-param-parts-mapping>
- <wsdl-return-value-mapping>
- <method-return-value>java.lang.String</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AD/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AD/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_AD/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AD/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AD/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AE)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AE/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class Person {
- 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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AE/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AE/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public java.lang.String lookup(java.lang.String firstName, java.lang.String surname) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AE/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AE/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected java.lang.String number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(java.lang.String number) {
- this.number = number;
- }
-
- public java.lang.String getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AE/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AE/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='firstName' nillable='true' type='string'/>
- <element name='surname' nillable='true' type='string'/>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='number' nillable='true' type='string'/>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AE/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AE/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,74 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <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.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>java.lang.String</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>firstName</wsdl-message-part-name>
- <parameter-mode>IN</parameter-mode>
- </wsdl-message-mapping>
- </method-param-parts-mapping>
- <method-param-parts-mapping>
- <param-position>1</param-position>
- <param-type>java.lang.String</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>surname</wsdl-message-part-name>
- <parameter-mode>IN</parameter-mode>
- </wsdl-message-mapping>
- </method-param-parts-mapping>
- <wsdl-return-value-mapping>
- <method-return-value>java.lang.String</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AE/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AE/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_AE/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AE/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AE/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/LookupName.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/LookupName.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/LookupName.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class LookupName {
- protected java.lang.String firstName;
- protected java.lang.String surname;
-
- public LookupName() {
- }
-
- public LookupName(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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/LookupName.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/LookupName.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/LookupResponseNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/LookupResponseNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/LookupResponseNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupResponseNumber {
- protected java.lang.String number;
-
- public LookupResponseNumber() {
- }
-
- public LookupResponseNumber(java.lang.String number) {
- this.number = number;
- }
-
- public java.lang.String getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/LookupResponseNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/LookupResponseNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected org.jboss.test.ws.jbws1260.LookupName name;
-
- public Person() {
- }
-
- public Person(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-
- public org.jboss.test.ws.jbws1260.LookupName getName() {
- return name;
- }
-
- public void setName(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponseNumber lookup(org.jboss.test.ws.jbws1260.LookupName name) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected org.jboss.test.ws.jbws1260.LookupResponseNumber number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-
- public org.jboss.test.ws.jbws1260.LookupResponseNumber getNumber() {
- return number;
- }
-
- public void setNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='Name'>
- <complexType>
- <sequence>
- <element name='firstName' nillable='true' type='string'/>
- <element name='surname' nillable='true' type='string'/>
- </sequence>
- </complexType>
- </element>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='Number'>
- <complexType>
- <sequence>
- <element name='number' nillable='true' type='string'/>
- </sequence>
- </complexType>
- </element>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,83 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.LookupName</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>Person>Name</anonymous-type-qname>
- <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>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponseNumber</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>TelephoneNumber>Number</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>name</java-variable-name>
- <xml-element-name>Name</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>org.jboss.test.ws.jbws1260.LookupName</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>Name</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.jbws1260.LookupResponseNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>Number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_AF/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AF/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AF/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AG)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AG/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected java.lang.String surname;
-
- public Person() {
- }
-
- public Person(java.lang.String surname) {
- this.surname = surname;
- }
-
- public java.lang.String getSurname() {
- return surname;
- }
-
- public void setSurname(java.lang.String surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AG/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AG/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.TelephoneNumber lookup(org.jboss.test.ws.jbws1260.Person parameters) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AG/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AG/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected java.lang.String number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(java.lang.String number) {
- this.number = number;
- }
-
- public java.lang.String getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AG/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AG/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,52 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='surname' nillable='true' type='string'/>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='number' nillable='true' type='string'/>
- </sequence>
- </complexType>
-
- <element name='lookupPerson' type='tns:Person'/>
- <element name='lookupResponse' type='tns:TelephoneNumber'/>
-
- </schema>
- </types>
- <message name='PhoneBook_lookup'>
- <part element='ns1:lookupPerson' 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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AG/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AG/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,60 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <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.jbws1260.Person</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <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.jbws1260.TelephoneNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</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>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AG/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AG/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_AG/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_AG/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_AG/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_B)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/Lookup.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_B/Lookup.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/Lookup.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class Lookup {
- protected java.lang.String firstName;
- protected java.lang.String surname;
-
- public Lookup() {
- }
-
- public Lookup(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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/Lookup.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_B/Lookup.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/LookupResponse.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_B/LookupResponse.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/LookupResponse.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class LookupResponse {
- protected java.lang.String areaCode;
- protected java.lang.String number;
-
- public LookupResponse() {
- }
-
- public LookupResponse(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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/LookupResponse.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_B/LookupResponse.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_B/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponse lookup(org.jboss.test.ws.jbws1260.Lookup parameters) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_B/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_B/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,55 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <element name='lookup'>
- <complexType>
- <sequence>
- <element name='firstName' nillable='true' type='string'/>
- <element name='surname' nillable='true' type='string'/>
- </sequence>
- </complexType>
- </element>
-
- <element name='lookupResponse'>
- <complexType>
- <sequence>
- <element name='areaCode' nillable='true' type='string'/>
- <element name='number' nillable='true' type='string'/>
- </sequence>
- </complexType>
- </element>
-
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_B/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_B/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponse</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookupResponse</anonymous-type-qname>
- <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.jbws1260.Lookup</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookup</anonymous-type-qname>
- <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.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <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.jbws1260.Lookup</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <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.jbws1260.LookupResponse</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</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>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_B/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_B/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_B/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_B/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_B/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_C)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_C/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected java.lang.String surname;
-
- public Person() {
- }
-
- public Person(java.lang.String surname) {
- this.surname = surname;
- }
-
- public java.lang.String getSurname() {
- return surname;
- }
-
- public void setSurname(java.lang.String surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_C/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_C/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public java.lang.String lookup(java.lang.String surname) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_C/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_C/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected java.lang.String number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(java.lang.String number) {
- this.number = number;
- }
-
- public java.lang.String getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_C/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_C/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,52 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='surname' nillable='true' type='string'/>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='number' nillable='true' type='string'/>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_C/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_C/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,61 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>java.lang.String</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>surname</wsdl-message-part-name>
- <parameter-mode>IN</parameter-mode>
- </wsdl-message-mapping>
- </method-param-parts-mapping>
- <wsdl-return-value-mapping>
- <method-return-value>java.lang.String</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_C/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_C/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_C/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_C/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_C/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_D)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_D/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class Person {
- 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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_D/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_D/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.TelephoneNumber lookup(org.jboss.test.ws.jbws1260.Person parameters) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_D/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_D/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class TelephoneNumber {
- 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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_D/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_D/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,54 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='firstName' nillable='true' type='string'/>
- <element name='surname' nillable='true' type='string'/>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='areaCode' nillable='true' type='string'/>
- <element name='number' nillable='true' type='string'/>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_D/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_D/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <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.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <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.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <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.jbws1260.Person</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <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.jbws1260.TelephoneNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</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>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_D/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_D/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_D/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_D/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_D/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/LookupName.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/LookupName.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/LookupName.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupName {
- protected java.lang.String surname;
-
- public LookupName() {
- }
-
- public LookupName(java.lang.String surname) {
- this.surname = surname;
- }
-
- public java.lang.String getSurname() {
- return surname;
- }
-
- public void setSurname(java.lang.String surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/LookupName.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/LookupName.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/LookupResponseNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/LookupResponseNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/LookupResponseNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupResponseNumber {
- protected java.lang.String number;
-
- public LookupResponseNumber() {
- }
-
- public LookupResponseNumber(java.lang.String number) {
- this.number = number;
- }
-
- public java.lang.String getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/LookupResponseNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/LookupResponseNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected org.jboss.test.ws.jbws1260.LookupName name;
-
- public Person() {
- }
-
- public Person(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-
- public org.jboss.test.ws.jbws1260.LookupName getName() {
- return name;
- }
-
- public void setName(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponseNumber lookup(org.jboss.test.ws.jbws1260.LookupName name) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected org.jboss.test.ws.jbws1260.LookupResponseNumber number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-
- public org.jboss.test.ws.jbws1260.LookupResponseNumber getNumber() {
- return number;
- }
-
- public void setNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,64 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='Name'>
- <complexType>
- <sequence>
- <element name='surname' nillable='true' type='string'/>
- </sequence>
- </complexType>
- </element>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='Number'>
- <complexType>
- <sequence>
- <element name='number' nillable='true' type='string'/>
- </sequence>
- </complexType>
- </element>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,79 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.LookupName</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>Person>Name</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>surname</java-variable-name>
- <xml-element-name>surname</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponseNumber</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>TelephoneNumber>Number</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>name</java-variable-name>
- <xml-element-name>Name</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>org.jboss.test.ws.jbws1260.LookupName</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>Name</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.jbws1260.LookupResponseNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>Number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_E/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_E/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_E/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/LookupName.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/LookupName.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/LookupName.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class LookupName {
- protected java.lang.String firstName;
- protected java.lang.String surname;
-
- public LookupName() {
- }
-
- public LookupName(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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/LookupName.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/LookupName.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/LookupResponseNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/LookupResponseNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/LookupResponseNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class LookupResponseNumber {
- protected java.lang.String areaCode;
- protected java.lang.String number;
-
- public LookupResponseNumber() {
- }
-
- public LookupResponseNumber(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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/LookupResponseNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/LookupResponseNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected org.jboss.test.ws.jbws1260.LookupName name;
-
- public Person() {
- }
-
- public Person(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-
- public org.jboss.test.ws.jbws1260.LookupName getName() {
- return name;
- }
-
- public void setName(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponseNumber lookup(org.jboss.test.ws.jbws1260.LookupName name) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected org.jboss.test.ws.jbws1260.LookupResponseNumber number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-
- public org.jboss.test.ws.jbws1260.LookupResponseNumber getNumber() {
- return number;
- }
-
- public void setNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,66 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='Name'>
- <complexType>
- <sequence>
- <element name='firstName' nillable='true' type='string'/>
- <element name='surname' nillable='true' type='string'/>
- </sequence>
- </complexType>
- </element>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='Number'>
- <complexType>
- <sequence>
- <element name='areaCode' nillable='true' type='string'/>
- <element name='number' nillable='true' type='string'/>
- </sequence>
- </complexType>
- </element>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,87 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.LookupName</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>Person>Name</anonymous-type-qname>
- <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>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponseNumber</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>TelephoneNumber>Number</anonymous-type-qname>
- <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.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>name</java-variable-name>
- <xml-element-name>Name</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>org.jboss.test.ws.jbws1260.LookupName</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>Name</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.jbws1260.LookupResponseNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>Number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_F/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_F/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_F/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_G)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/Lookup.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_G/Lookup.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/Lookup.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Lookup {
- protected java.lang.String[] surname;
-
- public Lookup() {
- }
-
- public Lookup(java.lang.String[] surname) {
- this.surname = surname;
- }
-
- public java.lang.String[] getSurname() {
- return surname;
- }
-
- public void setSurname(java.lang.String[] surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/Lookup.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_G/Lookup.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/LookupResponse.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_G/LookupResponse.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/LookupResponse.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupResponse {
- protected java.lang.String[] number;
-
- public LookupResponse() {
- }
-
- public LookupResponse(java.lang.String[] number) {
- this.number = number;
- }
-
- public java.lang.String[] getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String[] number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/LookupResponse.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_G/LookupResponse.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_G/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public java.lang.String[] lookup(java.lang.String[] surname) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_G/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_G/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <element name='lookup'>
- <complexType>
- <sequence>
- <element name='surname' nillable='true' type='string' maxOccurs='unbounded'/>
- </sequence>
- </complexType>
- </element>
-
- <element name='lookupResponse'>
- <complexType>
- <sequence>
- <element name='number' nillable='true' type='string' maxOccurs='unbounded'/>
- </sequence>
- </complexType>
- </element>
-
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_G/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_G/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,74 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponse</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookupResponse</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>number</java-variable-name>
- <xml-element-name>number</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>JavaXmlTypeMapping
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Lookup</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookup</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>surname</java-variable-name>
- <xml-element-name>surname</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
-
- <!-- Anonymous wrapping of arrays not required for JBossWS -->
- <!--java-xml-type-mapping>
- <java-type>java.lang.String[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookupResponse>number[1,un...</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping-->
- <!--java-xml-type-mapping>
- <java-type>java.lang.String[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookup>surname[1,unbounded]</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping-->
-
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>java.lang.String[]</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>surname</wsdl-message-part-name>
- <parameter-mode>IN</parameter-mode>
- </wsdl-message-mapping>
- </method-param-parts-mapping>
- <wsdl-return-value-mapping>
- <method-return-value>java.lang.String[]</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_G/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_G/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_G/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_G/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_G/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_H)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_H/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected java.lang.String[] surname;
-
- public Person() {
- }
-
- public Person(java.lang.String[] surname) {
- this.surname = surname;
- }
-
- public java.lang.String[] getSurname() {
- return surname;
- }
-
- public void setSurname(java.lang.String[] surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_H/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_H/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public java.lang.String[] lookup(java.lang.String[] surname) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_H/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_H/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected java.lang.String[] number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(java.lang.String[] number) {
- this.number = number;
- }
-
- public java.lang.String[] getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String[] number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_H/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_H/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,52 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='surname' nillable='true' type='string' maxOccurs='unbounded'/>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='number' nillable='true' type='string' maxOccurs='unbounded'/>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_H/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_H/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,74 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>surname</java-variable-name>
- <xml-element-name>surname</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
-
- <!-- Anonymous wrapping of arrays not required for JBossWS -->
- <!--java-xml-type-mapping>
- <java-type>java.lang.String[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:TelephoneNumber>number[1,unbou...</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping-->
- <!--java-xml-type-mapping>
- <java-type>java.lang.String[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:Person>surname[1,unbounded]</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping-->
-
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>java.lang.String[]</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>surname</wsdl-message-part-name>
- <parameter-mode>IN</parameter-mode>
- </wsdl-message-mapping>
- </method-param-parts-mapping>
- <wsdl-return-value-mapping>
- <method-return-value>java.lang.String[]</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_H/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_H/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_H/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_H/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_H/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/LookupName.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/LookupName.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/LookupName.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupName {
- protected java.lang.String[] surname;
-
- public LookupName() {
- }
-
- public LookupName(java.lang.String[] surname) {
- this.surname = surname;
- }
-
- public java.lang.String[] getSurname() {
- return surname;
- }
-
- public void setSurname(java.lang.String[] surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/LookupName.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/LookupName.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/LookupResponseNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/LookupResponseNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/LookupResponseNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupResponseNumber {
- protected java.lang.String[] number;
-
- public LookupResponseNumber() {
- }
-
- public LookupResponseNumber(java.lang.String[] number) {
- this.number = number;
- }
-
- public java.lang.String[] getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String[] number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/LookupResponseNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/LookupResponseNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected org.jboss.test.ws.jbws1260.LookupName name;
-
- public Person() {
- }
-
- public Person(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-
- public org.jboss.test.ws.jbws1260.LookupName getName() {
- return name;
- }
-
- public void setName(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponseNumber lookup(org.jboss.test.ws.jbws1260.LookupName name) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected org.jboss.test.ws.jbws1260.LookupResponseNumber number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-
- public org.jboss.test.ws.jbws1260.LookupResponseNumber getNumber() {
- return number;
- }
-
- public void setNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,64 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='Name'>
- <complexType>
- <sequence>
- <element name='surname' nillable='true' type='string' maxOccurs='unbounded'/>
- </sequence>
- </complexType>
- </element>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='Number'>
- <complexType>
- <sequence>
- <element name='number' nillable='true' type='string' maxOccurs='unbounded'/>
- </sequence>
- </complexType>
- </element>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,92 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.LookupName</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>Person>Name</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>surname</java-variable-name>
- <xml-element-name>surname</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponseNumber</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>TelephoneNumber>Number</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>name</java-variable-name>
- <xml-element-name>Name</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
-
- <!-- Anonymous wrapping of arrays not required for JBossWS -->
- <!--java-xml-type-mapping>
- <java-type>java.lang.String[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>Person>Name>surname[1,u...</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping-->
- <!--java-xml-type-mapping>
- <java-type>java.lang.String[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>TelephoneNumber>Number>...</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping-->
-
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>org.jboss.test.ws.jbws1260.LookupName</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>Name</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.jbws1260.LookupResponseNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>Number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_I/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_I/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_I/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_J)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/Lookup.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_J/Lookup.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/Lookup.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class Lookup {
-
- public Lookup() {
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/Lookup.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_J/Lookup.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/LookupResponse.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_J/LookupResponse.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/LookupResponse.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class LookupResponse {
-
- public LookupResponse() {
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/LookupResponse.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_J/LookupResponse.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_J/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponse lookup() throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_J/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_J/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,51 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <element name='lookup'>
- <complexType>
- <sequence>
- </sequence>
- </complexType>
- </element>
-
- <element name='lookupResponse'>
- <complexType>
- <sequence>
- </sequence>
- </complexType>
- </element>
-
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_J/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_J/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,44 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Lookup</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookup</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponse</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookupResponse</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <wsdl-return-value-mapping>
- <method-return-value>org.jboss.test.ws.jbws1260.LookupResponse</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</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>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_J/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_J/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_J/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_J/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_J/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_K)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_K/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class Person {
-
- public Person() {
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_K/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_K/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.TelephoneNumber lookup() throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_K/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_K/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class TelephoneNumber {
-
- public TelephoneNumber() {
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_K/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_K/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,50 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_K/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_K/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,44 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <wsdl-return-value-mapping>
- <method-return-value>org.jboss.test.ws.jbws1260.TelephoneNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</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>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_K/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_K/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_K/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_K/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_K/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/LookupName.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/LookupName.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/LookupName.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class LookupName {
-
- public LookupName() {
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/LookupName.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/LookupName.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/LookupResponseNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/LookupResponseNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/LookupResponseNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class LookupResponseNumber {
-
- public LookupResponseNumber() {
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/LookupResponseNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/LookupResponseNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected org.jboss.test.ws.jbws1260.LookupName name;
-
- public Person() {
- }
-
- public Person(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-
- public org.jboss.test.ws.jbws1260.LookupName getName() {
- return name;
- }
-
- public void setName(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponseNumber lookup(org.jboss.test.ws.jbws1260.LookupName name) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected org.jboss.test.ws.jbws1260.LookupResponseNumber number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-
- public org.jboss.test.ws.jbws1260.LookupResponseNumber getNumber() {
- return number;
- }
-
- public void setNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,62 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='Name'>
- <complexType>
- <sequence>
- </sequence>
- </complexType>
- </element>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='Number'>
- <complexType>
- <sequence>
- </sequence>
- </complexType>
- </element>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,71 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupName</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>Person>Name</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponseNumber</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>TelephoneNumber>Number</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>name</java-variable-name>
- <xml-element-name>Name</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>number</java-variable-name>
- <xml-element-name>Number</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>org.jboss.test.ws.jbws1260.LookupName</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>Name</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.jbws1260.LookupResponseNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>Number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_L/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_L/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_L/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_M)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/Lookup.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_M/Lookup.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/Lookup.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class Lookup {
- protected java.lang.String postcode;
- protected java.lang.String surname;
-
- public Lookup() {
- }
-
- public Lookup(java.lang.String postcode, java.lang.String surname) {
- this.postcode = postcode;
- this.surname = surname;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getSurname() {
- return surname;
- }
-
- public void setSurname(java.lang.String surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/Lookup.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_M/Lookup.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/LookupResponse.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_M/LookupResponse.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/LookupResponse.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class LookupResponse {
- protected java.lang.String postcode;
- protected java.lang.String number;
-
- public LookupResponse() {
- }
-
- public LookupResponse(java.lang.String postcode, java.lang.String number) {
- this.postcode = postcode;
- this.number = number;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/LookupResponse.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_M/LookupResponse.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_M/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponse lookup(org.jboss.test.ws.jbws1260.Lookup parameters) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_M/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_M/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,55 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <element name='lookup'>
- <complexType>
- <sequence>
- <element name='surname' nillable='true' type='string'/>
- </sequence>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
-
- <element name='lookupResponse'>
- <complexType>
- <sequence>
- <element name='number' nillable='true' type='string'/>
- </sequence>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
-
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_M/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_M/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Lookup</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookup</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-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>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponse</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookupResponse</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-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>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <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.jbws1260.Lookup</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <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.jbws1260.LookupResponse</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</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>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_M/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_M/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_M/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_M/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_M/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_N)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_N/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class Person {
- protected java.lang.String postcode;
- protected java.lang.String surname;
-
- public Person() {
- }
-
- public Person(java.lang.String postcode, java.lang.String surname) {
- this.postcode = postcode;
- this.surname = surname;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getSurname() {
- return surname;
- }
-
- public void setSurname(java.lang.String surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_N/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_N/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.TelephoneNumber lookup(org.jboss.test.ws.jbws1260.Person parameters) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_N/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_N/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class TelephoneNumber {
- protected java.lang.String postcode;
- protected java.lang.String number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(java.lang.String postcode, java.lang.String number) {
- this.postcode = postcode;
- this.number = number;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_N/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_N/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,54 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='surname' nillable='true' type='string'/>
- </sequence>
- <attribute name='postcode' type='string'/>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='number' nillable='true' type='string'/>
- </sequence>
- <attribute name='postcode' type='string'/>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_N/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_N/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-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>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-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>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <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.jbws1260.Person</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <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.jbws1260.TelephoneNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</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>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_N/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_N/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_N/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_N/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_N/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/LookupName.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/LookupName.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/LookupName.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class LookupName {
- protected java.lang.String postcode;
- protected java.lang.String surname;
-
- public LookupName() {
- }
-
- public LookupName(java.lang.String postcode, java.lang.String surname) {
- this.postcode = postcode;
- this.surname = surname;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getSurname() {
- return surname;
- }
-
- public void setSurname(java.lang.String surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/LookupName.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/LookupName.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/LookupResponseNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/LookupResponseNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/LookupResponseNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class LookupResponseNumber {
- protected java.lang.String postcode;
- protected java.lang.String number;
-
- public LookupResponseNumber() {
- }
-
- public LookupResponseNumber(java.lang.String postcode, java.lang.String number) {
- this.postcode = postcode;
- this.number = number;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/LookupResponseNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/LookupResponseNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected org.jboss.test.ws.jbws1260.LookupName name;
-
- public Person() {
- }
-
- public Person(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-
- public org.jboss.test.ws.jbws1260.LookupName getName() {
- return name;
- }
-
- public void setName(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponseNumber lookup(org.jboss.test.ws.jbws1260.LookupName name) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected org.jboss.test.ws.jbws1260.LookupResponseNumber number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-
- public org.jboss.test.ws.jbws1260.LookupResponseNumber getNumber() {
- return number;
- }
-
- public void setNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,66 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='Name'>
- <complexType>
- <sequence>
- <element name='surname' nillable='true' type='string'/>
- </sequence>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='Number'>
- <complexType>
- <sequence>
- <element name='number' nillable='true' type='string'/>
- </sequence>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,87 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupName</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>Person>Name</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-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>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>name</java-variable-name>
- <xml-element-name>Name</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.LookupResponseNumber</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>TelephoneNumber>Number</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-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>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>org.jboss.test.ws.jbws1260.LookupName</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>Name</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.jbws1260.LookupResponseNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>Number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_O/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_O/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_O/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_P)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/Lookup.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_P/Lookup.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/Lookup.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class Lookup {
- protected java.lang.String postcode;
- protected java.lang.String[] surname;
-
- public Lookup() {
- }
-
- public Lookup(java.lang.String postcode, java.lang.String[] surname) {
- this.postcode = postcode;
- this.surname = surname;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String[] getSurname() {
- return surname;
- }
-
- public void setSurname(java.lang.String[] surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/Lookup.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_P/Lookup.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/LookupResponse.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_P/LookupResponse.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/LookupResponse.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class LookupResponse {
- protected java.lang.String postcode;
- protected java.lang.String[] number;
-
- public LookupResponse() {
- }
-
- public LookupResponse(java.lang.String postcode, java.lang.String[] number) {
- this.postcode = postcode;
- this.number = number;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String[] getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String[] number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/LookupResponse.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_P/LookupResponse.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_P/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponse lookup(org.jboss.test.ws.jbws1260.Lookup parameters) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_P/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_P/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,55 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <element name='lookup'>
- <complexType>
- <sequence>
- <element name='surname' nillable='true' type='string' maxOccurs='unbounded'/>
- </sequence>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
-
- <element name='lookupResponse'>
- <complexType>
- <sequence>
- <element name='number' nillable='true' type='string' maxOccurs='unbounded'/>
- </sequence>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
-
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_P/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_P/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,78 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Lookup</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookup</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-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>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponse</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookupResponse</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-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>java.lang.String[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookup>surname[1,unbounded]</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>java.lang.String[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookupResponse>number[1,un...</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <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.jbws1260.Lookup</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <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.jbws1260.LookupResponse</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</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>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_P/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_P/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_P/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_P/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_P/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Q)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Q/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class Person {
- protected java.lang.String postcode;
- protected java.lang.String[] surname;
-
- public Person() {
- }
-
- public Person(java.lang.String postcode, java.lang.String[] surname) {
- this.postcode = postcode;
- this.surname = surname;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String[] getSurname() {
- return surname;
- }
-
- public void setSurname(java.lang.String[] surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Q/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Q/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.TelephoneNumber lookup(org.jboss.test.ws.jbws1260.Person parameters) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Q/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Q/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class TelephoneNumber {
- protected java.lang.String postcode;
- protected java.lang.String[] number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(java.lang.String postcode, java.lang.String[] number) {
- this.postcode = postcode;
- this.number = number;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String[] getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String[] number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Q/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Q/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,54 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='surname' nillable='true' type='string' maxOccurs='unbounded'/>
- </sequence>
- <attribute name='postcode' type='string'/>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='number' nillable='true' type='string' maxOccurs='unbounded'/>
- </sequence>
- <attribute name='postcode' type='string'/>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Q/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Q/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,78 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-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>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-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>java.lang.String[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:Person>surname[1,unbounded]</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>java.lang.String[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:TelephoneNumber>number[1,unbou...</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <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.jbws1260.Person</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <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.jbws1260.TelephoneNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</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>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Q/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Q/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_Q/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Q/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Q/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/LookupName.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/LookupName.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/LookupName.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class LookupName {
- protected java.lang.String postcode;
- protected java.lang.String[] surname;
-
- public LookupName() {
- }
-
- public LookupName(java.lang.String postcode, java.lang.String[] surname) {
- this.postcode = postcode;
- this.surname = surname;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String[] getSurname() {
- return surname;
- }
-
- public void setSurname(java.lang.String[] surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/LookupName.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/LookupName.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/LookupResponseNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/LookupResponseNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/LookupResponseNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-
-public class LookupResponseNumber {
- protected java.lang.String postcode;
- protected java.lang.String[] number;
-
- public LookupResponseNumber() {
- }
-
- public LookupResponseNumber(java.lang.String postcode, java.lang.String[] number) {
- this.postcode = postcode;
- this.number = number;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String[] getNumber() {
- return number;
- }
-
- public void setNumber(java.lang.String[] number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/LookupResponseNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/LookupResponseNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected org.jboss.test.ws.jbws1260.LookupName name;
-
- public Person() {
- }
-
- public Person(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-
- public org.jboss.test.ws.jbws1260.LookupName getName() {
- return name;
- }
-
- public void setName(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponseNumber lookup(org.jboss.test.ws.jbws1260.LookupName name) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected org.jboss.test.ws.jbws1260.LookupResponseNumber number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-
- public org.jboss.test.ws.jbws1260.LookupResponseNumber getNumber() {
- return number;
- }
-
- public void setNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,66 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='Name'>
- <complexType>
- <sequence>
- <element name='surname' nillable='true' type='string' maxOccurs='unbounded'/>
- </sequence>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='Number'>
- <complexType>
- <sequence>
- <element name='number' nillable='true' type='string' maxOccurs='unbounded'/>
- </sequence>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,100 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupName</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>Person>Name</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-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>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>name</java-variable-name>
- <xml-element-name>Name</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.LookupResponseNumber</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>TelephoneNumber>Number</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-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>
-
- <!-- Anonymous wrapping of arrays not required for JBossWS -->
- <!--java-xml-type-mapping>
- <java-type>java.lang.String[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>Person>Name>surname[1,u...</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping-->
- <!--java-xml-type-mapping>
- <java-type>java.lang.String[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>TelephoneNumber>Number>...</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping-->
-
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>org.jboss.test.ws.jbws1260.LookupName</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>Name</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.jbws1260.LookupResponseNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>Number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_R/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_R/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_R/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_S)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/Lookup.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_S/Lookup.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/Lookup.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Lookup {
- protected java.lang.String postcode;
-
- public Lookup() {
- }
-
- public Lookup(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/Lookup.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_S/Lookup.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/LookupResponse.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_S/LookupResponse.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/LookupResponse.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupResponse {
- protected java.lang.String postcode;
-
- public LookupResponse() {
- }
-
- public LookupResponse(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/LookupResponse.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_S/LookupResponse.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_S/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponse lookup(org.jboss.test.ws.jbws1260.Lookup parameters) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_S/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_S/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <element name='lookup'>
- <complexType>
- <sequence>
- </sequence>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
-
- <element name='lookupResponse'>
- <complexType>
- <sequence>
- </sequence>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
-
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_S/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_S/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,60 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Lookup</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookup</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponse</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookupResponse</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <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.jbws1260.Lookup</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <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.jbws1260.LookupResponse</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</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>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_S/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_S/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_S/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_S/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_S/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_T)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_T/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected java.lang.String postcode;
-
- public Person() {
- }
-
- public Person(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_T/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_T/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.TelephoneNumber lookup(org.jboss.test.ws.jbws1260.Person parameters) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_T/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_T/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected java.lang.String postcode;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_T/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_T/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,52 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- </sequence>
- <attribute name='postcode' type='string'/>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- </sequence>
- <attribute name='postcode' type='string'/>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_T/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_T/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,60 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <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.jbws1260.Person</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <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.jbws1260.TelephoneNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</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>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_T/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_T/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_T/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_T/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_T/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/LookupName.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/LookupName.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/LookupName.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupName {
- protected java.lang.String postcode;
-
- public LookupName() {
- }
-
- public LookupName(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/LookupName.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/LookupName.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/LookupResponseNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/LookupResponseNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/LookupResponseNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupResponseNumber {
- protected java.lang.String postcode;
-
- public LookupResponseNumber() {
- }
-
- public LookupResponseNumber(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/LookupResponseNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/LookupResponseNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected org.jboss.test.ws.jbws1260.LookupName name;
-
- public Person() {
- }
-
- public Person(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-
- public org.jboss.test.ws.jbws1260.LookupName getName() {
- return name;
- }
-
- public void setName(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponseNumber lookup(org.jboss.test.ws.jbws1260.LookupName name) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected org.jboss.test.ws.jbws1260.LookupResponseNumber number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-
- public org.jboss.test.ws.jbws1260.LookupResponseNumber getNumber() {
- return number;
- }
-
- public void setNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,64 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='Name'>
- <complexType>
- <sequence>
- </sequence>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='Number'>
- <complexType>
- <sequence>
- </sequence>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,79 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupName</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>Person>Name</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>name</java-variable-name>
- <xml-element-name>Name</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.LookupResponseNumber</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>TelephoneNumber>Number</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>org.jboss.test.ws.jbws1260.LookupName</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>Name</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.jbws1260.LookupResponseNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>Number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_U/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_U/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_U/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_V)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/Lookup.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_V/Lookup.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/Lookup.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Lookup {
- protected java.lang.String postcode;
-
- public Lookup() {
- }
-
- public Lookup(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/Lookup.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_V/Lookup.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/LookupResponse.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_V/LookupResponse.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/LookupResponse.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupResponse {
- protected java.lang.String postcode;
-
- public LookupResponse() {
- }
-
- public LookupResponse(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/LookupResponse.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_V/LookupResponse.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_V/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponse lookup(org.jboss.test.ws.jbws1260.Lookup parameters) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_V/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_V/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <element name='lookup'>
- <complexType>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
-
- <element name='lookupResponse'>
- <complexType>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
-
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_V/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_V/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,60 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Lookup</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:lookup</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponse</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:lookupResponse</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <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.jbws1260.Lookup</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <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.jbws1260.LookupResponse</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</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>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_V/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_V/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_V/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_V/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_V/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_W)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_W/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected java.lang.String postcode;
-
- public Person() {
- }
-
- public Person(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_W/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_W/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.TelephoneNumber lookup(org.jboss.test.ws.jbws1260.Person parameters) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_W/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_W/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected java.lang.String postcode;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_W/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_W/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <attribute name='postcode' type='string'/>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <attribute name='postcode' type='string'/>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_W/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_W/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,60 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <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.jbws1260.Person</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <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.jbws1260.TelephoneNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</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>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_W/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_W/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_W/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_W/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_W/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/LookupName.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/LookupName.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/LookupName.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupName {
- protected java.lang.String postcode;
-
- public LookupName() {
- }
-
- public LookupName(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/LookupName.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/LookupName.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/LookupResponseNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/LookupResponseNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/LookupResponseNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupResponseNumber {
- protected java.lang.String postcode;
-
- public LookupResponseNumber() {
- }
-
- public LookupResponseNumber(java.lang.String postcode) {
- this.postcode = postcode;
- }
-
- public java.lang.String getPostcode() {
- return postcode;
- }
-
- public void setPostcode(java.lang.String postcode) {
- this.postcode = postcode;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/LookupResponseNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/LookupResponseNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected org.jboss.test.ws.jbws1260.LookupName name;
-
- public Person() {
- }
-
- public Person(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-
- public org.jboss.test.ws.jbws1260.LookupName getName() {
- return name;
- }
-
- public void setName(org.jboss.test.ws.jbws1260.LookupName name) {
- this.name = name;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.LookupResponseNumber lookup(org.jboss.test.ws.jbws1260.LookupName name) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected org.jboss.test.ws.jbws1260.LookupResponseNumber number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-
- public org.jboss.test.ws.jbws1260.LookupResponseNumber getNumber() {
- return number;
- }
-
- public void setNumber(org.jboss.test.ws.jbws1260.LookupResponseNumber number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,60 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Person'>
- <sequence>
- <element name='Name'>
- <complexType>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='Number'>
- <complexType>
- <attribute name='postcode' type='string'/>
- </complexType>
- </element>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,79 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupName</java-type>
- <anonymous-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1260/types'>typeNS:>Person>Name</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>name</java-variable-name>
- <xml-element-name>Name</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.LookupResponseNumber</java-type>
- <anonymous-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws1260/types'>typeNS:>TelephoneNumber>Number</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>postcode</java-variable-name>
- <xml-attribute-name>postcode</xml-attribute-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>org.jboss.test.ws.jbws1260.LookupName</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>Name</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.jbws1260.LookupResponseNumber</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>Number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_X/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_X/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_X/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Lookup.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/Lookup.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Lookup.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Lookup {
- protected org.jboss.test.ws.jbws1260.Name[] surname;
-
- public Lookup() {
- }
-
- public Lookup(org.jboss.test.ws.jbws1260.Name[] surname) {
- this.surname = surname;
- }
-
- public org.jboss.test.ws.jbws1260.Name[] getSurname() {
- return surname;
- }
-
- public void setSurname(org.jboss.test.ws.jbws1260.Name[] surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Lookup.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/Lookup.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/LookupResponse.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/LookupResponse.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/LookupResponse.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class LookupResponse {
- protected org.jboss.test.ws.jbws1260.Telephone[] number;
-
- public LookupResponse() {
- }
-
- public LookupResponse(org.jboss.test.ws.jbws1260.Telephone[] number) {
- this.number = number;
- }
-
- public org.jboss.test.ws.jbws1260.Telephone[] getNumber() {
- return number;
- }
-
- public void setNumber(org.jboss.test.ws.jbws1260.Telephone[] number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/LookupResponse.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/LookupResponse.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Name.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/Name.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Name.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Name {
- protected java.lang.String title;
-
- public Name() {
- }
-
- public Name(java.lang.String title) {
- this.title = title;
- }
-
- public java.lang.String getTitle() {
- return title;
- }
-
- public void setTitle(java.lang.String title) {
- this.title = title;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Name.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/Name.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.Telephone[] lookup(org.jboss.test.ws.jbws1260.Name[] surname) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Telephone.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/Telephone.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Telephone.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Telephone {
- protected java.lang.String digits;
-
- public Telephone() {
- }
-
- public Telephone(java.lang.String digits) {
- this.digits = digits;
- }
-
- public java.lang.String getDigits() {
- return digits;
- }
-
- public void setDigits(java.lang.String digits) {
- this.digits = digits;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Telephone.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/Telephone.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Name'>
- <sequence>
- <element name='title' type='string'/>
- </sequence>
- </complexType>
-
- <element name='lookup'>
- <complexType>
- <sequence>
- <element name='surname' nillable='true' type='tns:Name' maxOccurs='unbounded'/>
- </sequence>
- </complexType>
- </element>
-
- <complexType name='Telephone'>
- <sequence>
- <element name='digits' type='string'/>
- </sequence>
- </complexType>
-
- <element name='lookupResponse'>
- <complexType>
- <sequence>
- <element name='number' nillable='true' type='tns:Telephone' maxOccurs='unbounded'/>
- </sequence>
- </complexType>
- </element>
-
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,92 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.LookupResponse</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookupResponse</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.Name</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Name</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>title</java-variable-name>
- <xml-element-name>title</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Telephone</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Telephone</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>digits</java-variable-name>
- <xml-element-name>digits</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Lookup</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookup</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>surname</java-variable-name>
- <xml-element-name>surname</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
-
- <!-- Anonymous wrapping of arrays not required for JBossWS -->
- <!--java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Telephone[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookupResponse>number[1,un...</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping-->
- <!--java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Name[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:>lookup>surname[1,unbounded]</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping-->
-
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>org.jboss.test.ws.jbws1260.Name[]</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>surname</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.jbws1260.Telephone[]</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_Y/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Y/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Y/wstools-config.xml)
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Name.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/Name.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Name.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Name {
- protected java.lang.String title;
-
- public Name() {
- }
-
- public Name(java.lang.String title) {
- this.title = title;
- }
-
- public java.lang.String getTitle() {
- return title;
- }
-
- public void setTitle(java.lang.String title) {
- this.title = title;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Name.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/Name.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Person.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/Person.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Person.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Person {
- protected org.jboss.test.ws.jbws1260.Name[] surname;
-
- public Person() {
- }
-
- public Person(org.jboss.test.ws.jbws1260.Name[] surname) {
- this.surname = surname;
- }
-
- public org.jboss.test.ws.jbws1260.Name[] getSurname() {
- return surname;
- }
-
- public void setSurname(org.jboss.test.ws.jbws1260.Name[] surname) {
- this.surname = surname;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Person.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/Person.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/PhoneBook_PortType.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/PhoneBook_PortType.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -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.jbws1260;
-
-public interface PhoneBook_PortType extends java.rmi.Remote {
- public org.jboss.test.ws.jbws1260.Telephone[] lookup(org.jboss.test.ws.jbws1260.Name[] surname) throws
- java.rmi.RemoteException;
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/PhoneBook_PortType.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/PhoneBook_PortType.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Telephone.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/Telephone.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Telephone.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class Telephone {
- protected java.lang.String digits;
-
- public Telephone() {
- }
-
- public Telephone(java.lang.String digits) {
- this.digits = digits;
- }
-
- public java.lang.String getDigits() {
- return digits;
- }
-
- public void setDigits(java.lang.String digits) {
- this.digits = digits;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Telephone.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/Telephone.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/TelephoneNumber.java 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/TelephoneNumber.java 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,26 +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.jbws1260;
-
-
-public class TelephoneNumber {
- protected org.jboss.test.ws.jbws1260.Telephone[] number;
-
- public TelephoneNumber() {
- }
-
- public TelephoneNumber(org.jboss.test.ws.jbws1260.Telephone[] number) {
- this.number = number;
- }
-
- public org.jboss.test.ws.jbws1260.Telephone[] getNumber() {
- return number;
- }
-
- public void setNumber(org.jboss.test.ws.jbws1260.Telephone[] number) {
- this.number = number;
- }
-}
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/TelephoneNumber.java (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/TelephoneNumber.java)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Wrapped.wsdl
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/Wrapped.wsdl 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Wrapped.wsdl 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,64 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions name='PhoneBook' targetNamespace='http://test.jboss.org/ws/jbws1260' xmlns='http://schemas.xmlsoap.org/wsdl/' xmlns:ns1='http://test.jboss.org/ws/jbws1260/types' xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' xmlns:tns='http://test.jboss.org/ws/jbws1260' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <schema targetNamespace='http://test.jboss.org/ws/jbws1260/types' xmlns='http://www.w3.org/2001/XMLSchema' xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' xmlns:tns='http://test.jboss.org/ws/jbws1260/types' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
-
- <complexType name='Name'>
- <sequence>
- <element name='title' type='string'/>
- </sequence>
- </complexType>
-
- <complexType name='Person'>
- <sequence>
- <element name='surname' nillable='true' type='tns:Name' maxOccurs='unbounded'/>
- </sequence>
- </complexType>
-
- <complexType name='Telephone'>
- <sequence>
- <element name='digits' type='string'/>
- </sequence>
- </complexType>
-
- <complexType name='TelephoneNumber'>
- <sequence>
- <element name='number' nillable='true' type='tns:Telephone' maxOccurs='unbounded'/>
- </sequence>
- </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/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/Wrapped.wsdl (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/Wrapped.wsdl)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/wrapped-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/wrapped-mapping.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/wrapped-mapping.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,92 +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.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260</namespaceURI>
- </package-mapping>
- <package-mapping>
- <package-type>org.jboss.test.ws.jbws1260</package-type>
- <namespaceURI>http://test.jboss.org/ws/jbws1260/types</namespaceURI>
- </package-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.TelephoneNumber</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:TelephoneNumber</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <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.jbws1260.Name</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Name</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>title</java-variable-name>
- <xml-element-name>title</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Telephone</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Telephone</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>digits</java-variable-name>
- <xml-element-name>digits</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
- <java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Person</java-type>
- <root-type-qname xmlns:typeNS="http://test.jboss.org/ws/jbws1260/types">typeNS:Person</root-type-qname>
- <qname-scope>complexType</qname-scope>
- <variable-mapping>
- <java-variable-name>surname</java-variable-name>
- <xml-element-name>surname</xml-element-name>
- </variable-mapping>
- </java-xml-type-mapping>
-
- <!-- Anonymous wrapping of arrays not required for JBossWS -->
- <!--java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Telephone[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:TelephoneNumber>number[1,unbou...</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping-->
- <!--java-xml-type-mapping>
- <java-type>org.jboss.test.ws.jbws1260.Name[]</java-type>
- <anonymous-type-qname>http://test.jboss.org/ws/jbws1260/types:Person>surname[1,unbounded]</anonymous-type-qname>
- <qname-scope>complexType</qname-scope>
- </java-xml-type-mapping-->
-
- <service-interface-mapping>
- <service-interface>org.jboss.test.ws.jbws1260.PhoneBook_Service</service-interface>
- <wsdl-service-name xmlns:serviceNS="http://test.jboss.org/ws/jbws1260">serviceNS:PhoneBook</wsdl-service-name>
- <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.jbws1260.PhoneBook_PortType</service-endpoint-interface>
- <wsdl-port-type xmlns:portTypeNS="http://test.jboss.org/ws/jbws1260">portTypeNS:PhoneBook</wsdl-port-type>
- <wsdl-binding xmlns:bindingNS="http://test.jboss.org/ws/jbws1260">bindingNS:PhoneBookBinding</wsdl-binding>
- <service-endpoint-method-mapping>
- <java-method-name>lookup</java-method-name>
- <wsdl-operation>lookup</wsdl-operation>
- <wrapped-element/>
- <method-param-parts-mapping>
- <param-position>0</param-position>
- <param-type>org.jboss.test.ws.jbws1260.Name[]</param-type>
- <wsdl-message-mapping>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookup</wsdl-message>
- <wsdl-message-part-name>surname</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.jbws1260.Telephone[]</method-return-value>
- <wsdl-message xmlns:wsdlMsgNS="http://test.jboss.org/ws/jbws1260">wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
- <wsdl-message-part-name>number</wsdl-message-part-name>
- </wsdl-return-value-mapping>
- </service-endpoint-method-mapping>
- </service-endpoint-interface-mapping>
-</java-wsdl-mapping>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/wrapped-mapping.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/wrapped-mapping.xml)
Deleted: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/wstools-config.xml 2007-01-04 15:06:47 UTC (rev 1789)
+++ branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/wstools-config.xml 2007-01-08 21:52:08 UTC (rev 1870)
@@ -1,5 +0,0 @@
-<configuration>
- <wsdl-java location="resources/tools/jbws1260/scenario_Z/Wrapped.wsdl" parameter-style="wrapped">
- <mapping file="wrapped-mapping.xml"/>
- </wsdl-java>
-</configuration>
Copied: branches/dlofthouse/JBWS-1260/jbossws-tests/src/main/resources/tools/jbws1260/scenario_Z/wstools-config.xml (from rev 1789, branches/dlofthouse/JBWS-1260/src/test/resources/tools/jbws1260/scenario_Z/wstools-config.xml)
18 years
JBossWS SVN: r1869 - branches/dlofthouse
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2007-01-08 16:50:24 -0500 (Mon, 08 Jan 2007)
New Revision: 1869
Added:
branches/dlofthouse/JBWS-1260/
Log:
Branch for merge to trunk.
Copied: branches/dlofthouse/JBWS-1260 (from rev 1868, trunk)
18 years
JBossWS SVN: r1868 - branches/dlofthouse
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2007-01-08 16:48:55 -0500 (Mon, 08 Jan 2007)
New Revision: 1868
Added:
branches/dlofthouse/JBWS-1260-Old/
Removed:
branches/dlofthouse/JBWS-1260/
Log:
Move branch so new branch for merge can be created.
Copied: branches/dlofthouse/JBWS-1260-Old (from rev 1867, branches/dlofthouse/JBWS-1260)
18 years
JBossWS SVN: r1866 - in trunk/jbossws-core/src/main/java/org/jboss/ws/core: . server
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2007-01-08 11:04:22 -0500 (Mon, 08 Jan 2007)
New Revision: 1866
Modified:
trunk/jbossws-core/src/main/java/org/jboss/ws/core/CommonSOAPBinding.java
trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/AbstractServiceEndpointInvoker.java
Log:
Added default pivot processing for endpoint invocations
Modified: trunk/jbossws-core/src/main/java/org/jboss/ws/core/CommonSOAPBinding.java
===================================================================
--- trunk/jbossws-core/src/main/java/org/jboss/ws/core/CommonSOAPBinding.java 2007-01-08 15:41:34 UTC (rev 1865)
+++ trunk/jbossws-core/src/main/java/org/jboss/ws/core/CommonSOAPBinding.java 2007-01-08 16:04:22 UTC (rev 1866)
@@ -304,7 +304,7 @@
if (opMetaData.isRPCEncoded())
XOPContext.setMTOMEnabled(false);
else
- XOPContext.setMTOMEnabled( isMTOMEnabled() );
+ XOPContext.setMTOMEnabled( isMTOMEnabled() ); // TODO: shouldn't this depend on the request encoding?
// Associate current message with message context
SOAPMessageImpl resMessage = (SOAPMessageImpl)createMessage(opMetaData);
Modified: trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/AbstractServiceEndpointInvoker.java
===================================================================
--- trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/AbstractServiceEndpointInvoker.java 2007-01-08 15:41:34 UTC (rev 1865)
+++ trunk/jbossws-core/src/main/java/org/jboss/ws/core/server/AbstractServiceEndpointInvoker.java 2007-01-08 16:04:22 UTC (rev 1866)
@@ -25,15 +25,16 @@
import org.jboss.logging.Logger;
import org.jboss.ws.Constants;
-import org.jboss.ws.extensions.xop.XOPContext;
import org.jboss.ws.core.*;
import org.jboss.ws.core.jaxrpc.handler.HandlerDelegateJAXRPC;
import org.jboss.ws.core.jaxws.binding.BindingProviderImpl;
import org.jboss.ws.core.jaxws.handler.HandlerDelegateJAXWS;
+import org.jboss.ws.core.jaxws.handler.MessageContextJAXWS;
import org.jboss.ws.core.soap.MessageContextAssociation;
import org.jboss.ws.core.soap.SOAPBodyImpl;
import org.jboss.ws.core.soap.SOAPMessageImpl;
import org.jboss.ws.core.utils.JavaUtils;
+import org.jboss.ws.extensions.xop.XOPContext;
import org.jboss.ws.metadata.umdm.EndpointMetaData;
import org.jboss.ws.metadata.umdm.HandlerMetaData.HandlerType;
import org.jboss.ws.metadata.umdm.OperationMetaData;
@@ -170,6 +171,8 @@
msgContext.removeProperty(CommonMessageContext.ALLOW_EXPAND_TO_DOM);
}
+ msgContext = processPivot(msgContext);
+
// Set the outbound property
if (epMetaData.getType() == EndpointMetaData.Type.JAXWS)
msgContext.setProperty(MessageContext.MESSAGE_OUTBOUND_PROPERTY, new Boolean(true));
@@ -217,6 +220,13 @@
}
}
+ protected CommonMessageContext processPivot(CommonMessageContext requestContext)
+ {
+ log.debug("Begin response processing");
+ // TODO: implement
+ return requestContext;
+ }
+
private OperationMetaData getDispatchDestination(EndpointMetaData epMetaData, SOAPMessageImpl reqMessage) throws SOAPException
{
OperationMetaData opMetaData = reqMessage.getOperationMetaData(epMetaData);
18 years