Project

General

Profile

XML message format » History » Version 1

Tomek Dziemidowicz, 2019-07-18 09:11 PM

1 1 Tomek Dziemidowicz
h1. XML message format
2
3
<pre><code class="xml">
4
<?xml version="1.0" encoding="utf-8"?>
5
<SyncData xmlns="urn:sync-schema">
6
  <tab n="documents">
7
    <ins></ins>
8
    <upd>
9
      <r>
10
        <docId><![CDATA[2]]></docId>
11
        <docName><![CDATA[Document 2]]></docName>
12
        <docSize><![CDATA[75541]]></docSize>
13
        <docDate><![CDATA[2014-02-13 00:00:00]]></docDate>
14
        <docValue1><![CDATA[665]]></docValue1>
15
        <RowId><![CDATA[2c93d64e-cc72-11e3-87e0-f82fa8e587f9]]></RowId>
16
      </r>
17
    </upd>
18
  </tab>
19
  <tab n="entities">
20
    <ins>
21
      <r>
22
        <entId><![CDATA[25010]]></entId>
23
        <entName><![CDATA[one]]></entName>
24
        <entAddress><![CDATA[street]]></entAddress>
25
        <entEnabled><![CDATA[1]]></entEnabled>
26
        <RowId><![CDATA[]]></RowId>
27
      </r>
28
    </ins>
29
    <upd></upd>
30
  </tab>
31
  <tab n="users">
32
    <ins></ins>
33
    <upd></upd>
34
  </tab>
35
  <delete></delete>
36
</SyncData>
37
</code></pre>
Go to top