Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0db92bfa378513a6a2fde05899b972cd0e9d8348 (plain) (blame)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="Name" targetNamespace="http://tempuri.org/" xmlns:tns="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
	<wsdl:types>
		<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
			<xsd:element name="Report">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element ref="tns:Name" />
						<xsd:element ref="tns:Specimen" />
						<xsd:element ref="tns:Lot" />
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="SampleList">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element maxOccurs="unbounded" minOccurs="1" ref="tns:Report" />
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="Count" type="xsd:string" />
			<xsd:element name="LastModified" type="xsd:string" />
			<xsd:element name="Lot" type="xsd:string" />
			<xsd:element name="Name" type="xsd:string" />
			<xsd:element name="Number" type="xsd:string" />
			<xsd:element name="Specimen" type="xsd:string" />
			<xsd:element name="Sample">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element ref="tns:SampleName" />
						<xsd:element ref="tns:Count" />
						<xsd:element ref="tns:LastModified" />
						<xsd:element maxOccurs="unbounded" minOccurs="0" ref="tns:SampleProvider" />
					</xsd:sequence>
					<xsd:attribute name="id" type="xsd:string" use="optional" />
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="SampleName" type="xsd:string" />
			<xsd:element name="SampleProvider">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element ref="tns:Name" />
						<xsd:element ref="tns:Number" />
						<xsd:element ref="tns:SampleList" />
					</xsd:sequence>
					<xsd:attribute name="id" type="xsd:string" use="optional" />
				</xsd:complexType>
			</xsd:element>


		</xsd:schema>
	</wsdl:types>
	<wsdl:message name="getSampleRequest">
		<wsdl:part name="sampleId" type="xsd:string"></wsdl:part>
	</wsdl:message>
	<wsdl:message name="getSampleResponse">
		<wsdl:part name="report" element="tns:Sample"></wsdl:part>
	</wsdl:message>
	<wsdl:portType name="SamplePortType">
		<wsdl:operation name="getSample">
			<wsdl:input message="tns:getSampleRequest"></wsdl:input>
			<wsdl:output message="tns:getSampleResponse"></wsdl:output>
		</wsdl:operation>
	</wsdl:portType>
	<wsdl:binding name="SampleBinding" type="tns:SamplePortType">
		<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
		<wsdl:operation name="getSample">
			<soap:operation soapAction="http://tempuri.org/getSample" />
			<wsdl:input>
				<soap:body use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
	</wsdl:binding>
	<wsdl:service name="SampleService">
		<wsdl:port name="SamplePort" binding="tns:SampleBinding">
			<soap:address location="http://tempuri.org/" />
		</wsdl:port>
	</wsdl:service>
</wsdl:definitions>

Back to the top