This operation pings the server in order to test if communication with the server is available.
Request
This operation does not have any parameter
Response
PARAMETER | DESCRIPTION | FORMAT | EXAMPLE |
number | It returns only a number, which is the current timestamp | long | 1234567890123456 |
REST JSON
Request
POST /services/gms/RestCustomerIntegrationService.svc/Ping HTTP/1.1
Host: staging.tomhorngames.com
Response
637962529208925687
SOAP
Request
POST /services/gms/CustomerIntegrationService.svc HTTP/1.1
Host: staging.tomhorngames.com
Content-Type: text/xml; charset="utf-8"
SOAPAction: "http://tomhorn.eu/icservice/IIntegrationService/Ping"
Content-Length: 219
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tomhorn.eu/icservice">
<SOAP-ENV:Body>
<ns1:Ping>
</ns1:Ping>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Response
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<PingResponse xmlns="http://tomhorn.eu/icservice">
<PingResult>637962528176206384</PingResult>
</PingResponse>
</s:Body>
</s:Envelope>
Comments
0 comments
Article is closed for comments.