PhotoDataWebService
Click here for a complete list of operations.
GetGalleryRootSoapDoc
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/GetGalleryRootSoapDoc"
<?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>
<GetGalleryRootSoapDoc xmlns="http://ibink.com/webservices/" />
</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>
<GetGalleryRootSoapDocResponse 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>
</GetGalleryRootSoapDocResponse>
</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/GetGalleryRootSoapDoc? 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>