31 lines
980 B
XML
31 lines
980 B
XML
|
<?xml version='1.0' encoding='utf-8'?>
|
||
|
<!DOCTYPE section [
|
||
|
<!ENTITY % myent SYSTEM "../entities.ent">
|
||
|
%myent;
|
||
|
]>
|
||
|
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
|
||
|
xmlns:xi="http://www.w3.org/2001/XInclude">
|
||
|
<title>getTimestamp</title>
|
||
|
<para>Get current timestamp in milliseconds (epoch).
|
||
|
Sample request:
|
||
|
<screen><![CDATA[
|
||
|
<soapenv:Envelope
|
||
|
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
|
||
|
xmlns:ws="http://ws.xservices.brutex.net">
|
||
|
<soapenv:Header/>
|
||
|
<soapenv:Body>
|
||
|
<ws:getTimestamp/>
|
||
|
</soapenv:Body>
|
||
|
</soapenv:Envelop
|
||
|
]]></screen>
|
||
|
Sample response:
|
||
|
<screen><![CDATA[
|
||
|
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
|
||
|
<soap:Body>
|
||
|
<ns1:getTimestampResponse xmlns:ns1="http://ws.xservices.brutex.net">
|
||
|
<ns1:return>]]><emphasis>1325488875703</emphasis><![CDATA[</ns1:return>
|
||
|
</ns1:getTimestampResponse>
|
||
|
</soap:Body>
|
||
|
</soap:Envelope>]]></screen>
|
||
|
</para>
|
||
|
</section>
|