PhotoDataWebService


Click here for a complete list of operations.

GetGalleryNodeSoapDoc

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/GetGalleryNodeSoapDoc"

<?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>
    <GetGalleryNodeSoapDoc xmlns="http://ibink.com/webservices/">
      <id>int</id>
    </GetGalleryNodeSoapDoc>
  </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>
    <GetGalleryNodeSoapDocResponse xmlns="http://ibink.com/webservices/">
      <photoNode nodeID="int" xmlns="http://ibink.com/PhotoDataXSDSchema.xsd">
        <name>string</name>
        <thumb imageID="int" height="int" width="int" />
        <context>
          <parents>
            <parent xsi:nil="true" />
            <parent xsi:nil="true" />
          </parents>
        </context>
        <children>
          <childImage imageID="int" contextID="string" />
          <childGallery nodeID="int" />
        </children>
      </photoNode>
    </GetGalleryNodeSoapDocResponse>
  </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/GetGalleryNodeSoapDoc?id=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"?>
<photoNode nodeID="int" xmlns="http://ibink.com/PhotoDataXSDSchema.xsd">
  <name>string</name>
  <thumb imageID="int" height="int" width="int" />
  <context>
    <parents>
      <parent nodeID="int" />
      <parent nodeID="int" />
    </parents>
  </context>
  <children>
    <childImage imageID="int" contextID="string" />
    <childGallery nodeID="int" />
  </children>
</photoNode>