
    <wsdl:definitions xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://tempuri.org/">
    <wsdl:types>
    <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
    <s:element name="AllPosts">
    <s:complexType/>
    </s:element>
    <s:element name="AllPostsResponse">
    <s:complexType>
    <s:sequence>
    <s:element minOccurs="0" maxOccurs="1" name="AllPostsResult" type="tns:ArrayOfPost"/>
    </s:sequence>
    </s:complexType>
    </s:element>
    <s:complexType name="ArrayOfPost">
    <s:sequence>
    <s:element minOccurs="0" maxOccurs="unbounded" name="Post" nillable="true" type="tns:Post"/>
    </s:sequence>
    </s:complexType>
    <s:complexType name="Post">
    <s:sequence>
    <s:element minOccurs="0" maxOccurs="1" name="Id" type="s:string"/>
    <s:element minOccurs="0" maxOccurs="1" name="Title" type="s:string"/>
    <s:element minOccurs="1" maxOccurs="1" name="Published" type="s:string"/>
    <s:element minOccurs="0" maxOccurs="1" name="Content" type="s:string"/>
    <s:element minOccurs="1" maxOccurs="1" name="ViewCount" type="s:int"/>
    </s:sequence>
    </s:complexType>
    <s:element name="GetPost">
    <s:complexType>
    <s:sequence>
    <s:element minOccurs="0" maxOccurs="1" name="id" type="s:string"/>
    </s:sequence>
    </s:complexType>
    </s:element>
    <s:element name="GetPostResponse">
    <s:complexType>
    <s:sequence>
    <s:element minOccurs="0" maxOccurs="1" name="GetPostResult" type="tns:Post"/>
    </s:sequence>
    </s:complexType>
    </s:element>
    <s:element name="CreatePost">
    <s:complexType>
    <s:sequence>
    <s:element minOccurs="0" maxOccurs="1" name="title" type="s:string"/>
    <s:element minOccurs="0" maxOccurs="1" name="content" type="s:string"/>
    <s:element minOccurs="1" maxOccurs="1" name="viewCount" type="s:int"/>
    </s:sequence>
    </s:complexType>
    </s:element>
    <s:element name="CreatePostResponse">
    <s:complexType>
    <s:sequence>
    <s:element minOccurs="0" maxOccurs="1" name="CreatePostResult" type="tns:Post"/>
    </s:sequence>
    </s:complexType>
    </s:element>
    <s:element name="UpdatePost">
    <s:complexType>
    <s:sequence>
    <s:element minOccurs="0" maxOccurs="1" name="id" type="s:string"/>
    <s:element minOccurs="0" maxOccurs="1" name="title" type="s:string"/>
    <s:element minOccurs="0" maxOccurs="1" name="content" type="s:string"/>
    <s:element minOccurs="1" maxOccurs="1" name="viewCount" type="s:int"/>
    </s:sequence>
    </s:complexType>
    </s:element>
    <s:element name="UpdatePostResponse">
    <s:complexType>
    <s:sequence>
    <s:element minOccurs="0" maxOccurs="1" name="UpdatePostResult" type="tns:Post"/>
    </s:sequence>
    </s:complexType>
    </s:element>
    <s:element name="DeletePost">
    <s:complexType>
    <s:sequence>
    <s:element minOccurs="0" maxOccurs="1" name="id" type="s:string"/>
    </s:sequence>
    </s:complexType>
    </s:element>
    <s:element name="DeletePostResponse">
    <s:complexType/>
    </s:element>
    </s:schema>
    </wsdl:types>
    <wsdl:message name="AllPostsSoapIn">
    <wsdl:part name="parameters" element="tns:AllPosts"/>
    </wsdl:message>
    <wsdl:message name="AllPostsSoapOut">
    <wsdl:part name="parameters" element="tns:AllPostsResponse"/>
    </wsdl:message>
    <wsdl:message name="GetPostSoapIn">
    <wsdl:part name="parameters" element="tns:GetPost"/>
    </wsdl:message>
    <wsdl:message name="GetPostSoapOut">
    <wsdl:part name="parameters" element="tns:GetPostResponse"/>
    </wsdl:message>
    <wsdl:message name="CreatePostSoapIn">
    <wsdl:part name="parameters" element="tns:CreatePost"/>
    </wsdl:message>
    <wsdl:message name="CreatePostSoapOut">
    <wsdl:part name="parameters" element="tns:CreatePostResponse"/>
    </wsdl:message>
    <wsdl:message name="UpdatePostSoapIn">
    <wsdl:part name="parameters" element="tns:UpdatePost"/>
    </wsdl:message>
    <wsdl:message name="UpdatePostSoapOut">
    <wsdl:part name="parameters" element="tns:UpdatePostResponse"/>
    </wsdl:message>
    <wsdl:message name="DeletePostSoapIn">
    <wsdl:part name="parameters" element="tns:DeletePost"/>
    </wsdl:message>
    <wsdl:message name="DeletePostSoapOut">
    <wsdl:part name="parameters" element="tns:DeletePostResponse"/>
    </wsdl:message>
    <wsdl:portType name="BlogSoap">
    <wsdl:operation name="AllPosts">
    <wsdl:input message="tns:AllPostsSoapIn"/>
    <wsdl:output message="tns:AllPostsSoapOut"/>
    </wsdl:operation>
    <wsdl:operation name="GetPost">
    <wsdl:input message="tns:GetPostSoapIn"/>
    <wsdl:output message="tns:GetPostSoapOut"/>
    </wsdl:operation>
    <wsdl:operation name="CreatePost">
    <wsdl:input message="tns:CreatePostSoapIn"/>
    <wsdl:output message="tns:CreatePostSoapOut"/>
    </wsdl:operation>
    <wsdl:operation name="UpdatePost">
    <wsdl:input message="tns:UpdatePostSoapIn"/>
    <wsdl:output message="tns:UpdatePostSoapOut"/>
    </wsdl:operation>
    <wsdl:operation name="DeletePost">
    <wsdl:input message="tns:DeletePostSoapIn"/>
    <wsdl:output message="tns:DeletePostSoapOut"/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="BlogSoap" type="tns:BlogSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="AllPosts">
    <soap:operation soapAction="http://tempuri.org/AllPosts" style="document"/>
    <wsdl:input>
    <soap:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetPost">
    <soap:operation soapAction="http://tempuri.org/GetPost" style="document"/>
    <wsdl:input>
    <soap:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="CreatePost">
    <soap:operation soapAction="http://tempuri.org/CreatePost" style="document"/>
    <wsdl:input>
    <soap:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="UpdatePost">
    <soap:operation soapAction="http://tempuri.org/UpdatePost" style="document"/>
    <wsdl:input>
    <soap:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="DeletePost">
    <soap:operation soapAction="http://tempuri.org/DeletePost" style="document"/>
    <wsdl:input>
    <soap:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:binding name="BlogSoap12" type="tns:BlogSoap">
    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="AllPosts">
    <soap12:operation soapAction="http://tempuri.org/AllPosts" style="document"/>
    <wsdl:input>
    <soap12:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap12:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetPost">
    <soap12:operation soapAction="http://tempuri.org/GetPost" style="document"/>
    <wsdl:input>
    <soap12:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap12:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="CreatePost">
    <soap12:operation soapAction="http://tempuri.org/CreatePost" style="document"/>
    <wsdl:input>
    <soap12:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap12:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="UpdatePost">
    <soap12:operation soapAction="http://tempuri.org/UpdatePost" style="document"/>
    <wsdl:input>
    <soap12:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap12:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="DeletePost">
    <soap12:operation soapAction="http://tempuri.org/DeletePost" style="document"/>
    <wsdl:input>
    <soap12:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap12:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="Blog">
    <wsdl:port name="BlogSoap" binding="tns:BlogSoap">
    <soap:address location="http://consumerservicesapi.talkpython.fm/soap"/>
    </wsdl:port>
    <wsdl:port name="BlogSoap12" binding="tns:BlogSoap12">
    <soap12:address location="http://consumerservicesapi.talkpython.fm/soap"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>