1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
-
- This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
- project.
-
- Copyright (C) 1998-2018 OpenLink Software
-
- This project is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by the
- Free Software Foundation; only version 2 of the License, dated June 1991.
-
- This program is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-
-->
<sect1 id="syncml"><title>SyncML</title>
<para>SyncML is a protocol for synchronization of data collections
between two devices - a SyncML Client and SyncML Server using an
XML data representation. The client is typically some mobile device or
mobile PC. The Virtuoso server implements the SyncML server protocol over
HTTP.</para>
<para>The SyncML server maintains the data collections within the WebDAV
repository. The items (resources) in the collections (folders) represents
items found on the client, e.g. VCARD, vcalendar records. As the WebDAV
repository does not restrict the type of data that can be stored, likewise
there are no restrictions on the type of data that can be synchronized.
Also every WebDAV virtual directory can act as a SyncML server endpoint, the
SyncML processing is triggered via the <computeroutput>Content-Type</computeroutput>,
detected on the POST request (see below).</para>
<tip><title>See Also:</title>
<para><link linkend="syncmlschema">SyncML Schema Tables</link></para></tip>
<para>The SyncML server detects the following formats from the
<computeroutput>Content-Type</computeroutput> header string:</para>
<simplelist>
<member><emphasis><computeroutput>application/vnd.syncml+wbxml</computeroutput></emphasis> - WBXML coded XML documents</member>
<member><emphasis><computeroutput>application/vnd.syncml+xml</computeroutput></emphasis> - plain text XML document</member>
</simplelist>
<para>These are detected during the POST request to a WebDAV virtual directory
thus triggering SyncML processing. When a device makes creates
'<computeroutput>application/vnd.syncml+wbxml</computeroutput>' session,
the SyncML server will respond with the WBXML format. Otherwise
plain XML will be used to encode SyncML messages.</para>
<para>Basic and MD5 digest SyncML authorization schemes are supported.
The WebDAV enabled user accounts are used to perform authentication.</para>
<para>It is possible to query the HTTP authentication type supported by the
target device by assigning an authentication hook to a given virtual directory.
By default SyncML authentication is digest-md5, so HTTP authentication is
off (note that HTTP authentication is different from SyncML authentication).</para>
<para>The following synchronization methods are supported:</para>
<simplelist>
<member>Two-way sync</member>
<member>Slow two-way sync</member>
</simplelist>
<para>Every item sent from the client device is mapped to a WebDAV resource
under a given WebDAV collection. Every device database, such as contacts, calendar,
usually requires that a different WebDAV collection be specified because the devices
usually can not maintain items of different kinds with a single database. For
example, when synchronizing the Contacts of a Nokia 9210 with the server,
we can specify <computeroutput>./contacts/</computeroutput>, and likewise
for the Calendar database, <computeroutput>./calendar/</computeroutput>.
This keeps VCARDS (contacts) and vCalendars in separate collections (folders) on
a given virtual directory. It is not possible to keep calendar and contacts
(for example) in the same WebDAV collection, unless the device supports such
items in a single database.</para>
<note><title>Important Note:</title>
<para>The target folders (Virtuoso server-side collections) must exists and
must be accessible by the WebDAV account used to authenticate against the
SyncML server. If credentials or permissions are insufficient then an
Error 403 (Forbidden) will be returned to the client.</para></note>
<example id="ex_syncmlsession"><title>Example of a SyncML session</title>
<para>The client begins initial request</para>
<programlisting><![CDATA[
<SyncML>
<SyncHdr>
<VerDTD>1.0</VerDTD>
<VerProto>SyncML/1.0</VerProto>
<SessionID>88</SessionID>
<MsgID>1</MsgID>
<Target>
<LocURI>http://192.168.1.1:6666/</LocURI>
</Target>
<Source>
<LocURI>IMEI:57471724140229</LocURI>
</Source>
<Meta>
<MaxMsgSize>10000</MaxMsgSize>
</Meta>
</SyncHdr>
<SyncBody>
<Alert>
<CmdID>1</CmdID>
<Data>201</Data>
<Item>
<Target>
<LocURI>./calendar</LocURI>
</Target>
<Source>
<LocURI>./C\System\Data\Calendar</LocURI>
</Source>
<Meta>
<Anchor>
<Next>20031202T165103Z</Next>
</Anchor>
</Meta>
</Item>
</Alert>
<Put>
<CmdID>2</CmdID>
<Meta>
<Type>application/vnd.syncml-devinf+wbxml</Type>
</Meta>
<Item>
<Source>
<LocURI>./devinf10</LocURI>
</Source>
<Data>
<DevInf>
<VerDTD>1.0</VerDTD>
<Man>NOKIA</Man>
<Mod>9210</Mod>
<SwV>256</SwV>
<HwV>1.0</HwV>
<DevID>IMEI:57471724140229</DevID>
<DevTyp>phone</DevTyp>
....
</DevInf>
</Data>
</Item>
</Put>
<Get>
<CmdID>3</CmdID>
<Meta>
<Type>application/vnd.syncml-devinf+wbxml</Type>
</Meta>
<Item>
<Target>
<LocURI>./devinf10</LocURI>
</Target>
</Item>
</Get>
<Final/>
</SyncBody>
</SyncML>
]]></programlisting>
<para>Server rejects credential, because no credentials.</para>
<programlisting><![CDATA[
<SyncML xmlns:n0="syncml:SYNCML1.0">
<SyncHdr>
<VerDTD>1.0</VerDTD>
<VerProto>SyncML/1.0</VerProto>
<SessionID>88</SessionID>
<MsgID>1</MsgID>
<Target>
<LocURI>IMEI:57471724140229</LocURI>
</Target>
<Source>
<LocURI>http://192.168.1.1:6666/</LocURI>
</Source>
</SyncHdr>
<SyncBody>
<Status>
<CmdID>1</CmdID>
<MsgRef>1</MsgRef>
<CmdRef>0</CmdRef>
<TargetRef>http://192.168.1.1:6666/</TargetRef>
<SourceRef>IMEI:57471724140229</SourceRef>
<Cmd>SyncHdr</Cmd>
<Chal>
<Meta>
<Type xmlns:n2="syncml:metinf">syncml:auth-md5</Type>
<Format xmlns:n2="syncml:metinf">b64</Format>
<NextNonce xmlns:n2="syncml:metinf">NzcyYTgyMDRjMGM2NzRlYTZjYWVmNGY4ZjNjMGYzMDk=</NextNonce>
</Meta>
</Chal>
<Data>401</Data>
</Status>
....
<Final/>
</SyncBody>
</SyncML>
]]></programlisting>
<para>Client sends back credentials.</para>
<programlisting><![CDATA[
<SyncML>
<SyncHdr>
<VerDTD>1.0</VerDTD>
<VerProto>SyncML/1.0</VerProto>
<SessionID>88</SessionID>
<MsgID>2</MsgID>
<Target>
<LocURI>http://192.168.1.1:6666/</LocURI>
</Target>
<Source>
<LocURI>IMEI:57471724140229</LocURI>
<LocName>imitko</LocName>
</Source>
<Cred>
<Meta>
<Format>b64</Format>
<Type>syncml:auth-md5</Type>
</Meta>
<Data>X8uGR8CX4ogw8Ux+ZWIzkg==</Data>
</Cred>
<Meta>
<MaxMsgSize>10000</MaxMsgSize>
</Meta>
</SyncHdr>
<SyncBody>
<Status>
<CmdID>1</CmdID>
<MsgRef>1</MsgRef>
<CmdRef>0</CmdRef>
<Cmd>SyncHdr</Cmd>
<TargetRef>IMEI:57471724140229</TargetRef>
<SourceRef>http://192.168.1.1:6666/</SourceRef>
<Data>200</Data>
</Status>
<Alert>
<CmdID>2</CmdID>
<Data>201</Data>
<Item>
<Target>
<LocURI>./calendar</LocURI>
</Target>
<Source>
<LocURI>./C\System\Data\Calendar</LocURI>
</Source>
<Meta>
<Anchor>
<Next>20031202T165103Z</Next>
</Anchor>
</Meta>
</Item>
</Alert>
<Put>
<CmdID>3</CmdID>
<Meta>
<Type>application/vnd.syncml-devinf+wbxml</Type>
</Meta>
<Item>
<Source>
<LocURI>./devinf10</LocURI>
</Source>
<Data>
<DevInf>
<VerDTD>1.0</VerDTD>
<Man>NOKIA</Man>
<Mod>9210</Mod>
<SwV>256</SwV>
<HwV>1.0</HwV>
<DevID>IMEI:57471724140229</DevID>
<DevTyp>phone</DevTyp>
...
</DevInf>
</Data>
</Item>
</Put>
<Get>
<CmdID>4</CmdID>
<Meta>
<Type>application/vnd.syncml-devinf+wbxml</Type>
</Meta>
<Item>
<Target>
<LocURI>./devinf10</LocURI>
</Target>
</Item>
</Get>
<Final/>
</SyncBody>
</SyncML>
]]></programlisting>
<para>Server accepts the request.</para>
<programlisting><![CDATA[
<SyncML xmlns="syncml:SYNCML1.0">
<SyncHdr>
<VerDTD>1.0</VerDTD>
<VerProto>SyncML/1.0</VerProto>
<SessionID>88</SessionID>
<MsgID>2</MsgID>
<Target>
<LocURI>IMEI:57471724140229</LocURI>
</Target>
<Source>
<LocURI>http://192.168.1.1:6666/</LocURI>
</Source>
</SyncHdr>
<SyncBody>
<Status>
<CmdID>5</CmdID>
<MsgRef>2</MsgRef>
<CmdRef>0</CmdRef>
<TargetRef>http://192.168.1.1:6666/</TargetRef>
<SourceRef>IMEI:57471724140229</SourceRef>
<Cmd>SyncHdr</Cmd>
<Data>212</Data> <!-- Authenticated for session -->
</Status>
<Status>
<CmdID>7</CmdID>
<MsgRef>2</MsgRef>
<CmdRef>2</CmdRef>
<Cmd>Alert</Cmd>
<Data>200</Data> <!- two-way alert accepted, 'next' anchor echoed -->
<Item>
<Data>
<Anchor xmlns:n2="syncml:metinf">
<Next>20031202T165103Z</Next>
</Anchor>
</Data>
</Item>
</Status>
<Status>
<CmdID>8</CmdID>
<MsgRef>2</MsgRef>
<CmdRef>3</CmdRef>
<Cmd>Put</Cmd>
<Data>200</Data> <!-- the 'put' command succeeded;
device info is written ->
</Status>
<Results> <!-- the following are server's device info -->
<CmdID>9</CmdID>
<MsgRef>2</MsgRef>
<CmdRef>4</CmdRef>
<Meta>
<Type xmlns:n2="syncml:metinf">application/vnd.syncml-devinf+wbxml</Type>
</Meta>
<Item>
<Source>
<LocURI>./devinf10</LocURI>
</Source>
<Data>
<DevInf xmlns:n2="syncml:devinf">
<VerDTD>1.0</VerDTD>
<Man>OpenLink Software Ltd</Man>
<Mod>Virtuoso</Mod>
<OEM>OpenLink</OEM>
<FwV>3.5</FwV>
<SwV>2602</SwV>
<HwV>0</HwV>
<DevID>http://example.com/</DevID>
<DevTyp>server</DevTyp>
<SyncCap>
<SyncType>1</SyncType>
<SyncType>2</SyncType>
</SyncCap>
...
<UTC/>
<SupportLargeObjs/>
<SupportNumberOfChanges/>
</DevInf>
</Data>
</Item>
</Results>
<Alert>
<CmdID>6</CmdID>
<Data>201</Data> <!-- the ./calendar/ is new empty collection;
server asks client for slow two-way sync. -->
<Item>
<Target>
<LocURI>./C\System\Data\Calendar</LocURI>
</Target>
<Source>
<LocURI>./calendar/</LocURI>
</Source>
<Meta>
<Anchor xmlns:n2="syncml:metinf">
<Last>1970-01-01T00:00:00.000+02:00</Last>
<Next>2003-12-02T18:51:05.000+02:00</Next>
</Anchor>
</Meta>
</Item>
</Alert>
<Final/>
</SyncBody>
</SyncML>
]]></programlisting>
<para>Client sends to server all calendar items. See 'Sync' element below.</para>
<programlisting><![CDATA[
<SyncML>
<SyncHdr>
<VerDTD>1.0</VerDTD>
<VerProto>SyncML/1.0</VerProto>
<SessionID>88</SessionID>
<MsgID>3</MsgID>
<Target>
<LocURI>http://192.168.1.1:6666/</LocURI>
</Target>
<Source>
<LocURI>IMEI:57471724140229</LocURI>
</Source>
<Meta>
<MaxMsgSize>10000</MaxMsgSize>
</Meta>
</SyncHdr>
<SyncBody>
<Status>
<CmdID>1</CmdID>
<MsgRef>2</MsgRef>
<CmdRef>0</CmdRef>
<Cmd>SyncHdr</Cmd>
<TargetRef>IMEI:57471724140229</TargetRef>
<SourceRef>http://192.168.1.1:6666/</SourceRef>
<Data>200</Data>
</Status>
<Status>
<CmdID>2</CmdID>
<MsgRef>2</MsgRef>
<CmdRef>9</CmdRef>
<Cmd>Results</Cmd>
<Data>200</Data>
</Status>
<Status>
<CmdID>3</CmdID>
<MsgRef>2</MsgRef>
<CmdRef>6</CmdRef>
<Cmd>Alert</Cmd>
<TargetRef>./C\System\Data\Calendar</TargetRef>
<SourceRef>./calendar/</SourceRef>
<Data>200</Data>
<Item>
<Data>
<Anchor>
<Next>2003-12-02T18:51:05.000+02:00</Next>
</Anchor>
</Data>
</Item>
</Status>
<Sync>
<CmdID>4</CmdID>
<Target>
<LocURI>./calendar</LocURI>
</Target>
<Source>
<LocURI>./C\System\Data\Calendar</LocURI>
</Source>
<Meta>
<Mem>
<FreeMem>7627614408</FreeMem>
<FreeID>59590737</FreeID>
</Mem>
</Meta>
<Replace> <!-- the client uses 'Replace' command -->
<CmdID>5</CmdID>
<Meta>
<Type>text/x-vcalendar</Type>
</Meta>
<Item>
<Source>
<LocURI>2</LocURI>
</Source>
<Data>
BEGIN:VCALENDAR
VERSION:1.0
BEGIN:VEVENT
UID:2
DESCRIPTION:tests
DTSTART:20031127T090000
DTEND:20031127T090000
X-EPOCAGENDAENTRYTYPE:APPOINTMENT
CLASS:PUBLIC
DCREATED:20031128T000000
LAST-MODIFIED:20031201T123500
END:VEVENT
END:VCALENDAR
</Data>
</Item>
</Replace>
<Replace>
<CmdID>6</CmdID>
<Meta>
<Type>text/x-vcalendar</Type>
</Meta>
<Item>
<Source>
<LocURI>3</LocURI>
</Source>
<Data>
BEGIN:VCALENDAR
VERSION:1.0
BEGIN:VEVENT
UID:3
DESCRIPTION:tests more
DTSTART:20031128T090000
DTEND:20031128T190000
X-EPOCAGENDAENTRYTYPE:APPOINTMENT
CLASS:PUBLIC
DCREATED:20031128T000000
LAST-MODIFIED:20031201T123500
END:VEVENT
END:VCALENDAR
</Data>
</Item>
</Replace>
<Replace>
<CmdID>7</CmdID>
<Meta>
<Type>text/x-vcalendar</Type>
</Meta>
<Item>
<Source>
<LocURI>5</LocURI>
</Source>
<Data>
BEGIN:VCALENDAR
VERSION:1.0
BEGIN:VEVENT
UID:5
DESCRIPTION:today integration
DTSTART:20031201T090000
DTEND:20031201T090000
X-EPOCAGENDAENTRYTYPE:APPOINTMENT
CLASS:PUBLIC
DCREATED:20031201T000000
LAST-MODIFIED:20031201T125400
END:VEVENT
END:VCALENDAR
</Data>
</Item>
</Replace>
</Sync>
<Final/>
</SyncBody>
</SyncML>
]]></programlisting>
<para>Server stores new items.</para>
<programlisting><![CDATA[
<SyncML xmlns:n0="syncml:SYNCML1.0">
<SyncHdr>
<VerDTD>1.0</VerDTD>
<VerProto>SyncML/1.0</VerProto>
<SessionID>88</SessionID>
<MsgID>3</MsgID>
<Target>
<LocURI>IMEI:57471724140229</LocURI>
</Target>
<Source>
<LocURI>http://192.168.1.1:6666/</LocURI>
</Source>
</SyncHdr>
<SyncBody>
<Status>
<CmdID>10</CmdID>
<MsgRef>3</MsgRef>
<CmdRef>0</CmdRef>
<TargetRef>http://192.168.1.1:6666/</TargetRef>
<SourceRef>IMEI:57471724140229</SourceRef>
<Cmd>SyncHdr</Cmd>
<Data>212</Data>
</Status>
<Status>
<CmdID>11</CmdID>
<MsgRef>3</MsgRef>
<CmdRef>5</CmdRef>
<Cmd>Replace</Cmd>
<Data>201</Data> <!-- 201 (Added) is used to indicate
that item is added as new. -->
</Status>
<Status>
<CmdID>12</CmdID>
<MsgRef>3</MsgRef>
<CmdRef>6</CmdRef>
<Cmd>Replace</Cmd>
<Data>201</Data>
</Status>
<Status>
<CmdID>13</CmdID>
<MsgRef>3</MsgRef>
<CmdRef>7</CmdRef>
<Cmd>Replace</Cmd>
<Data>201</Data>
</Status>
<Status>
<CmdID>15</CmdID>
<MsgRef>3</MsgRef>
<CmdRef>4</CmdRef>
<TargetRef>./calendar/</TargetRef>
<SourceRef>./C\System\Data\Calendar</SourceRef>
<Cmd>Sync</Cmd>
<Data>200</Data>
</Status>
<Sync> <!-- an empty Sync is sent from server. -->
<CmdID>14</CmdID>
<Source>
<LocURI>./calendar/</LocURI>
</Source>
<Target>
<LocURI>./C\System\Data\Calendar</LocURI>
</Target>
</Sync>
<Final/>
</SyncBody>
</SyncML>
]]></programlisting>
<para>Final SyncML message from client with status to server's Sync command.</para>
<programlisting><![CDATA[
<SyncML>
<SyncHdr>
<VerDTD>1.0</VerDTD>
<VerProto>SyncML/1.0</VerProto>
<SessionID>88</SessionID>
<MsgID>4</MsgID>
<Target>
<LocURI>http://192.168.1.1:6666/</LocURI>
</Target>
<Source>
<LocURI>IMEI:57471724140229</LocURI>
</Source>
<Meta>
<MaxMsgSize>10000</MaxMsgSize>
</Meta>
</SyncHdr>
<SyncBody>
<Status>
<CmdID>1</CmdID>
<MsgRef>3</MsgRef>
<CmdRef>0</CmdRef>
<Cmd>SyncHdr</Cmd>
<TargetRef>IMEI:57471724140229</TargetRef>
<SourceRef>http://192.168.1.1:6666/</SourceRef>
<Data>200</Data>
</Status>
<Status>
<CmdID>2</CmdID>
<MsgRef>3</MsgRef>
<CmdRef>14</CmdRef>
<Cmd>Sync</Cmd>
<TargetRef>./C\System\Data\Calendar</TargetRef>
<SourceRef>./calendar/</SourceRef>
<Data>200</Data>
</Status>
<Final/>
</SyncBody>
</SyncML>
]]></programlisting>
<para>Final message from SyncML server; no more commands issued.</para>
<programlisting><![CDATA[
<SyncML xmlns:n0="syncml:SYNCML1.0">
<SyncHdr>
<VerDTD>1.0</VerDTD>
<VerProto>SyncML/1.0</VerProto>
<SessionID>88</SessionID>
<MsgID>4</MsgID>
<Target>
<LocURI>IMEI:57471724140229</LocURI>
</Target>
<Source>
<LocURI>http://192.168.1.1:6666/</LocURI>
</Source>
</SyncHdr>
<SyncBody>
<Status>
<CmdID>16</CmdID>
<MsgRef>4</MsgRef>
<CmdRef>0</CmdRef>
<TargetRef>http://192.168.1.1:6666/</TargetRef>
<SourceRef>IMEI:57471724140229</SourceRef>
<Cmd>SyncHdr</Cmd>
<Data>212</Data>
</Status>
<Final/>
</SyncBody>
</SyncML>
]]></programlisting>
</example>
<tip><title>See Also:</title>
<para><ulink url="http://www.syncml.org/">References : www.syncml.org</ulink></para></tip>
</sect1>
|