- Online photo albums, upload pictures, online photo gallery

Home > Tools > API Help Photo Gallery | Labels | Pricing | Features | Contact
API Help Topics
Information
Welcome
API Key
Protocols
Soap
REST
General Methods
Ping
Upload
Authentication Methods
Authentication Mechanism (NEW)
Authentication_GetTicket
Authentication_CheckTicket
Authentication_CloseTicket
User Methods
User_Create
Album Methods
Album_FetchAll
Album_Fetch
Album_Create
Photo Methods
Photo_FetchTimeLineOverview
Photo_FetchFromTimeLine
Photo_FetchFromAlbum
Photo_FetchExifInfo
Photo_GetImage
Photo_GetOriginalImage

SOAP Protocol

SOAP (Simple Object Access Protocol) is a protocol for exchanging XML-based messages over a compuer network, normally using HTTP.

SOAP Requests are sent to http://www.pixagogo.com/tools/api/soap.

Request

Example SOAP Request looks like this:
<?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>
    <Ping xmlns="http://www.pixagogo.com/tools/api/soap/">
      <i_api_key>mYaPIkEY</i_api_key>
      <i_input>Test</i_input>
    </Ping>
  </soap:Body>
</soap:Envelope>

Response

Example successful SOAP Response looks like this:
<?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>
    <PingResponse xmlns="http://www.pixagogo.com/tools/api/soap/">
      <PingResult>
        <result_type>Success</result_type>
        <return_object>Test</return_object>
      </PingResult>
    </PingResponse>
  </soap:Body>
</soap:Envelope>
Example failed SOAP Response looks like this:
<?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>
    <PingResponse xmlns="http://www.pixagogo.com/tools/api/soap/">
      <PingResult>
        <result_type>Failure</result_type>
        <return_object>Invalid input parameter</return_object>
      </PingResult>
    </PingResponse>
  </soap:Body>
</soap:Envelope>

About    Terms & Conditions    Privacy Statement    Links    News    Tools    Help
© Telenet 2007