mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
76 lines
2.4 KiB
XML
76 lines
2.4 KiB
XML
<?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>
|