From e1539a531da3192dac843520d77c8c76e407a402 Mon Sep 17 00:00:00 2001 From: lresende Date: Sat, 21 Nov 2009 07:55:07 +0000 Subject: Moving 1.x tags git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@882849 13f79535-47bb-0310-9956-ffa450edef68 --- .../interop/services/webserviceInteropDoc/pom.xml | 96 +++++++++++ .../server/InteropDocServiceComponentImpl.java | 45 ++++++ .../src/main/resources/sca.module | 33 ++++ .../src/main/resources/wsdl/interopdoc.wsdl | 177 +++++++++++++++++++++ .../src/main/webapp/WEB-INF/web.xml | 23 +++ 5 files changed, 374 insertions(+) create mode 100644 sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/pom.xml create mode 100644 sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/java/org/apache/tuscany/test/interop/server/InteropDocServiceComponentImpl.java create mode 100644 sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/resources/sca.module create mode 100644 sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/resources/wsdl/interopdoc.wsdl create mode 100644 sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/webapp/WEB-INF/web.xml (limited to 'sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc') diff --git a/sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/pom.xml b/sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/pom.xml new file mode 100644 index 0000000000..234832653f --- /dev/null +++ b/sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/pom.xml @@ -0,0 +1,96 @@ + + + + + org.apache.tuscany + tuscany-testing-interop-services + incubating-M1 + + + 4.0.0 + interop-service-webserviceInteropDoc + war + Tuscany Interop Testing - Services - InteropDoc + incubating-M1 + + + + org.osoa + sca-api + ${pom.version} + provided + + + + org.apache.tuscany + tuscany-core + ${pom.version} + provided + + + org.apache.tuscany.sca.containers + tuscany-container-java + ${pom.version} + provided + + + org.apache.tuscany.sca.bindings + tuscany-binding-axis2 + ${pom.version} + provided + + + + + + + org.apache.tuscany + tuscany-sdo-plugin + + + + ${basedir}/src/main/resources/wsdl/interopdoc.wsdl + true + true + true + true + + + generate + + + + + + org.apache.tuscany.sca.plugins + tuscany-plugin-wsdl2java + + + + ${basedir}/src/main/resources/wsdl/interopdoc.wsdl + org.soapinterop + + + generate + + + + + + + + diff --git a/sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/java/org/apache/tuscany/test/interop/server/InteropDocServiceComponentImpl.java b/sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/java/org/apache/tuscany/test/interop/server/InteropDocServiceComponentImpl.java new file mode 100644 index 0000000000..a2c6cb29dc --- /dev/null +++ b/sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/java/org/apache/tuscany/test/interop/server/InteropDocServiceComponentImpl.java @@ -0,0 +1,45 @@ +/** + * + * Copyright 2005 The Apache Software Foundation or its licensors, as applicable. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.tuscany.test.interop.server; + +import java.rmi.RemoteException; + +import org.osoa.sca.annotations.Service; +import org.soapinterop.ComplexDocument; +import org.soapinterop.DocTestPortType; +import org.soapinterop.SimpleDocument1; +import org.soapinterop.SingleTag; + +/** + * This class implements the HelloWorld service component. + */ +@Service(DocTestPortType.class) +public class InteropDocServiceComponentImpl implements DocTestPortType { + + public ComplexDocument ComplexDocument(ComplexDocument param2) throws RemoteException { + return param2; + } + + public SimpleDocument1 SimpleDocument(SimpleDocument1 param0) throws RemoteException { + return param0; + } + + public SingleTag SingleTag(SingleTag param4) throws RemoteException { + return param4; + } + +} diff --git a/sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/resources/sca.module b/sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/resources/sca.module new file mode 100644 index 0000000000..99013b89a0 --- /dev/null +++ b/sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/resources/sca.module @@ -0,0 +1,33 @@ + + + + + + + + + + + InteropDocServiceComponent/DocTestPortType + + + + + + + diff --git a/sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/resources/wsdl/interopdoc.wsdl b/sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/resources/wsdl/interopdoc.wsdl new file mode 100644 index 0000000000..59352ec4f0 --- /dev/null +++ b/sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/resources/wsdl/interopdoc.wsdl @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/webapp/WEB-INF/web.xml b/sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000000..2cee1c6b32 --- /dev/null +++ b/sca-java-1.x/tags/java-M1-20060522/java/testing/interop/services/webserviceInteropDoc/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,23 @@ + + + + + + Tuscany Interop Test Server + + -- cgit v1.2.3