<?xml version="1.0" encoding="ISO-8859-1"?>
<definitions xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://101.gs/wsdl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://101.gs/wsdl">
<types>
<xsd:schema targetNamespace="http://101.gs/wsdl"
>
 <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
 <xsd:import namespace="http://schemas.xmlsoap.org/wsdl/" />
 <xsd:complexType name="shortURL">
  <xsd:all>
   <xsd:element name="myurl" type="xsd:string"/>
  </xsd:all>
 </xsd:complexType>
</xsd:schema>
</types>
<message name="createURLRequest">
  <part name="gkey" type="xsd:string" />
  <part name="glink" type="xsd:string" /></message>
<message name="createURLResponse">
  <part name="return" type="tns:shortURL" /></message>
<portType name="shortURLWsdlPortType">
  <operation name="createURL">
    <documentation>Generate my 101.gs short/tiny url</documentation>
    <input message="tns:createURLRequest"/>
    <output message="tns:createURLResponse"/>
  </operation>
</portType>
<binding name="shortURLWsdlBinding" type="tns:shortURLWsdlPortType">
  <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
  <operation name="createURL">
    <soap:operation soapAction="http://101.gs/wsdl#createURL" style="rpc"/>
    <input><soap:body use="encoded" namespace="http://101.gs/wsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></input>
    <output><soap:body use="encoded" namespace="http://101.gs/wsdl" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></output>
  </operation>
</binding>
<service name="shortURLWsdl">
  <port name="shortURLWsdlPort" binding="tns:shortURLWsdlBinding">
    <soap:address location="http://101.gs/soap.server.php"/>
  </port>
</service>
</definitions>