summaryrefslogtreecommitdiffstats
path: root/tags/cpp-sca-20060405/samples/MyValue/MyValueModule/MyValue/MyValueService.xsd
blob: 4a1674f89d7292c1becc3910c9601c747ceeecba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<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>