77 |
brianR |
1 |
<?xml version='1.0' encoding='utf-8'?>
|
|
|
2 |
<!DOCTYPE section [
|
|
|
3 |
<!ENTITY % myent SYSTEM "../entities.ent">
|
|
|
4 |
%myent;
|
|
|
5 |
]>
|
|
|
6 |
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
|
|
|
7 |
xmlns:xi="http://www.w3.org/2001/XInclude">
|
|
|
8 |
<title>generateUUID</title>
|
|
|
9 |
<para>Generates a UUID that represents a 128-bit value. This operation does not require any
|
|
|
10 |
input parameters. The output has the format:
|
|
|
11 |
<screen>
|
|
|
12 |
0xFFFFFFFF00000000 time_low
|
|
|
13 |
0x00000000FFFF0000 time_mid
|
|
|
14 |
0x000000000000F000 version
|
|
|
15 |
0x0000000000000FFF time_hi
|
|
|
16 |
</screen>
|
|
|
17 |
|
|
|
18 |
The least significant long consists of the following unsigned fields:
|
|
|
19 |
<screen>
|
|
|
20 |
0xC000000000000000 variant
|
|
|
21 |
0x3FFF000000000000 clock_seq
|
|
|
22 |
0x0000FFFFFFFFFFFF node
|
|
|
23 |
</screen>
|
|
|
24 |
Sample response:
|
|
|
25 |
<screen><![CDATA[
|
|
|
26 |
<soap:Envelope
|
|
|
27 |
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
|
|
|
28 |
<soap:Body>
|
|
|
29 |
<ns1:generateUUIDResponse
|
|
|
30 |
xmlns:ns1="http://ws.xservices.brutex.net">
|
|
|
31 |
<ns1:return>]]><emphasis>33b9e5c8-9102-423b-88af-bbee479ebea8</emphasis><![CDATA[</ns1:return>
|
|
|
32 |
</ns1:generateUUIDResponse>
|
|
|
33 |
</soap:Body>
|
|
|
34 |
</soap:Envelope>
|
|
|
35 |
]]></screen>
|
|
|
36 |
</para>
|
|
|
37 |
</section>
|