XML File Format

  Back Next TOC

 XML File Format:

            XML is used to structure, store and to send information. In case of dov

files XML part is used to specify the directory structure. As can be seen from

The following example, the first line in XML part defines the XML version

and the character encoding used.From then onwards, the tag "dir" is used to

specify a directory as a combinationof directory name and the query associated

with it.

            The root element is the root directory of ORION view. The child

elements under the root element identify the directories under the root directory.

for eg: the directory Emailsbfor31dec03 is the child element under the root element

 and is thus the sub-directory of root directory and likewise sentByABC is the sub

 -directory of Emailsbfor31dec03. Thus the indentation shows the level of that

 directory in the hierarchy.

 

 

 

 

<?xml version="1.0" encoding="ISO-8859-1"?>

<dir name="/" SQL="" > /

            <dir name="DocsAuthoredByXYZ" SQL=" AND Text type LIKE doc      AND Text author LIKE XYZ" > DocsAuthoredByXYZ

            </dir>

            <dir name="Emailsbfor31dec03" SQL=" AND Text type LIKE mail      AND Date(YY/MM/DD) date < 2003/31/12" > Emailsbfor31dec03

                        <dir name="sentByABC" SQL="            AND Text sender LIKE ABC            AND Text type LIKE mail      AND Date(YY/MM/DD) date < 2003/12/31" > sentByABC

                        </dir>

            </dir>

</dir>

  Back Next TOC