You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by rf...@apache.org on 2006/09/09 19:37:29 UTC

svn commit: r441832 - in /incubator/tuscany/java/samples/sca/echo.databinding/src/test/resources: META-INF/tuscany/test-interface-wsdl.scdl wsdl/ wsdl/echo.wsdl

Author: rfeng
Date: Sat Sep  9 10:37:29 2006
New Revision: 441832

URL: http://svn.apache.org/viewvc?view=rev&rev=441832
Log:
Missing some new files in revision 441828

Added:
    incubator/tuscany/java/samples/sca/echo.databinding/src/test/resources/META-INF/tuscany/test-interface-wsdl.scdl
    incubator/tuscany/java/samples/sca/echo.databinding/src/test/resources/wsdl/
    incubator/tuscany/java/samples/sca/echo.databinding/src/test/resources/wsdl/echo.wsdl

Added: incubator/tuscany/java/samples/sca/echo.databinding/src/test/resources/META-INF/tuscany/test-interface-wsdl.scdl
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/samples/sca/echo.databinding/src/test/resources/META-INF/tuscany/test-interface-wsdl.scdl?view=auto&rev=441832
==============================================================================
--- incubator/tuscany/java/samples/sca/echo.databinding/src/test/resources/META-INF/tuscany/test-interface-wsdl.scdl (added)
+++ incubator/tuscany/java/samples/sca/echo.databinding/src/test/resources/META-INF/tuscany/test-interface-wsdl.scdl Sat Sep  9 10:37:29 2006
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    * Licensed to the Apache Software Foundation (ASF) under one
+    * or more contributor license agreements.  See the NOTICE file
+    * distributed with this work for additional information
+    * regarding copyright ownership.  The ASF licenses this file
+    * to you 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.    
+-->
+<!--
+    Default system configuration for the launcher environment.
+    
+    $Rev: 440894 $ $Date: 2006-09-06 15:52:01 -0700 (Wed, 06 Sep 2006) $
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" xmlns:system="http://tuscany.apache.org/xmlns/system/1.0-SNAPSHOT"
+    name="org.apache.tuscany.idl.WSDL">
+
+    <component name="interface.wsdl.Loader">
+        <system:implementation.system class="org.apache.tuscany.idl.wsdl.InterfaceWSDLLoader" />
+    </component>
+
+    <component name="wsdl.Registry">
+        <system:implementation.system class="org.apache.tuscany.idl.wsdl.WSDLDefinitionRegistryImpl" initLevel="40" />
+    </component>
+
+    <component name="interface.wsdl.Introspector">
+        <system:implementation.system class="org.apache.tuscany.idl.wsdl.InterfaceWSDLIntrospectorImpl" initLevel="40" />
+    </component>
+    
+</composite>
\ No newline at end of file

Added: incubator/tuscany/java/samples/sca/echo.databinding/src/test/resources/wsdl/echo.wsdl
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/samples/sca/echo.databinding/src/test/resources/wsdl/echo.wsdl?view=auto&rev=441832
==============================================================================
--- incubator/tuscany/java/samples/sca/echo.databinding/src/test/resources/wsdl/echo.wsdl (added)
+++ incubator/tuscany/java/samples/sca/echo.databinding/src/test/resources/wsdl/echo.wsdl Sat Sep  9 10:37:29 2006
@@ -0,0 +1,40 @@
+<?xml version="1.0"?>
+<definitions name="StockQuote" targetNamespace="http://example.com/echo.wsdl"
+    xmlns:tns="http://example.com/echo.wsdl" xmlns:xsd1="http://example.com/echo.xsd"
+    xmlns="http://schemas.xmlsoap.org/wsdl/">
+
+    <types>
+        <schema targetNamespace="http://example.com/echo.xsd" xmlns="http://www.w3.org/2001/XMLSchema">
+            <element name="echo">
+                <complexType>
+                    <sequence>
+                        <element name="message" type="string" />
+                    </sequence>
+                </complexType>
+            </element>
+            <element name="echoResponse">
+                <complexType>
+                    <sequence>
+                        <element name="message" type="string" />
+                    </sequence>
+                </complexType>
+            </element>
+        </schema>
+    </types>
+
+    <message name="EchoInput">
+        <part name="body" element="xsd1:echo" />
+    </message>
+
+    <message name="EchoOutput">
+        <part name="body" element="xsd1:echoResponse" />
+    </message>
+
+    <portType name="EchoPortType">
+        <operation name="echo">
+            <input message="tns:EchoInput" />
+            <output message="tns:EchoOutput" />
+        </operation>
+    </portType>
+
+</definitions>
\ No newline at end of file



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org