<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 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://supersimplestorageservice.com/" xmlns:s1="http://supersimplestorageservice.com/AbstractTypes" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://supersimplestorageservice.com/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  <wsdl:types>
    <s:schema elementFormDefault="qualified" targetNamespace="http://supersimplestorageservice.com/">
      <s:element name="WriteString">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="key" type="s:string" />
            <s:element minOccurs="0" maxOccurs="1" name="value" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="WriteStringResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="WriteStringResult" type="tns:Status" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:simpleType name="Status">
        <s:restriction base="s:string">
          <s:enumeration value="Success" />
          <s:enumeration value="Error" />
        </s:restriction>
      </s:simpleType>
      <s:element name="WriteBytes">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="key" type="s:string" />
            <s:element minOccurs="0" maxOccurs="1" name="content" type="s:base64Binary" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="WriteBytesResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="WriteBytesResult" type="tns:Status" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="Status" type="tns:Status" />
    </s:schema>
    <s:schema targetNamespace="http://supersimplestorageservice.com/AbstractTypes">
      <s:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
      <s:complexType name="StringArray">
        <s:complexContent mixed="false">
          <s:restriction base="soapenc:Array">
            <s:sequence>
              <s:element minOccurs="0" maxOccurs="unbounded" name="String" type="s:string" />
            </s:sequence>
          </s:restriction>
        </s:complexContent>
      </s:complexType>
    </s:schema>
  </wsdl:types>
  <wsdl:message name="WriteStringSoapIn">
    <wsdl:part name="parameters" element="tns:WriteString" />
  </wsdl:message>
  <wsdl:message name="WriteStringSoapOut">
    <wsdl:part name="parameters" element="tns:WriteStringResponse" />
  </wsdl:message>
  <wsdl:message name="WriteBytesSoapIn">
    <wsdl:part name="parameters" element="tns:WriteBytes" />
  </wsdl:message>
  <wsdl:message name="WriteBytesSoapOut">
    <wsdl:part name="parameters" element="tns:WriteBytesResponse" />
  </wsdl:message>
  <wsdl:message name="WriteStringHttpGetIn">
    <wsdl:part name="key" type="s:string" />
    <wsdl:part name="value" type="s:string" />
  </wsdl:message>
  <wsdl:message name="WriteStringHttpGetOut">
    <wsdl:part name="Body" element="tns:Status" />
  </wsdl:message>
  <wsdl:message name="WriteBytesHttpGetIn">
    <wsdl:part name="key" type="s:string" />
    <wsdl:part name="content" type="s1:StringArray" />
  </wsdl:message>
  <wsdl:message name="WriteBytesHttpGetOut">
    <wsdl:part name="Body" element="tns:Status" />
  </wsdl:message>
  <wsdl:message name="WriteStringHttpPostIn">
    <wsdl:part name="key" type="s:string" />
    <wsdl:part name="value" type="s:string" />
  </wsdl:message>
  <wsdl:message name="WriteStringHttpPostOut">
    <wsdl:part name="Body" element="tns:Status" />
  </wsdl:message>
  <wsdl:message name="WriteBytesHttpPostIn">
    <wsdl:part name="key" type="s:string" />
    <wsdl:part name="content" type="s1:StringArray" />
  </wsdl:message>
  <wsdl:message name="WriteBytesHttpPostOut">
    <wsdl:part name="Body" element="tns:Status" />
  </wsdl:message>
  <wsdl:portType name="S4Soap">
    <wsdl:operation name="WriteString">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Write a information to S4 via a key and string value</wsdl:documentation>
      <wsdl:input message="tns:WriteStringSoapIn" />
      <wsdl:output message="tns:WriteStringSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="WriteBytes">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Write information to S4 via a key with byte array content</wsdl:documentation>
      <wsdl:input message="tns:WriteBytesSoapIn" />
      <wsdl:output message="tns:WriteBytesSoapOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:portType name="S4HttpGet">
    <wsdl:operation name="WriteString">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Write a information to S4 via a key and string value</wsdl:documentation>
      <wsdl:input message="tns:WriteStringHttpGetIn" />
      <wsdl:output message="tns:WriteStringHttpGetOut" />
    </wsdl:operation>
    <wsdl:operation name="WriteBytes">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Write information to S4 via a key with byte array content</wsdl:documentation>
      <wsdl:input message="tns:WriteBytesHttpGetIn" />
      <wsdl:output message="tns:WriteBytesHttpGetOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:portType name="S4HttpPost">
    <wsdl:operation name="WriteString">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Write a information to S4 via a key and string value</wsdl:documentation>
      <wsdl:input message="tns:WriteStringHttpPostIn" />
      <wsdl:output message="tns:WriteStringHttpPostOut" />
    </wsdl:operation>
    <wsdl:operation name="WriteBytes">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Write information to S4 via a key with byte array content</wsdl:documentation>
      <wsdl:input message="tns:WriteBytesHttpPostIn" />
      <wsdl:output message="tns:WriteBytesHttpPostOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="S4Soap" type="tns:S4Soap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="WriteString">
      <soap:operation soapAction="http://supersimplestorageservice.com/WriteString" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WriteBytes">
      <soap:operation soapAction="http://supersimplestorageservice.com/WriteBytes" 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="S4Soap12" type="tns:S4Soap">
    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="WriteString">
      <soap12:operation soapAction="http://supersimplestorageservice.com/WriteString" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WriteBytes">
      <soap12:operation soapAction="http://supersimplestorageservice.com/WriteBytes" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:binding name="S4HttpGet" type="tns:S4HttpGet">
    <http:binding verb="GET" />
    <wsdl:operation name="WriteString">
      <http:operation location="/WriteString" />
      <wsdl:input>
        <http:urlEncoded />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WriteBytes">
      <http:operation location="/WriteBytes" />
      <wsdl:input>
        <http:urlEncoded />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:binding name="S4HttpPost" type="tns:S4HttpPost">
    <http:binding verb="POST" />
    <wsdl:operation name="WriteString">
      <http:operation location="/WriteString" />
      <wsdl:input>
        <mime:content type="application/x-www-form-urlencoded" />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WriteBytes">
      <http:operation location="/WriteBytes" />
      <wsdl:input>
        <mime:content type="application/x-www-form-urlencoded" />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="S4">
    <wsdl:port name="S4Soap" binding="tns:S4Soap">
      <soap:address location="http://www.supersimplestorageservice.com/API/S4.asmx" />
    </wsdl:port>
    <wsdl:port name="S4Soap12" binding="tns:S4Soap12">
      <soap12:address location="http://www.supersimplestorageservice.com/API/S4.asmx" />
    </wsdl:port>
    <wsdl:port name="S4HttpGet" binding="tns:S4HttpGet">
      <http:address location="http://www.supersimplestorageservice.com/API/S4.asmx" />
    </wsdl:port>
    <wsdl:port name="S4HttpPost" binding="tns:S4HttpPost">
      <http:address location="http://www.supersimplestorageservice.com/API/S4.asmx" />
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>