PhotoDataWebService


Click here for a complete list of operations.

GetGalleryImageSoapDoc

Test

The test form is only available for requests from the local machine.

SOAP

The following is a sample SOAP request and response. The placeholders shown need to be replaced with actual values.

POST /photodata/webservice/PhotoDataWebService.asmx HTTP/1.1
Host: iis.ibink.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://ibink.com/webservices/GetGalleryImageSoapDoc"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetGalleryImageSoapDoc xmlns="http://ibink.com/webservices/">
      <galID>int</galID>
      <imgID>int</imgID>
    </GetGalleryImageSoapDoc>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetGalleryImageSoapDocResponse xmlns="http://ibink.com/webservices/">
      <galleryImage imageID="int" contextID="string" xmlns="http://ibink.com/PhotoDataXSDSchema.xsd">
        <name>string</name>
        <displayWidth>int</displayWidth>
        <displayHeight>int</displayHeight>
        <thumbWidth>int</thumbWidth>
        <thumbHeight>int</thumbHeight>
        <originalWidth>int</originalWidth>
        <originalHeight>int</originalHeight>
        <originalPath>string</originalPath>
        <originalFilename>string</originalFilename>
        <dateTaken>dateTime</dateTaken>
        <photographer>string</photographer>
        <caption>string</caption>
        <location>string</location>
        <annotation>string</annotation>
        <context>
          <parents>
            <parent xsi:nil="true" />
            <parent xsi:nil="true" />
          </parents>
        </context>
      </galleryImage>
    </GetGalleryImageSoapDocResponse>
  </soap:Body>
</soap:Envelope>

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /photodata/webservice/PhotoDataWebService.asmx/GetGalleryImageSoapDoc?galID=string&imgID=string HTTP/1.1
Host: iis.ibink.com
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<galleryImage imageID="int" contextID="string" xmlns="http://ibink.com/PhotoDataXSDSchema.xsd">
  <name>string</name>
  <displayWidth>int</displayWidth>
  <displayHeight>int</displayHeight>
  <thumbWidth>int</thumbWidth>
  <thumbHeight>int</thumbHeight>
  <originalWidth>int</originalWidth>
  <originalHeight>int</originalHeight>
  <originalPath>string</originalPath>
  <originalFilename>string</originalFilename>
  <dateTaken>dateTime</dateTaken>
  <photographer>string</photographer>
  <caption>string</caption>
  <location>string</location>
  <annotation>string</annotation>
  <context>
    <parents>
      <parent nodeID="int" />
      <parent nodeID="int" />
    </parents>
  </context>
</galleryImage>