-
Notifications
You must be signed in to change notification settings - Fork 1
/
RSSValidator.wsdl
76 lines (67 loc) · 2.39 KB
/
RSSValidator.wsdl
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
<?xml version="1.0" encoding="utf-8"?>
<definitions
targetNamespace="http://feedvalidator.org/"
xmlns:validator="http://feedvalidator.org/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<xsd:schema elementFormDefault="qualified"
targetNamespace="http://feedvalidator.org/">
<xsd:complexType name="Request">
<xsd:sequence>
<xsd:any namespace="##other"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Message">
<xsd:sequence>
<xsd:element name="level" type="xsd:string"/>
<xsd:element name="type" type="xsd:string"/>
<xsd:element name="line" type="xsd:string"/>
<xsd:element name="column" type="xsd:string"/>
<xsd:element name="msgcount" type="xsd:string"/>
<xsd:element name="text" type="xsd:string"/>
<xsd:any minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Response">
<xsd:sequence>
<xsd:element name="message" type="validator:Message"
minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:element name="request" type="validator:Request"/>
<xsd:element name="response" type="validator:Response"/>
</xsd:schema>
</types>
<message name="validateIn">
<part name="request" element="validator:request" />
</message>
<message name="validateOut">
<part name="response" element="validator:response" />
</message>
<portType name="RSSValidatorSoap">
<operation name="validate">
<input message="validator:validateIn" />
<output message="validator:validateOut" />
</operation>
</portType>
<binding name="soap" type="validator:RSSValidatorSoap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http"
style="document" />
<operation name="validate">
<soap:operation soapAction="urn:validate" style="document" />
<input>
<soap:body use="literal" />
</input>
<output>
<soap:body use="literal" />
</output>
</operation>
</binding>
<service name="RSSValidator">
<port name="RSSValidatorSoap" binding="validator:soap">
<soap:address location="http://feedvalidator.org/" />
</port>
</service>
</definitions>