Reference for DSService.svc - Ping

Issues a ping request to check connectivity and health.

REQUEST PARAMETERS

The operation takes in a following parameters:

Name Type Description Example Value
Properties DSStringObjectKVPair[] Properties to customize behavior null

The operation returns the following parameter:

Name Type Description Example Value
DSStringObjectKVPair[] Properties describing behavior null

SOAP

The following is a sample SOAP request.

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
      <s:Header>
        <Action s:mustUnderstand="1" xmlns="http://schemas.microsoft.com/ws/2005/05/addressing/none">http://dsws.datastream.com/client/V1/IDSService/Ping</Action>
      </s:Header>
      <s:Body>
        <Ping xmlns="http://dsws.datastream.com/client/V1/">
          <properties i:nil="true" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" />
        </Ping>
      </s:Body>
    </s:Envelope>

The following is a sample SOAP response.

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
      <s:Header />
      <s:Body>
        <PingResponse xmlns="http://dsws.datastream.com/client/V1/">
          <PingResult i:nil="true" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" />
        </PingResponse>
      </s:Body>
    </s:Envelope>