summaryrefslogtreecommitdiffstats
path: root/tags/cpp-0.1.incubating-M1-RC3b/sca/projects/tuscany_sca/tuscany_sca_test/testSCASystem/modules/MyValueServiceModule/MyValueService.wsdl
blob: f82690e1ab3ef1ed79e8951607c07e07c41e9653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" 
             xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
             xmlns:xs="http://www.w3.org/2001/XMLSchema" 
             xmlns:tns="http://www.myvalue.org/MyValueService/"
             targetNamespace="http://www.myvalue.org/MyValueService/">
    <types>
		<xs:schema targetNamespace="http://www.myvalue.org/MyValueService/" 
                   xmlns:xs="http://www.w3.org/2001/XMLSchema"
                   xmlns:tns="http://www.myvalue.org/MyValueService/"
                   elementFormDefault="qualified">
        
		<xs:element name="getMyValue">
			<xs:complexType>
				<xs:sequence>
    				<xs:element name="customerID" type="xs:string" minOccurs="1"/>
				</xs:sequence>
			</xs:complexType>
		</xs:element>
        
		<xs:element name="getMyValueResponse">
			<xs:complexType>
				<xs:sequence>
					<xs:element name="myValue" type="xs:float" minOccurs="1"/>
				</xs:sequence>
			</xs:complexType>
		</xs:element>
        
        </xs:schema>
   </types>
           
    <message name="getMyValueRequestMsg">
	<part name="body" element="tns:getMyValue"/>
    </message>
	    
    <message name="getMyValueResponseMsg">
	<part name="body" element="tns:getMyValueResponse"/>
    </message>
    
    <portType name="MyValueServicePortType">
	<operation name="getMyValue">
	    <input message="tns:getMyValueRequestMsg"/>
	    <output message="tns:getMyValueResponseMsg"/>
	</operation>
    </portType>
    
    <binding name="MyValueServiceBinding" type="tns:MyValueServicePortType">
	<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
	<operation name="getMyValue">
	    <soap:operation soapAction="MyValueService#getMyValue"/>
	    <input>
		<soap:body use="literal"/>
	    </input>
	    <output>
		<soap:body use="literal"/>
	    </output>
	</operation>
    </binding>
    
    <service name="MyValueService">
	<port name="MyValueServicePort" binding="tns:MyValueServiceBinding">
	    <soap:address location="http://localhost/axis/MyValueService"/>
	</port>
    </service>
</definitions>