<?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>
<?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>
<?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>