<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:s1="http://ibink.com/PhotoDataXSDSchema.xsd" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:s2="http://ibink.com/webservices/encodedTypes" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://ibink.com/webservices/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://ibink.com/webservices/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  <wsdl:types>
    <s:schema elementFormDefault="qualified" targetNamespace="http://ibink.com/webservices/">
      <s:import namespace="http://ibink.com/PhotoDataXSDSchema.xsd" />
      <s:element name="GetGalleryRootSoapDoc">
        <s:complexType />
      </s:element>
      <s:element name="GetGalleryRootSoapDocResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" ref="s1:photoNode" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetGalleryNodeSoapDoc">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="id" type="s:int" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetGalleryNodeSoapDocResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" ref="s1:photoNode" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetGalleryImageSoapDoc">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="galID" type="s:int" />
            <s:element minOccurs="1" maxOccurs="1" name="imgID" type="s:int" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetGalleryImageSoapDocResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" ref="s1:galleryImage" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetGalleryImageByContextIDSoapDoc">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="imageContextID" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetGalleryImageByContextIDSoapDocResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" ref="s1:galleryImage" />
          </s:sequence>
        </s:complexType>
      </s:element>
    </s:schema>
    <s:schema elementFormDefault="qualified" targetNamespace="http://ibink.com/PhotoDataXSDSchema.xsd">
      <s:element name="photoNode" type="s1:PhotoNodeXSD" />
      <s:complexType name="PhotoNodeXSD">
        <s:sequence>
          <s:element minOccurs="0" maxOccurs="1" name="name" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="thumb" type="s1:ThumbXSD" />
          <s:element minOccurs="1" maxOccurs="1" name="context" nillable="true" type="s1:ContextXSD" />
          <s:element minOccurs="0" maxOccurs="1" name="children" type="s1:ArrayOfChoice1" />
        </s:sequence>
        <s:attribute name="nodeID" type="s:int" use="required" />
      </s:complexType>
      <s:complexType name="ThumbXSD">
        <s:attribute name="imageID" type="s:int" use="required" />
        <s:attribute name="height" type="s:int" use="required" />
        <s:attribute name="width" type="s:int" use="required" />
      </s:complexType>
      <s:complexType name="ContextXSD">
        <s:sequence>
          <s:choice minOccurs="1" maxOccurs="1">
            <s:element minOccurs="0" maxOccurs="1" name="previousGallery" type="s1:GalleryInfoXSD" />
            <s:element minOccurs="0" maxOccurs="1" name="previousImage" type="s1:ImageInfoXSD" />
          </s:choice>
          <s:choice minOccurs="1" maxOccurs="1">
            <s:element minOccurs="0" maxOccurs="1" name="nextGallery" type="s1:GalleryInfoXSD" />
            <s:element minOccurs="0" maxOccurs="1" name="nextImage" type="s1:ImageInfoXSD" />
          </s:choice>
          <s:choice minOccurs="1" maxOccurs="1">
            <s:element minOccurs="0" maxOccurs="1" name="firstImage" type="s1:ImageInfoXSD" />
            <s:element minOccurs="0" maxOccurs="1" name="firstGallery" type="s1:GalleryInfoXSD" />
          </s:choice>
          <s:choice minOccurs="1" maxOccurs="1">
            <s:element minOccurs="0" maxOccurs="1" name="lastGallery" type="s1:GalleryInfoXSD" />
            <s:element minOccurs="0" maxOccurs="1" name="lastImage" type="s1:ImageInfoXSD" />
          </s:choice>
          <s:element minOccurs="0" maxOccurs="1" name="parents" type="s1:ArrayOfGalleryInfoXSD" />
        </s:sequence>
      </s:complexType>
      <s:complexType name="GalleryInfoXSD">
        <s:complexContent mixed="false">
          <s:extension base="s1:NodeInfoXSD">
            <s:attribute name="nodeID" type="s:int" use="required" />
          </s:extension>
        </s:complexContent>
      </s:complexType>
      <s:complexType name="NodeInfoXSD" abstract="true">
        <s:sequence>
          <s:element minOccurs="0" maxOccurs="1" name="name" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="thumb" type="s1:ThumbXSD" />
        </s:sequence>
      </s:complexType>
      <s:complexType name="ImageInfoXSD">
        <s:complexContent mixed="false">
          <s:extension base="s1:NodeInfoXSD">
            <s:attribute name="imageID" type="s:int" use="required" />
            <s:attribute name="contextID" type="s:string" />
          </s:extension>
        </s:complexContent>
      </s:complexType>
      <s:complexType name="ArrayOfGalleryInfoXSD">
        <s:sequence>
          <s:element minOccurs="0" maxOccurs="unbounded" name="parent" nillable="true" type="s1:GalleryInfoXSD" />
        </s:sequence>
      </s:complexType>
      <s:complexType name="ArrayOfChoice1">
        <s:choice minOccurs="0" maxOccurs="unbounded">
          <s:element minOccurs="1" maxOccurs="1" name="childImage" nillable="true" type="s1:ImageInfoXSD" />
          <s:element minOccurs="1" maxOccurs="1" name="childGallery" nillable="true" type="s1:GalleryInfoXSD" />
        </s:choice>
      </s:complexType>
      <s:element name="galleryImage" type="s1:GalleryImageXSD" />
      <s:complexType name="GalleryImageXSD">
        <s:sequence>
          <s:element minOccurs="0" maxOccurs="1" name="name" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="displayWidth" type="s:int" />
          <s:element minOccurs="1" maxOccurs="1" name="displayHeight" type="s:int" />
          <s:element minOccurs="1" maxOccurs="1" name="thumbWidth" type="s:int" />
          <s:element minOccurs="1" maxOccurs="1" name="thumbHeight" type="s:int" />
          <s:element minOccurs="1" maxOccurs="1" name="originalWidth" type="s:int" />
          <s:element minOccurs="1" maxOccurs="1" name="originalHeight" type="s:int" />
          <s:element minOccurs="0" maxOccurs="1" name="originalPath" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="originalFilename" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="dateTaken" type="s:dateTime" />
          <s:element minOccurs="0" maxOccurs="1" name="photographer" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="caption" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="location" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="annotation" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="context" type="s1:ContextXSD" />
        </s:sequence>
        <s:attribute name="imageID" type="s:int" use="required" />
        <s:attribute name="contextID" type="s:string" />
      </s:complexType>
    </s:schema>
    <s:schema targetNamespace="http://ibink.com/webservices/encodedTypes">
      <s:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
      <s:import namespace="http://schemas.xmlsoap.org/wsdl/" />
      <s:complexType name="PhotoNodeXSD">
        <s:sequence>
          <s:element minOccurs="1" maxOccurs="1" name="Id" type="s:int" />
          <s:element minOccurs="1" maxOccurs="1" name="Name" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="Thumb" type="s2:ThumbXSD" />
          <s:element minOccurs="1" maxOccurs="1" name="Context" type="s2:ContextXSD" />
          <s:element minOccurs="1" maxOccurs="1" name="Children" type="s2:ArrayOfNodeInfoXSD" />
        </s:sequence>
      </s:complexType>
      <s:complexType name="ThumbXSD">
        <s:sequence>
          <s:element minOccurs="1" maxOccurs="1" name="Id" type="s:int" />
          <s:element minOccurs="1" maxOccurs="1" name="Height" type="s:int" />
          <s:element minOccurs="1" maxOccurs="1" name="Width" type="s:int" />
        </s:sequence>
      </s:complexType>
      <s:complexType name="ContextXSD">
        <s:sequence>
          <s:element minOccurs="1" maxOccurs="1" name="Previous" type="s2:NodeInfoXSD" />
          <s:element minOccurs="1" maxOccurs="1" name="Next" type="s2:NodeInfoXSD" />
          <s:element minOccurs="1" maxOccurs="1" name="First" type="s2:NodeInfoXSD" />
          <s:element minOccurs="1" maxOccurs="1" name="Last" type="s2:NodeInfoXSD" />
          <s:element minOccurs="1" maxOccurs="1" name="Parents" type="s2:ArrayOfNodeInfoXSD" />
        </s:sequence>
      </s:complexType>
      <s:complexType name="NodeInfoXSD" abstract="true">
        <s:sequence>
          <s:element minOccurs="1" maxOccurs="1" name="Name" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="Thumb" type="s2:ThumbXSD" />
        </s:sequence>
      </s:complexType>
      <s:complexType name="ArrayOfNodeInfoXSD">
        <s:complexContent mixed="false">
          <s:restriction base="soapenc:Array">
            <s:attribute wsdl:arrayType="s2:NodeInfoXSD[]" ref="soapenc:arrayType" />
          </s:restriction>
        </s:complexContent>
      </s:complexType>
      <s:complexType name="GalleryImageXSD">
        <s:sequence>
          <s:element minOccurs="1" maxOccurs="1" name="Id" type="s:int" />
          <s:element minOccurs="1" maxOccurs="1" name="ContextID" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="Name" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="DisplayWidth" type="s:int" />
          <s:element minOccurs="1" maxOccurs="1" name="DisplayHeight" type="s:int" />
          <s:element minOccurs="1" maxOccurs="1" name="ThumbWidth" type="s:int" />
          <s:element minOccurs="1" maxOccurs="1" name="ThumbHeight" type="s:int" />
          <s:element minOccurs="1" maxOccurs="1" name="OriginalWidth" type="s:int" />
          <s:element minOccurs="1" maxOccurs="1" name="OriginalHeight" type="s:int" />
          <s:element minOccurs="1" maxOccurs="1" name="OriginalPath" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="OriginalFilename" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="DateTaken" type="s:dateTime" />
          <s:element minOccurs="1" maxOccurs="1" name="DateTakenSpecified" type="s:boolean" />
          <s:element minOccurs="1" maxOccurs="1" name="Photographer" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="Caption" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="Location" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="Annotation" type="s:string" />
          <s:element minOccurs="1" maxOccurs="1" name="Context" type="s2:ContextXSD" />
        </s:sequence>
      </s:complexType>
    </s:schema>
  </wsdl:types>
  <wsdl:message name="GetGalleryRootSoapDocSoapIn">
    <wsdl:part name="parameters" element="tns:GetGalleryRootSoapDoc" />
  </wsdl:message>
  <wsdl:message name="GetGalleryRootSoapDocSoapOut">
    <wsdl:part name="parameters" element="tns:GetGalleryRootSoapDocResponse" />
  </wsdl:message>
  <wsdl:message name="GetGalleryNodeSoapDocSoapIn">
    <wsdl:part name="parameters" element="tns:GetGalleryNodeSoapDoc" />
  </wsdl:message>
  <wsdl:message name="GetGalleryNodeSoapDocSoapOut">
    <wsdl:part name="parameters" element="tns:GetGalleryNodeSoapDocResponse" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageSoapDocSoapIn">
    <wsdl:part name="parameters" element="tns:GetGalleryImageSoapDoc" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageSoapDocSoapOut">
    <wsdl:part name="parameters" element="tns:GetGalleryImageSoapDocResponse" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageByContextIDSoapDocSoapIn">
    <wsdl:part name="parameters" element="tns:GetGalleryImageByContextIDSoapDoc" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageByContextIDSoapDocSoapOut">
    <wsdl:part name="parameters" element="tns:GetGalleryImageByContextIDSoapDocResponse" />
  </wsdl:message>
  <wsdl:message name="GetGalleryRootSoapRPCSoapIn" />
  <wsdl:message name="GetGalleryRootSoapRPCSoapOut">
    <wsdl:part name="GetGalleryRootSoapRPCResult" type="s2:PhotoNodeXSD" />
  </wsdl:message>
  <wsdl:message name="GetGalleryNodeSoapRPCSoapIn">
    <wsdl:part name="id" type="s:int" />
  </wsdl:message>
  <wsdl:message name="GetGalleryNodeSoapRPCSoapOut">
    <wsdl:part name="GetGalleryNodeSoapRPCResult" type="s2:PhotoNodeXSD" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageSoapRPCSoapIn">
    <wsdl:part name="galID" type="s:int" />
    <wsdl:part name="imgID" type="s:int" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageSoapRPCSoapOut">
    <wsdl:part name="GetGalleryImageSoapRPCResult" type="s2:GalleryImageXSD" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageByContextIDSoapRPCSoapIn">
    <wsdl:part name="imageContextID" type="s:string" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageByContextIDSoapRPCSoapOut">
    <wsdl:part name="GetGalleryImageByContextIDSoapRPCResult" type="s2:GalleryImageXSD" />
  </wsdl:message>
  <wsdl:message name="GetGalleryRootSoapDocHttpGetIn" />
  <wsdl:message name="GetGalleryRootSoapDocHttpGetOut">
    <wsdl:part name="Body" element="s1:photoNode" />
  </wsdl:message>
  <wsdl:message name="GetGalleryNodeSoapDocHttpGetIn">
    <wsdl:part name="id" type="s:string" />
  </wsdl:message>
  <wsdl:message name="GetGalleryNodeSoapDocHttpGetOut">
    <wsdl:part name="Body" element="s1:photoNode" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageSoapDocHttpGetIn">
    <wsdl:part name="galID" type="s:string" />
    <wsdl:part name="imgID" type="s:string" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageSoapDocHttpGetOut">
    <wsdl:part name="Body" element="s1:galleryImage" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageByContextIDSoapDocHttpGetIn">
    <wsdl:part name="imageContextID" type="s:string" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageByContextIDSoapDocHttpGetOut">
    <wsdl:part name="Body" element="s1:galleryImage" />
  </wsdl:message>
  <wsdl:message name="GetGalleryRootSoapRPCHttpGetIn" />
  <wsdl:message name="GetGalleryRootSoapRPCHttpGetOut">
    <wsdl:part name="Body" element="s1:photoNode" />
  </wsdl:message>
  <wsdl:message name="GetGalleryNodeSoapRPCHttpGetIn">
    <wsdl:part name="id" type="s:string" />
  </wsdl:message>
  <wsdl:message name="GetGalleryNodeSoapRPCHttpGetOut">
    <wsdl:part name="Body" element="s1:photoNode" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageSoapRPCHttpGetIn">
    <wsdl:part name="galID" type="s:string" />
    <wsdl:part name="imgID" type="s:string" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageSoapRPCHttpGetOut">
    <wsdl:part name="Body" element="s1:galleryImage" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageByContextIDSoapRPCHttpGetIn">
    <wsdl:part name="imageContextID" type="s:string" />
  </wsdl:message>
  <wsdl:message name="GetGalleryImageByContextIDSoapRPCHttpGetOut">
    <wsdl:part name="Body" element="s1:galleryImage" />
  </wsdl:message>
  <wsdl:portType name="PhotoDataWebServiceSoap">
    <wsdl:operation name="GetGalleryRootSoapDoc">
      <wsdl:input message="tns:GetGalleryRootSoapDocSoapIn" />
      <wsdl:output message="tns:GetGalleryRootSoapDocSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetGalleryNodeSoapDoc">
      <wsdl:input message="tns:GetGalleryNodeSoapDocSoapIn" />
      <wsdl:output message="tns:GetGalleryNodeSoapDocSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageSoapDoc">
      <wsdl:input message="tns:GetGalleryImageSoapDocSoapIn" />
      <wsdl:output message="tns:GetGalleryImageSoapDocSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageByContextIDSoapDoc">
      <wsdl:input message="tns:GetGalleryImageByContextIDSoapDocSoapIn" />
      <wsdl:output message="tns:GetGalleryImageByContextIDSoapDocSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetGalleryRootSoapRPC">
      <wsdl:input message="tns:GetGalleryRootSoapRPCSoapIn" />
      <wsdl:output message="tns:GetGalleryRootSoapRPCSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetGalleryNodeSoapRPC">
      <wsdl:input message="tns:GetGalleryNodeSoapRPCSoapIn" />
      <wsdl:output message="tns:GetGalleryNodeSoapRPCSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageSoapRPC">
      <wsdl:input message="tns:GetGalleryImageSoapRPCSoapIn" />
      <wsdl:output message="tns:GetGalleryImageSoapRPCSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageByContextIDSoapRPC">
      <wsdl:input message="tns:GetGalleryImageByContextIDSoapRPCSoapIn" />
      <wsdl:output message="tns:GetGalleryImageByContextIDSoapRPCSoapOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:portType name="PhotoDataWebServiceHttpGet">
    <wsdl:operation name="GetGalleryRootSoapDoc">
      <wsdl:input message="tns:GetGalleryRootSoapDocHttpGetIn" />
      <wsdl:output message="tns:GetGalleryRootSoapDocHttpGetOut" />
    </wsdl:operation>
    <wsdl:operation name="GetGalleryNodeSoapDoc">
      <wsdl:input message="tns:GetGalleryNodeSoapDocHttpGetIn" />
      <wsdl:output message="tns:GetGalleryNodeSoapDocHttpGetOut" />
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageSoapDoc">
      <wsdl:input message="tns:GetGalleryImageSoapDocHttpGetIn" />
      <wsdl:output message="tns:GetGalleryImageSoapDocHttpGetOut" />
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageByContextIDSoapDoc">
      <wsdl:input message="tns:GetGalleryImageByContextIDSoapDocHttpGetIn" />
      <wsdl:output message="tns:GetGalleryImageByContextIDSoapDocHttpGetOut" />
    </wsdl:operation>
    <wsdl:operation name="GetGalleryRootSoapRPC">
      <wsdl:input message="tns:GetGalleryRootSoapRPCHttpGetIn" />
      <wsdl:output message="tns:GetGalleryRootSoapRPCHttpGetOut" />
    </wsdl:operation>
    <wsdl:operation name="GetGalleryNodeSoapRPC">
      <wsdl:input message="tns:GetGalleryNodeSoapRPCHttpGetIn" />
      <wsdl:output message="tns:GetGalleryNodeSoapRPCHttpGetOut" />
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageSoapRPC">
      <wsdl:input message="tns:GetGalleryImageSoapRPCHttpGetIn" />
      <wsdl:output message="tns:GetGalleryImageSoapRPCHttpGetOut" />
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageByContextIDSoapRPC">
      <wsdl:input message="tns:GetGalleryImageByContextIDSoapRPCHttpGetIn" />
      <wsdl:output message="tns:GetGalleryImageByContextIDSoapRPCHttpGetOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="PhotoDataWebServiceSoap" type="tns:PhotoDataWebServiceSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
    <wsdl:operation name="GetGalleryRootSoapDoc">
      <soap:operation soapAction="http://ibink.com/webservices/GetGalleryRootSoapDoc" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetGalleryNodeSoapDoc">
      <soap:operation soapAction="http://ibink.com/webservices/GetGalleryNodeSoapDoc" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageSoapDoc">
      <soap:operation soapAction="http://ibink.com/webservices/GetGalleryImageSoapDoc" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageByContextIDSoapDoc">
      <soap:operation soapAction="http://ibink.com/webservices/GetGalleryImageByContextIDSoapDoc" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetGalleryRootSoapRPC">
      <soap:operation soapAction="http://ibink.com/webservices/GetGalleryRootSoapRPC" style="rpc" />
      <wsdl:input>
        <soap:body use="encoded" namespace="http://ibink.com/webservices/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="encoded" namespace="http://ibink.com/webservices/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetGalleryNodeSoapRPC">
      <soap:operation soapAction="http://ibink.com/webservices/GetGalleryNodeSoapRPC" style="rpc" />
      <wsdl:input>
        <soap:body use="encoded" namespace="http://ibink.com/webservices/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="encoded" namespace="http://ibink.com/webservices/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageSoapRPC">
      <soap:operation soapAction="http://ibink.com/webservices/GetGalleryImageSoapRPC" style="rpc" />
      <wsdl:input>
        <soap:body use="encoded" namespace="http://ibink.com/webservices/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="encoded" namespace="http://ibink.com/webservices/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageByContextIDSoapRPC">
      <soap:operation soapAction="http://ibink.com/webservices/GetGalleryImageByContextIDSoapRPC" style="rpc" />
      <wsdl:input>
        <soap:body use="encoded" namespace="http://ibink.com/webservices/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="encoded" namespace="http://ibink.com/webservices/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:binding name="PhotoDataWebServiceHttpGet" type="tns:PhotoDataWebServiceHttpGet">
    <http:binding verb="GET" />
    <wsdl:operation name="GetGalleryRootSoapDoc">
      <http:operation location="/GetGalleryRootSoapDoc" />
      <wsdl:input>
        <http:urlEncoded />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetGalleryNodeSoapDoc">
      <http:operation location="/GetGalleryNodeSoapDoc" />
      <wsdl:input>
        <http:urlEncoded />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageSoapDoc">
      <http:operation location="/GetGalleryImageSoapDoc" />
      <wsdl:input>
        <http:urlEncoded />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageByContextIDSoapDoc">
      <http:operation location="/GetGalleryImageByContextIDSoapDoc" />
      <wsdl:input>
        <http:urlEncoded />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetGalleryRootSoapRPC">
      <http:operation location="/GetGalleryRootSoapRPC" />
      <wsdl:input>
        <http:urlEncoded />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetGalleryNodeSoapRPC">
      <http:operation location="/GetGalleryNodeSoapRPC" />
      <wsdl:input>
        <http:urlEncoded />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageSoapRPC">
      <http:operation location="/GetGalleryImageSoapRPC" />
      <wsdl:input>
        <http:urlEncoded />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetGalleryImageByContextIDSoapRPC">
      <http:operation location="/GetGalleryImageByContextIDSoapRPC" />
      <wsdl:input>
        <http:urlEncoded />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="PhotoDataWebService">
    <documentation xmlns="http://schemas.xmlsoap.org/wsdl/" />
    <wsdl:port name="PhotoDataWebServiceSoap" binding="tns:PhotoDataWebServiceSoap">
      <soap:address location="http://iis.ibink.com:9000/photodata/webservice/PhotoDataWebService.asmx" />
    </wsdl:port>
    <wsdl:port name="PhotoDataWebServiceHttpGet" binding="tns:PhotoDataWebServiceHttpGet">
      <http:address location="http://iis.ibink.com:9000/photodata/webservice/PhotoDataWebService.asmx" />
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>