Subversion Repositories XServices

Compare Revisions

No changes between revisions

Ignore whitespace Rev 179 → Rev 180

/xservices/branches/xservices-jre7/doc/DateServices/dateTimeDiff.xml
0,0 → 1,20
<?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>dateTimeDiff</title>
<para>Calculate elapsed time between two dates. Returns the elapsed time in milliseconds.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para>Hints here</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/DateServices/dateAdd.xml
0,0 → 1,20
<?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>dateAdd</title>
<para>Add or substract a time span from/ to a date.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para>Hints here</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/DateServices/dateTimeDiff2.xml
0,0 → 1,20
<?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>dateTimeDiff</title>
<para>Calculate Fully elapsed units between two dates. Example: 4:15:10-4:15:55 in minutes = 0 and in seconds = 45.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para>Hints here</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/DateServices/parseDate.xml
0,0 → 1,26
<?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>parseDate</title>
<para>
Converts a string into date using pre-defined date formats
<itemizedlist>
<listitem>
<para>ISO8601 (example: "2012-01-17T23:50:00+01:00")</para>
</listitem>
<listitem>
<para>RFC822 (example: "2012-01-17T23:50:00+0100")</para>
</listitem>
<listitem>
<para>YYYYMMDD (example: "2012/01/17")</para>
</listitem>
<listitem>
<para>DDMMYYYY (example: "17.01.2012")</para>
</listitem>
</itemizedlist>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/DateServices/formatDateAdvanced.xml
0,0 → 1,37
<?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>formatDateAdvanced</title>
<para>
Transform Time/ Date representation. Formats a date with a free form pattern. Uses SimpleDateFormat patterns.
</para>
<para>
The following pattern letters are defined (all other characters from 'A' to 'Z' and from 'a' to 'z' are reserved):
<programlisting><![CDATA[
Letter Date or Time Component Presentation Examples
G Era designator Text AD
y Year Year 1996; 96
M Month in year Month July; Jul; 07
w Week in year Number 27
W Week in month Number 2
D Day in year Number 189
d Day in month Number 10
F Day of week in month Number 2
E Day in week Text Tuesday; Tue
a Am/pm marker Text PM
H Hour in day (0-23) Number 0
k Hour in day (1-24) Number 24
K Hour in am/pm (0-11) Number 0
h Hour in am/pm (1-12) Number 12
m Minute in hour Number 30
s Second in minute Number 55
S Millisecond Number 978
z Time zone General time zone Pacific Standard Time; PST; GMT-08:00
Z Time zone RFC 822 time zone -0800
]]></programlisting>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/DateServices/parseDateAdvanced.xml
0,0 → 1,13
<?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>parseDateAdvanced</title>
<para>
Converts a string into date using any format.
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/DateServices/DateServices.xml
0,0 → 1,34
<?xml version="1.0" encoding="utf-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude" id="dateservices">
<title>DateServices</title>
<para>The DateService bundles various date and time related operations.
</para>
<para>Its WSDL is located at http://server:port/XServices/DateService?wsdl</para>
<para>XServices uses a date/time format as suggested by http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#dateTime, which is basically a subset of ISO8601. Most input parameters for date/time have to be provided as such.
Another date/time format, that is often used is defined by RFC822. The major difference to ISO8601 and the Xmlschema datetime format, is in the way how the time zone is specified. ISO8601 specifies a colon to be used to separate hour and minutes time shift. RFC822 does not use a separator.
<itemizedlist>
<listitem>
<para>ISO8601 (example: "2012-01-17T23:50:00+01:00")</para>
</listitem>
<listitem>
<para>RFC822 (example: "2012-01-17T23:50:00+0100")</para>
</listitem>
</itemizedlist>
</para>
<xi:include href="./dateAdd.xml" />
<xi:include href="./dateTimeDiff.xml" />
<xi:include href="./dateTimeDiff2.xml" />
<xi:include href="./getDate.xml" />
<xi:include href="./getDateExtended.xml" />
<xi:include href="./formatDate.xml" />
<xi:include href="./formatDateAdvanced.xml" />
<xi:include href="./getInTimezone.xml" />
<xi:include href="./getTimestamp.xml" />
<xi:include href="./getTimestamp2.xml" />
<xi:include href="./getTimezones.xml" />
<xi:include href="./parseDate.xml" />
<xi:include href="./parseDateAdvanced.xml" />
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/DateServices/getDate.xml
0,0 → 1,39
<?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>getDate</title>
<para>Get current time and date.
Sample request:
<programlisting language="xml"><![CDATA[
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:getDate/>
</soapenv:Body>
</soapenv:Envelop
]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns1:getDateResponse xmlns:ns1="http://ws.xservices.brutex.net">
<ns1:return>
<ns1:formats>
<ns1:format1>02.01.2012</ns1:format1>
<ns1:format2>2012/01/02</ns1:format2>
<ns1:format3>08:14:40+0100</ns1:format3>
</ns1:formats>
<ns1:iso8601date>2012-01-02T08:14:40+0100</ns1:iso8601date>
<ns1:timestamp>1325488480957</ns1:timestamp>
</ns1:return>
</ns1:getDateResponse>
</soap:Body>
</soap:Envelope>]]></programlisting>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/DateServices/getDateExtended.xml
0,0 → 1,31
<?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>getDateExtended</title>
<para>Get current time and date (extended Version).
Sample response:
<programlisting language="xml">
<![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:getDateExtendedResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return>
<iso8601date>2012-01-23T08:30:00.333+01:00</iso8601date>
<rfc822date>2012-01-23T08:30:00.333+0100</rfc822date>
<timestamp>1327303800333</timestamp>
<format1>23.01.2012</format1>
<format2>2012/01/23</format2>
<format3>08:30:00</format3>
</return>
</ns2:getDateExtendedResponse>
</soap:Body>
</soap:Envelope>
]]>
</programlisting>
 
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/DateServices/getTimestamp.xml
0,0 → 1,35
<?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:
<programlisting language="xml">
<![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
]]>
</programlisting>
Sample response:
<programlisting language="xml">
<![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>]]>
</programlisting>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/DateServices/getTimestamp2.xml
0,0 → 1,35
<?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>getTimestamp2</title>
<para>Get current timestamp in seconds (unix timestamp).
Sample request:
<programlisting language="xml">
<![CDATA[
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:getTimestamp2/>
</soapenv:Body>
</soapenv:Envelop
]]>
</programlisting>
Sample response:
<programlisting language="xml">
<![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns1:getTimestamp2Response xmlns:ns1="http://ws.xservices.brutex.net">
<ns1:return>]]><emphasis>1325488876</emphasis><![CDATA[</ns1:return>
</ns1:getTimestamp2Response>
</soap:Body>
</soap:Envelope>]]>
</programlisting>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/DateServices/getInTimezone.xml
0,0 → 1,14
<?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>getInTimezone</title>
<para>
Changes the date/time presentation to another time zone. The date/time object itself
is not changed. For example '2012-01-05T22:45:11-06:30' is presented as '2012-01-06T07:15:11+02:00' from Helsinki time zone perspective.
</para>
<para>The web service operation "getTimezones" returns a full list of all supported time zones.</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/DateServices/formatDate.xml
0,0 → 1,26
<?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>formatDate</title>
<para>
Transform date/time representation from ISO8601 or RFC822 format to
<itemizedlist>
<listitem>
<para>ISO8601 (example: "2012-01-17T23:50:00+01:00")</para>
</listitem>
<listitem>
<para>RFC822 (example: "2012-01-17T23:50:00+0100")</para>
</listitem>
<listitem>
<para>YYYYMMDD (example: "2012/01/17")</para>
</listitem>
<listitem>
<para>DDMMYYYY (example: "17.01.2012")</para>
</listitem>
</itemizedlist>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/DateServices/getTimezones.xml
0,0 → 1,3049
<?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>getTimezones</title>
<para>
Returns all time zones this implementation (more precisely your JVM) is aware of.
You have to use the
id to refer to a time zone, the display name is specific to the localisation of your
JVM.
</para>
<para>The offset shows the time difference to Greenwich Time (GMT), also known as UTC.
The daylight saving time is not taken into account for the offset.</para>
<para>Sample response</para>
<para><programlisting><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns1:getTimezonesResponse xmlns:ns1="http://ws.xservices.brutex.net">
<ns1:return>
<ns1:timezone>
<ns1:displayname>GMT-12:00</ns1:displayname>
<ns1:id>Etc/GMT+12</ns1:id>
<ns1:offset>-43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-11:00</ns1:displayname>
<ns1:id>Etc/GMT+11</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>West Samoa Zeit</ns1:displayname>
<ns1:id>MIT</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>West Samoa Zeit</ns1:displayname>
<ns1:id>Pacific/Apia</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Samoa Normalzeit</ns1:displayname>
<ns1:id>Pacific/Midway</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Niue Zeit</ns1:displayname>
<ns1:id>Pacific/Niue</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Samoa Normalzeit</ns1:displayname>
<ns1:id>Pacific/Pago_Pago</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Samoa Normalzeit</ns1:displayname>
<ns1:id>Pacific/Samoa</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Samoa Normalzeit</ns1:displayname>
<ns1:id>US/Samoa</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii-Aleutische Normalzeit</ns1:displayname>
<ns1:id>America/Adak</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii-Aleutische Normalzeit</ns1:displayname>
<ns1:id>America/Atka</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-10:00</ns1:displayname>
<ns1:id>Etc/GMT+10</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii Normalzeit</ns1:displayname>
<ns1:id>HST</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Tokelau Zeit</ns1:displayname>
<ns1:id>Pacific/Fakaofo</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii Normalzeit</ns1:displayname>
<ns1:id>Pacific/Honolulu</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii Normalzeit</ns1:displayname>
<ns1:id>Pacific/Johnston</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Cook-Inseln Zeit</ns1:displayname>
<ns1:id>Pacific/Rarotonga</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Tahiti Zeit</ns1:displayname>
<ns1:id>Pacific/Tahiti</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii Normalzeit</ns1:displayname>
<ns1:id>SystemV/HST10</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii-Aleutische Normalzeit</ns1:displayname>
<ns1:id>US/Aleutian</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii Normalzeit</ns1:displayname>
<ns1:id>US/Hawaii</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Marquesas Zeit</ns1:displayname>
<ns1:id>Pacific/Marquesas</ns1:id>
<ns1:offset>-34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>AST</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>America/Anchorage</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>America/Juneau</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>America/Nome</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>America/Yakutat</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-09:00</ns1:displayname>
<ns1:id>Etc/GMT+9</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Gambier Zeit</ns1:displayname>
<ns1:id>Pacific/Gambier</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>SystemV/YST9</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>SystemV/YST9YDT</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>US/Alaska</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>America/Dawson</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>America/Ensenada</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>America/Los_Angeles</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>America/Santa_Isabel</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>America/Tijuana</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>America/Vancouver</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>America/Whitehorse</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>Canada/Pacific</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>Canada/Yukon</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-08:00</ns1:displayname>
<ns1:id>Etc/GMT+8</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>Mexico/BajaNorte</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>PST</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>PST8PDT</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pitcairn Normalzeit</ns1:displayname>
<ns1:id>Pacific/Pitcairn</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>SystemV/PST8</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>SystemV/PST8PDT</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>US/Pacific</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>US/Pacific-New</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Boise</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Cambridge_Bay</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Chihuahua</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Dawson_Creek</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Denver</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Edmonton</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Hermosillo</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Inuvik</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Mazatlan</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Ojinaga</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Phoenix</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Shiprock</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Yellowknife</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>Canada/Mountain</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-07:00</ns1:displayname>
<ns1:id>Etc/GMT+7</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>MST</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>MST7MDT</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>Mexico/BajaSur</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>Navajo</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>PNT</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>SystemV/MST7</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>SystemV/MST7MDT</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>US/Arizona</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>US/Mountain</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Belize</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Cancun</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Chicago</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Costa_Rica</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/El_Salvador</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Guatemala</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Knox</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Tell_City</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Knox_IN</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Managua</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Matamoros</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Menominee</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Merida</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Mexico_City</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Monterrey</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/North_Dakota/Center</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/North_Dakota/New_Salem</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Rainy_River</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Rankin_Inlet</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Regina</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Swift_Current</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Tegucigalpa</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Winnipeg</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>CST</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>CST6CDT</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>Canada/Central</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>Canada/East-Saskatchewan</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>Canada/Saskatchewan</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osterinseln Zeit</ns1:displayname>
<ns1:id>Chile/EasterIsland</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-06:00</ns1:displayname>
<ns1:id>Etc/GMT+6</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>Mexico/General</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osterinseln Zeit</ns1:displayname>
<ns1:id>Pacific/Easter</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Galapagos Zeit</ns1:displayname>
<ns1:id>Pacific/Galapagos</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>SystemV/CST6</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>SystemV/CST6CDT</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>US/Central</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>US/Indiana-Starke</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Atikokan</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Kolumbianische Zeit</ns1:displayname>
<ns1:id>America/Bogota</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Cayman</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Coral_Harbour</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Detroit</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Fort_Wayne</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Grand_Turk</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ecuadorianische Zeit</ns1:displayname>
<ns1:id>America/Guayaquil</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Kubanische Normalzeit</ns1:displayname>
<ns1:id>America/Havana</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Indianapolis</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Marengo</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Petersburg</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Vevay</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Vincennes</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Winamac</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Indianapolis</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Iqaluit</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Jamaica</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Kentucky/Louisville</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Kentucky/Monticello</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Peruanische Zeit</ns1:displayname>
<ns1:id>America/Lima</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Louisville</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Montreal</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Nassau</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/New_York</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Nipigon</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Panama</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Pangnirtung</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Port-au-Prince</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Resolute</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Thunder_Bay</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Toronto</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>Canada/Eastern</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Kubanische Normalzeit</ns1:displayname>
<ns1:id>Cuba</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>EST</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>EST5EDT</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-05:00</ns1:displayname>
<ns1:id>Etc/GMT+5</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>IET</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>Jamaica</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>SystemV/EST5</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>SystemV/EST5EDT</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>US/East-Indiana</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>US/Eastern</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>US/Michigan</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Venezuelanische Zeit</ns1:displayname>
<ns1:id>America/Caracas</ns1:id>
<ns1:offset>-16200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Anguilla</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Antigua</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/San_Luis</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Aruba</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Paraguay Zeit</ns1:displayname>
<ns1:id>America/Asuncion</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Barbados</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Blanc-Sablon</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Boa_Vista</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Campo_Grande</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Cuiaba</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Curacao</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Dominica</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Eirunepe</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Glace_Bay</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Goose_Bay</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Grenada</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Guadeloupe</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Guyanische Zeit</ns1:displayname>
<ns1:id>America/Guyana</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Halifax</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Bolivianische Zeit</ns1:displayname>
<ns1:id>America/La_Paz</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Manaus</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Marigot</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Martinique</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Moncton</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Montserrat</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Port_of_Spain</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Porto_Acre</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Porto_Velho</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Puerto_Rico</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Rio_Branco</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chilenische Zeit</ns1:displayname>
<ns1:id>America/Santiago</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Santo_Domingo</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/St_Barthelemy</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/St_Kitts</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/St_Lucia</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/St_Thomas</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/St_Vincent</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Thule</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Tortola</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Virgin</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chilenische Zeit</ns1:displayname>
<ns1:id>Antarctica/Palmer</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>Atlantic/Bermuda</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Falkland Inseln Zeit</ns1:displayname>
<ns1:id>Atlantic/Stanley</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>Brazil/Acre</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>Brazil/West</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>Canada/Atlantic</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chilenische Zeit</ns1:displayname>
<ns1:id>Chile/Continental</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-04:00</ns1:displayname>
<ns1:id>Etc/GMT+4</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>PRT</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>SystemV/AST4</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>SystemV/AST4ADT</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neufundland Normalzeit</ns1:displayname>
<ns1:id>America/St_Johns</ns1:id>
<ns1:offset>-12600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neufundland Normalzeit</ns1:displayname>
<ns1:id>CNT</ns1:id>
<ns1:offset>-12600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neufundland Normalzeit</ns1:displayname>
<ns1:id>Canada/Newfoundland</ns1:id>
<ns1:offset>-12600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>AGT</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Araguaina</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Buenos_Aires</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Catamarca</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/ComodRivadavia</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Cordoba</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Jujuy</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/La_Rioja</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Mendoza</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Rio_Gallegos</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Salta</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/San_Juan</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Tucuman</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Ushuaia</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Bahia</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Belem</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Buenos_Aires</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Catamarca</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Französisch-Guiana Zeit</ns1:displayname>
<ns1:id>America/Cayenne</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Cordoba</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Fortaleza</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westgrönländische Zeit</ns1:displayname>
<ns1:id>America/Godthab</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Jujuy</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Maceio</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Mendoza</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pierre &amp; Miquelon Normalzeit</ns1:displayname>
<ns1:id>America/Miquelon</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Uruguayische Zeit</ns1:displayname>
<ns1:id>America/Montevideo</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Suriname Zeit</ns1:displayname>
<ns1:id>America/Paramaribo</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Recife</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Rosario</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Santarem</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Sao_Paulo</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rothera Zeit</ns1:displayname>
<ns1:id>Antarctica/Rothera</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>BET</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>Brazil/East</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-03:00</ns1:displayname>
<ns1:id>Etc/GMT+3</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Fernando de Noronha Zeit</ns1:displayname>
<ns1:id>America/Noronha</ns1:id>
<ns1:offset>-7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>South Georgia Normalzeit</ns1:displayname>
<ns1:id>Atlantic/South_Georgia</ns1:id>
<ns1:offset>-7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Fernando de Noronha Zeit</ns1:displayname>
<ns1:id>Brazil/DeNoronha</ns1:id>
<ns1:offset>-7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-02:00</ns1:displayname>
<ns1:id>Etc/GMT+2</ns1:id>
<ns1:offset>-7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostgrönländische Zeit</ns1:displayname>
<ns1:id>America/Scoresbysund</ns1:id>
<ns1:offset>-3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Azoren Zeit</ns1:displayname>
<ns1:id>Atlantic/Azores</ns1:id>
<ns1:offset>-3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Kap Verde Zeit</ns1:displayname>
<ns1:id>Atlantic/Cape_Verde</ns1:id>
<ns1:offset>-3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-01:00</ns1:displayname>
<ns1:id>Etc/GMT+1</ns1:id>
<ns1:offset>-3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Abidjan</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ghanaische Normalzeit</ns1:displayname>
<ns1:id>Africa/Accra</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Bamako</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Banjul</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Bissau</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Africa/Casablanca</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Conakry</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Dakar</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Africa/El_Aaiun</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Normalzeit</ns1:displayname>
<ns1:id>Africa/Freetown</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Lome</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Monrovia</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Nouakchott</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Ouagadougou</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Sao_Tome</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Timbuktu</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>America/Danmarkshavn</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Atlantic/Canary</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Atlantic/Faeroe</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Atlantic/Faroe</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Atlantic/Madeira</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Atlantic/Reykjavik</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Atlantic/St_Helena</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Eire</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+00:00</ns1:displayname>
<ns1:id>Etc/GMT</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+00:00</ns1:displayname>
<ns1:id>Etc/GMT+0</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+00:00</ns1:displayname>
<ns1:id>Etc/GMT-0</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+00:00</ns1:displayname>
<ns1:id>Etc/GMT0</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Etc/Greenwich</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>Etc/UCT</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>Etc/UTC</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>Etc/Universal</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>Etc/Zulu</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Europe/Belfast</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Europe/Dublin</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Europe/Guernsey</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Europe/Isle_of_Man</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Europe/Jersey</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Lisbon</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Europe/London</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>GB</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>GB-Eire</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>GMT</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+00:00</ns1:displayname>
<ns1:id>GMT0</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Greenwich</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Iceland</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Portugal</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>UCT</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>UTC</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>Universal</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>WET</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>Zulu</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Africa/Algiers</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Bangui</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Brazzaville</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Africa/Ceuta</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Douala</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Kinshasa</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Lagos</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Libreville</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Luanda</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Malabo</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Ndjamena</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Niamey</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Porto-Novo</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Africa/Tunis</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Windhoek</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Arctic/Longyearbyen</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Atlantic/Jan_Mayen</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>CET</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>ECT</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+01:00</ns1:displayname>
<ns1:id>Etc/GMT-1</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Amsterdam</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Andorra</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Belgrade</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Berlin</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Bratislava</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Brussels</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Budapest</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Copenhagen</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Gibraltar</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Ljubljana</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Luxembourg</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Madrid</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Malta</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Monaco</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Oslo</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Paris</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Podgorica</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Prague</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Rome</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/San_Marino</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Sarajevo</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Skopje</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Stockholm</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Tirane</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Vaduz</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Vatican</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Vienna</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Warsaw</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Zagreb</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Zurich</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentraleuropäische Zeit</ns1:displayname>
<ns1:id>MET</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Poland</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>ART</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Blantyre</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Bujumbura</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Africa/Cairo</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Gaborone</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Harare</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Südafrikanische Normalzeit</ns1:displayname>
<ns1:id>Africa/Johannesburg</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Kigali</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Lubumbashi</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Lusaka</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Maputo</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Südafrikanische Normalzeit</ns1:displayname>
<ns1:id>Africa/Maseru</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Südafrikanische Normalzeit</ns1:displayname>
<ns1:id>Africa/Mbabane</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Africa/Tripoli</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Asia/Amman</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Asia/Beirut</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Asia/Damascus</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Asia/Gaza</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Asia/Istanbul</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Israelische Normalzeit</ns1:displayname>
<ns1:id>Asia/Jerusalem</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Asia/Nicosia</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Israelische Normalzeit</ns1:displayname>
<ns1:id>Asia/Tel_Aviv</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>CAT</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>EET</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Egypt</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+02:00</ns1:displayname>
<ns1:id>Etc/GMT-2</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Athens</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Bucharest</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Chisinau</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Helsinki</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Istanbul</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Kaliningrad</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Kiev</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Mariehamn</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Minsk</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Nicosia</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Riga</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Simferopol</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Sofia</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Tallinn</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Tiraspol</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Uzhgorod</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Vilnius</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Zaporozhye</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Israelische Normalzeit</ns1:displayname>
<ns1:id>Israel</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Libya</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Turkey</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Addis_Ababa</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Asmara</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Asmera</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Dar_es_Salaam</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Djibouti</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Kampala</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Khartoum</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Mogadishu</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Nairobi</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Syowa Zeit</ns1:displayname>
<ns1:id>Antarctica/Syowa</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Arabische Normalzeit</ns1:displayname>
<ns1:id>Asia/Aden</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Arabische Normalzeit</ns1:displayname>
<ns1:id>Asia/Baghdad</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Arabische Normalzeit</ns1:displayname>
<ns1:id>Asia/Bahrain</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Arabische Normalzeit</ns1:displayname>
<ns1:id>Asia/Kuwait</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Arabische Normalzeit</ns1:displayname>
<ns1:id>Asia/Qatar</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Arabische Normalzeit</ns1:displayname>
<ns1:id>Asia/Riyadh</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>EAT</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+03:00</ns1:displayname>
<ns1:id>Etc/GMT-3</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Moskauer Normalzeit</ns1:displayname>
<ns1:id>Europe/Moscow</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Wolgograder Zeit</ns1:displayname>
<ns1:id>Europe/Volgograd</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Indian/Antananarivo</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Indian/Comoro</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Indian/Mayotte</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Moskauer Normalzeit</ns1:displayname>
<ns1:id>W-SU</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+03:07</ns1:displayname>
<ns1:id>Asia/Riyadh87</ns1:id>
<ns1:offset>11224</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+03:07</ns1:displayname>
<ns1:id>Asia/Riyadh88</ns1:id>
<ns1:offset>11224</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+03:07</ns1:displayname>
<ns1:id>Asia/Riyadh89</ns1:id>
<ns1:offset>11224</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+03:07</ns1:displayname>
<ns1:id>Mideast/Riyadh87</ns1:id>
<ns1:offset>11224</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+03:07</ns1:displayname>
<ns1:id>Mideast/Riyadh88</ns1:id>
<ns1:offset>11224</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+03:07</ns1:displayname>
<ns1:id>Mideast/Riyadh89</ns1:id>
<ns1:offset>11224</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Iranische Normalzeit</ns1:displayname>
<ns1:id>Asia/Tehran</ns1:id>
<ns1:offset>12600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Iranische Normalzeit</ns1:displayname>
<ns1:id>Iran</ns1:id>
<ns1:offset>12600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Aserbaidschanische Zeit</ns1:displayname>
<ns1:id>Asia/Baku</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Golf Normalzeit</ns1:displayname>
<ns1:id>Asia/Dubai</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Golf Normalzeit</ns1:displayname>
<ns1:id>Asia/Muscat</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Georgische Zeit</ns1:displayname>
<ns1:id>Asia/Tbilisi</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Armenische Zeit</ns1:displayname>
<ns1:id>Asia/Yerevan</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+04:00</ns1:displayname>
<ns1:id>Etc/GMT-4</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Samarische Zeit</ns1:displayname>
<ns1:id>Europe/Samara</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Seychellen Zeit</ns1:displayname>
<ns1:id>Indian/Mahe</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mauritius Zeit</ns1:displayname>
<ns1:id>Indian/Mauritius</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Reunion Zeit</ns1:displayname>
<ns1:id>Indian/Reunion</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Armenische Zeit</ns1:displayname>
<ns1:id>NET</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Afghanistanische Zeit</ns1:displayname>
<ns1:id>Asia/Kabul</ns1:id>
<ns1:offset>16200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Davis Zeit</ns1:displayname>
<ns1:id>Antarctica/Davis</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mawson Zeit</ns1:displayname>
<ns1:id>Antarctica/Mawson</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Aqtau Zeit</ns1:displayname>
<ns1:id>Asia/Aqtau</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Aqtobe Zeit</ns1:displayname>
<ns1:id>Asia/Aqtobe</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Turkmenische Zeit</ns1:displayname>
<ns1:id>Asia/Ashgabat</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Turkmenische Zeit</ns1:displayname>
<ns1:id>Asia/Ashkhabad</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Tadschikische Zeit</ns1:displayname>
<ns1:id>Asia/Dushanbe</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pakistanische Zeit</ns1:displayname>
<ns1:id>Asia/Karachi</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Oral Zeit</ns1:displayname>
<ns1:id>Asia/Oral</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Usbekistan Zeit</ns1:displayname>
<ns1:id>Asia/Samarkand</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Usbekistan Zeit</ns1:displayname>
<ns1:id>Asia/Tashkent</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Jekaterinburger Zeit</ns1:displayname>
<ns1:id>Asia/Yekaterinburg</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+05:00</ns1:displayname>
<ns1:id>Etc/GMT-5</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Französisch Süd- u. Antarktische Landzeit</ns1:displayname>
<ns1:id>Indian/Kerguelen</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Maledivische Zeit</ns1:displayname>
<ns1:id>Indian/Maldives</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pakistanische Zeit</ns1:displayname>
<ns1:id>PLT</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indische Normalzeit</ns1:displayname>
<ns1:id>Asia/Calcutta</ns1:id>
<ns1:offset>19800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indische Normalzeit</ns1:displayname>
<ns1:id>Asia/Colombo</ns1:id>
<ns1:offset>19800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indische Normalzeit</ns1:displayname>
<ns1:id>Asia/Kolkata</ns1:id>
<ns1:offset>19800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indische Normalzeit</ns1:displayname>
<ns1:id>IST</ns1:id>
<ns1:offset>19800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Nepalesische Zeit</ns1:displayname>
<ns1:id>Asia/Kathmandu</ns1:id>
<ns1:offset>20700</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Nepalesische Zeit</ns1:displayname>
<ns1:id>Asia/Katmandu</ns1:id>
<ns1:offset>20700</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Vostok Zeit</ns1:displayname>
<ns1:id>Antarctica/Vostok</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alma Ata Zeit</ns1:displayname>
<ns1:id>Asia/Almaty</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Kirgisische Zeit</ns1:displayname>
<ns1:id>Asia/Bishkek</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Bangladesch Zeit</ns1:displayname>
<ns1:id>Asia/Dacca</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Bangladesch Zeit</ns1:displayname>
<ns1:id>Asia/Dhaka</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Nowosibirsker Zeit</ns1:displayname>
<ns1:id>Asia/Novokuznetsk</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Nowosibirsker Zeit</ns1:displayname>
<ns1:id>Asia/Novosibirsk</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Omsk Zeit</ns1:displayname>
<ns1:id>Asia/Omsk</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Qyzylorda Zeit</ns1:displayname>
<ns1:id>Asia/Qyzylorda</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Bhutanische Zeit</ns1:displayname>
<ns1:id>Asia/Thimbu</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Bhutanische Zeit</ns1:displayname>
<ns1:id>Asia/Thimphu</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Bangladesch Zeit</ns1:displayname>
<ns1:id>BST</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+06:00</ns1:displayname>
<ns1:id>Etc/GMT-6</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indischer Ozean Territorium Zeit</ns1:displayname>
<ns1:id>Indian/Chagos</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Myanmar Zeit</ns1:displayname>
<ns1:id>Asia/Rangoon</ns1:id>
<ns1:offset>23400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Cocos Islands Zeit</ns1:displayname>
<ns1:id>Indian/Cocos</ns1:id>
<ns1:offset>23400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indochina Zeit</ns1:displayname>
<ns1:id>Asia/Bangkok</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indochina Zeit</ns1:displayname>
<ns1:id>Asia/Ho_Chi_Minh</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hovd Zeit</ns1:displayname>
<ns1:id>Asia/Hovd</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westindonesische Zeit</ns1:displayname>
<ns1:id>Asia/Jakarta</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Krasnojarsker Zeit</ns1:displayname>
<ns1:id>Asia/Krasnoyarsk</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indochina Zeit</ns1:displayname>
<ns1:id>Asia/Phnom_Penh</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westindonesische Zeit</ns1:displayname>
<ns1:id>Asia/Pontianak</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indochina Zeit</ns1:displayname>
<ns1:id>Asia/Saigon</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indochina Zeit</ns1:displayname>
<ns1:id>Asia/Vientiane</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+07:00</ns1:displayname>
<ns1:id>Etc/GMT-7</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Christmas Island Zeit</ns1:displayname>
<ns1:id>Indian/Christmas</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indochina Zeit</ns1:displayname>
<ns1:id>VST</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brunei Zeit</ns1:displayname>
<ns1:id>Asia/Brunei</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Choibalsan Zeit</ns1:displayname>
<ns1:id>Asia/Choibalsan</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Chongqing</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Chungking</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Harbin</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hongkong Zeit</ns1:displayname>
<ns1:id>Asia/Hong_Kong</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Irkutsk Zeit</ns1:displayname>
<ns1:id>Asia/Irkutsk</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Kashgar</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Malaysische Zeit</ns1:displayname>
<ns1:id>Asia/Kuala_Lumpur</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Malaysische Zeit</ns1:displayname>
<ns1:id>Asia/Kuching</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Macao</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Macau</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralindonesische Zeit</ns1:displayname>
<ns1:id>Asia/Makassar</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Philippinische Zeit</ns1:displayname>
<ns1:id>Asia/Manila</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Shanghai</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Singapur Zeit</ns1:displayname>
<ns1:id>Asia/Singapore</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Taipei</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralindonesische Zeit</ns1:displayname>
<ns1:id>Asia/Ujung_Pandang</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ulaanbaatar Zeit</ns1:displayname>
<ns1:id>Asia/Ulaanbaatar</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ulaanbaatar Zeit</ns1:displayname>
<ns1:id>Asia/Ulan_Bator</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Urumqi</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westliche Normalzeit (Australien)</ns1:displayname>
<ns1:id>Australia/Perth</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westliche Normalzeit (Australien)</ns1:displayname>
<ns1:id>Australia/West</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>CTT</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+08:00</ns1:displayname>
<ns1:id>Etc/GMT-8</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hongkong Zeit</ns1:displayname>
<ns1:id>Hongkong</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>PRC</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Singapur Zeit</ns1:displayname>
<ns1:id>Singapore</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentral-Westliche Normalzeit (Australien)</ns1:displayname>
<ns1:id>Australia/Eucla</ns1:id>
<ns1:offset>31500</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Timor-Leste Normalzeit</ns1:displayname>
<ns1:id>Asia/Dili</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostindonesische Zeit</ns1:displayname>
<ns1:id>Asia/Jayapura</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koreanische Normalzeit</ns1:displayname>
<ns1:id>Asia/Pyongyang</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koreanische Normalzeit</ns1:displayname>
<ns1:id>Asia/Seoul</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Japanische Normalzeit</ns1:displayname>
<ns1:id>Asia/Tokyo</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Jakutsk Zeit</ns1:displayname>
<ns1:id>Asia/Yakutsk</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+09:00</ns1:displayname>
<ns1:id>Etc/GMT-9</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Japanische Normalzeit</ns1:displayname>
<ns1:id>JST</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Japanische Normalzeit</ns1:displayname>
<ns1:id>Japan</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Palau Zeit</ns1:displayname>
<ns1:id>Pacific/Palau</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koreanische Normalzeit</ns1:displayname>
<ns1:id>ROK</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit (Northern Territory)</ns1:displayname>
<ns1:id>ACT</ns1:id>
<ns1:offset>34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit (Südaustralien)</ns1:displayname>
<ns1:id>Australia/Adelaide</ns1:id>
<ns1:offset>34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit (Südaustralien/New South Wales)</ns1:displayname>
<ns1:id>Australia/Broken_Hill</ns1:id>
<ns1:offset>34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit (Northern Territory)</ns1:displayname>
<ns1:id>Australia/Darwin</ns1:id>
<ns1:offset>34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit (Northern Territory)</ns1:displayname>
<ns1:id>Australia/North</ns1:id>
<ns1:offset>34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit (Südaustralien)</ns1:displayname>
<ns1:id>Australia/South</ns1:id>
<ns1:offset>34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit (Südaustralien/New South Wales)</ns1:displayname>
<ns1:id>Australia/Yancowinna</ns1:id>
<ns1:offset>34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (New South Wales)</ns1:displayname>
<ns1:id>AET</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Dumont-d'Urville Zeit</ns1:displayname>
<ns1:id>Antarctica/DumontDUrville</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Sakhalin Zeit</ns1:displayname>
<ns1:id>Asia/Sakhalin</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Wladiwostok Zeit</ns1:displayname>
<ns1:id>Asia/Vladivostok</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (New South Wales)</ns1:displayname>
<ns1:id>Australia/ACT</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (Queensland)</ns1:displayname>
<ns1:id>Australia/Brisbane</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (New South Wales)</ns1:displayname>
<ns1:id>Australia/Canberra</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (New South Wales)</ns1:displayname>
<ns1:id>Australia/Currie</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (Tasmanien)</ns1:displayname>
<ns1:id>Australia/Hobart</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (Queensland)</ns1:displayname>
<ns1:id>Australia/Lindeman</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (Victoria)</ns1:displayname>
<ns1:id>Australia/Melbourne</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (New South Wales)</ns1:displayname>
<ns1:id>Australia/NSW</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (Queensland)</ns1:displayname>
<ns1:id>Australia/Queensland</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (New South Wales)</ns1:displayname>
<ns1:id>Australia/Sydney</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (Tasmanien)</ns1:displayname>
<ns1:id>Australia/Tasmania</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (Victoria)</ns1:displayname>
<ns1:id>Australia/Victoria</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+10:00</ns1:displayname>
<ns1:id>Etc/GMT-10</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chamorro Normalzeit</ns1:displayname>
<ns1:id>Pacific/Guam</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Papua-Neuguinea Zeit</ns1:displayname>
<ns1:id>Pacific/Port_Moresby</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chamorro Normalzeit</ns1:displayname>
<ns1:id>Pacific/Saipan</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Truk Zeit</ns1:displayname>
<ns1:id>Pacific/Truk</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Truk Zeit</ns1:displayname>
<ns1:id>Pacific/Yap</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Lord Howe Normalzeit</ns1:displayname>
<ns1:id>Australia/LHI</ns1:id>
<ns1:offset>37800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Lord Howe Normalzeit</ns1:displayname>
<ns1:id>Australia/Lord_Howe</ns1:id>
<ns1:offset>37800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Casey Time</ns1:displayname>
<ns1:id>Antarctica/Casey</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Magadanische Zeit</ns1:displayname>
<ns1:id>Asia/Magadan</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+11:00</ns1:displayname>
<ns1:id>Etc/GMT-11</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Vanuatu Zeit</ns1:displayname>
<ns1:id>Pacific/Efate</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Salomoninseln Zeit</ns1:displayname>
<ns1:id>Pacific/Guadalcanal</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Kosrae Zeit</ns1:displayname>
<ns1:id>Pacific/Kosrae</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neukaledonische Zeit</ns1:displayname>
<ns1:id>Pacific/Noumea</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ponape Zeit</ns1:displayname>
<ns1:id>Pacific/Ponape</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Salomoninseln Zeit</ns1:displayname>
<ns1:id>SST</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Norfolk Zeit</ns1:displayname>
<ns1:id>Pacific/Norfolk</ns1:id>
<ns1:offset>41400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neuseeland Normalzeit</ns1:displayname>
<ns1:id>Antarctica/McMurdo</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neuseeland Normalzeit</ns1:displayname>
<ns1:id>Antarctica/South_Pole</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Anadyr Zeit</ns1:displayname>
<ns1:id>Asia/Anadyr</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Petropawlowsk-Kamtschatkische Zeit</ns1:displayname>
<ns1:id>Asia/Kamchatka</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+12:00</ns1:displayname>
<ns1:id>Etc/GMT-12</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Marshallinseln Zeit</ns1:displayname>
<ns1:id>Kwajalein</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neuseeland Normalzeit</ns1:displayname>
<ns1:id>NST</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neuseeland Normalzeit</ns1:displayname>
<ns1:id>NZ</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neuseeland Normalzeit</ns1:displayname>
<ns1:id>Pacific/Auckland</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Fidschi Zeit</ns1:displayname>
<ns1:id>Pacific/Fiji</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Tuvalu Zeit</ns1:displayname>
<ns1:id>Pacific/Funafuti</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Marshallinseln Zeit</ns1:displayname>
<ns1:id>Pacific/Kwajalein</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Marshallinseln Zeit</ns1:displayname>
<ns1:id>Pacific/Majuro</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Nauru Zeit</ns1:displayname>
<ns1:id>Pacific/Nauru</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Gilbert-Inseln Zeit</ns1:displayname>
<ns1:id>Pacific/Tarawa</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Wake Zeit</ns1:displayname>
<ns1:id>Pacific/Wake</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Wallis u. Futuna Zeit</ns1:displayname>
<ns1:id>Pacific/Wallis</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chatham Normalzeit</ns1:displayname>
<ns1:id>NZ-CHAT</ns1:id>
<ns1:offset>45900</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chatham Normalzeit</ns1:displayname>
<ns1:id>Pacific/Chatham</ns1:id>
<ns1:offset>45900</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+13:00</ns1:displayname>
<ns1:id>Etc/GMT-13</ns1:id>
<ns1:offset>46800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Phoenix Inseln Zeit</ns1:displayname>
<ns1:id>Pacific/Enderbury</ns1:id>
<ns1:offset>46800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Tonga Zeit</ns1:displayname>
<ns1:id>Pacific/Tongatapu</ns1:id>
<ns1:offset>46800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+14:00</ns1:displayname>
<ns1:id>Etc/GMT-14</ns1:id>
<ns1:offset>50400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Line Inseln Zeit</ns1:displayname>
<ns1:id>Pacific/Kiritimati</ns1:id>
<ns1:offset>50400</ns1:offset>
</ns1:timezone>
</ns1:return>
</ns1:getTimezonesResponse>
</soap:Body>
</soap:Envelope>
]]></programlisting>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ArchiveServices/zipFromArchive.xml
0,0 → 1,20
<?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>zipFromArchive</title>
<para>Create a new ZIP archive from files located within another archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para></para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ArchiveServices/bunzip2.xml
0,0 → 1,20
<?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>bunzip2</title>
<para>Extract files from a bzip2 archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para></para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ArchiveServices/gzip.xml
0,0 → 1,20
<?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>bzip2</title>
<para>Create a bzip2 archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para></para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ArchiveServices/untar.xml
0,0 → 1,20
<?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>unrar</title>
<para>Extract files from a RAR archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para></para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ArchiveServices/bzip2FromArchive.xml
0,0 → 1,20
<?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>bzip2FromArchive</title>
<para>Create a new bzip2 archive from files located within another archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para></para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ArchiveServices/gunzip.xml
0,0 → 1,20
<?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>gunzip</title>
<para>Extract files from a GNU zip archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para></para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ArchiveServices/gzipFromArchive.xml
0,0 → 1,20
<?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>gzipFromArchive</title>
<para>Create a new GNU zip archive from files located within another archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para></para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ArchiveServices/bunzip2FromURL.xml
0,0 → 1,21
<?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>bunzip2FromURL</title>
<para>Extract files from a bzip2 archive. The archive is located on the web (http/ https)
and will be downloaded automatically.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para></para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ArchiveServices/zip.xml
0,0 → 1,20
<?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>zip</title>
<para>Compress files and store them in a ZIP archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para></para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ArchiveServices/gunzipFromURL.xml
0,0 → 1,21
<?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>gunzipFromURL</title>
<para>Extract files from a GNU zip archive. The archive is located on the web (http/ https)
and will be downloaded automatically.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para></para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ArchiveServices/ArchiveServices.xml
0,0 → 1,23
<?xml version='1.0' encoding='utf-8'?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude" id="archiveservices">
<title>ArchiveServices</title>
<para>The ArchiveService bundles file packing operations. Its
WSDL is located at
http://server:port/XServices/ArchiveService?wsdl</para>
<xi:include href="./bzip2.xml" />
<xi:include href="./bzip2FromArchive.xml" />
<xi:include href="./gzip.xml" />
<xi:include href="./gzipFromArchive.xml" />
<xi:include href="./gunzip.xml" />
<xi:include href="./bunzip2.xml" />
<xi:include href="./gunzipFromURL.xml" />
<xi:include href="./bunzip2FromURL.xml" />
<xi:include href="./zip.xml" />
<xi:include href="./zipFromArchive.xml" />
<xi:include href="./unzip.xml" />
<xi:include href="./unrar.xml" />
<xi:include href="./untar.xml" />
 
</section>
/xservices/branches/xservices-jre7/doc/ArchiveServices/unzip.xml
0,0 → 1,20
<?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>unzip</title>
<para>Extract files from a zip archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para></para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ArchiveServices/bzip2.xml
0,0 → 1,20
<?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>gzip</title>
<para>Create a GNU zip archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para></para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ArchiveServices/unrar.xml
0,0 → 1,20
<?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>untar</title>
<para>Extract files from a tarball archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para></para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/BruteXServices_User_Guide.dbk
0,0 → 1,5135
<?xml version="1.0" encoding="UTF-8"?><book xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude" version="5.0">
<title>Brutex XServices Documentation</title>
<bookinfo>
<date>June 2014</date>
<author>
<firstname>Brian</firstname>
<surname>Rosenberger</surname>
<email>bru@brutex.de</email>
</author>
<corpname>Brutex Network</corpname>
<copyright>
<year>2014</year>
</copyright>
<legalnotice>
<para>
The copyright holders make no representation about the suitability
of this document for any purpose. It is provided
<emphasis>as is</emphasis>
without expressed or implied warranty.
</para>
</legalnotice>
<legalnotice>
<para>
<literallayout>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
</literallayout></para>
<para>Apache Tomcat and Apache Ant are trademarks of the Apache
Software Foundation.</para>
</legalnotice>
<abstract xml:base="common/abstract.xml">
<title>Abstract</title>
<para>In complex IT environments it is often necessary to integrate
different information systems with each other, exchange data between
software tools and automate actions based on events arising from user
interaction. Web Services is a popular way to make remote functions
available to a broad range of clients. A WebService is independent
from platforms and programming languages. XML Messages are exchanged
through common protocols like TCP/IP or SMTP, processed and returned
(request/ response paradigm).</para>
<para>Because of their nature, WebServices are a great technology to
overcome system boundaries and to "orchestrate" your IT environment.
They make up the basis for SOA and are the pieces that assemble
automated business processes.</para>
<para>XServices is a collection of pre-build WebServices with the
intention to avoid duplicate work and "re-inventing the wheel". The
historical base for XServices is the 'XBridgeNG' software, which
provided a set of Apache Ant Tasks with quite the same intention. The
available WebService operations are most likely the "most wanted"
ones, some of them for sure are "must have". This collection may
overlap with other libraries. In summary the current version contains
8 WebServices with over 50 operations.</para>
</abstract>
</bookinfo>
<chapter id="installation">
<beginpage/>
<title>Getting started</title>
<para>This chapter describes the installation process.</para>
<section xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0" xml:base="common/installation.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
 
 
<title>Installation</title>
<para>As of February 2013, XServices require Java 7. Older builds run against Java 5.</para>
<para>Apache Tomcat 7</para>
<para>tbd.</para>
<para>In short: Deploy .WAR file to Apache Tomcat</para>
<section>
<title>Securing with Basic Authentication</title>
<para>There is a quick guide explaining Basic Authentication for Tomcat here: <link xlink:href="http://oreilly.com/pub/a/java/archive/tomcat-tips.html?page=1">
http://oreilly.com/pub/a/java/archive/tomcat-tips.html?page=1</link>
</para>
<para>
</para>
</section>
<section>
<title>Limit access to</title>
<para>Sometimes you'll only want to restrict access to to
only
specified host names or IP addresses. This way, only
clients at
those specified addresses can use the web services.
Tomcat provides
two configuration values for that:
RemoteHostValve and
RemoteAddrValve.</para>
<para>These Valves allow you to filter requests by host name or
by IP
address, and to allow or deny hosts that match. The
example below
restricts access to the ArchiveService from any
machine that is not
the local host.</para>
<programlisting language="xml">&lt;Context
path="/XService/ArchiveService"
...&gt; &lt;Valve
className="org.apache.catalina.valves.RemoteAddrValve"
allow="127.0.0.1" deny=""/&gt; &lt;/Context&gt;
</programlisting>
<para>If no allow pattern is given, then patterns that match
the deny
attribute patterns will be rejected, and all others
will be allowed.
Similarly, if no deny pattern is given,
patterns that match the
allow attribute will be allowed, and
all others will be denied.
</para>
<para>The &lt;context&gt; element must be placed into the
server.xml
file (into &lt;engine&gt;&lt;host&gt;).</para>
</section>
 
</section>
</chapter>
<chapter id="soapservices">
<beginpage/>
<title>Available SOAP Services</title>
<para>List of available web services and their operations.</para>
<section id="archiveservices" version="5.0" xml:base="ArchiveServices/ArchiveServices.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>ArchiveServices</title>
<para>The ArchiveService bundles file packing operations. Its
WSDL is located at
http://server:port/XServices/ArchiveService?wsdl</para>
<section version="5.0" xml:base="ArchiveServices/bzip2.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>gzip</title>
<para>Create a GNU zip archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para/>
</section>
<section version="5.0" xml:base="ArchiveServices/bzip2FromArchive.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>bzip2FromArchive</title>
<para>Create a new bzip2 archive from files located within another archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para/>
</section>
<section version="5.0" xml:base="ArchiveServices/gzip.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>bzip2</title>
<para>Create a bzip2 archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para/>
</section>
<section version="5.0" xml:base="ArchiveServices/gzipFromArchive.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>gzipFromArchive</title>
<para>Create a new GNU zip archive from files located within another archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para/>
</section>
<section version="5.0" xml:base="ArchiveServices/gunzip.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>gunzip</title>
<para>Extract files from a GNU zip archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para/>
</section>
<section version="5.0" xml:base="ArchiveServices/bunzip2.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>bunzip2</title>
<para>Extract files from a bzip2 archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para/>
</section>
<section version="5.0" xml:base="ArchiveServices/gunzipFromURL.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>gunzipFromURL</title>
<para>Extract files from a GNU zip archive. The archive is located on the web (http/ https)
and will be downloaded automatically.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para/>
</section>
<section version="5.0" xml:base="ArchiveServices/bunzip2FromURL.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>bunzip2FromURL</title>
<para>Extract files from a bzip2 archive. The archive is located on the web (http/ https)
and will be downloaded automatically.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para/>
</section>
<section version="5.0" xml:base="ArchiveServices/zip.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>zip</title>
<para>Compress files and store them in a ZIP archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para/>
</section>
<section version="5.0" xml:base="ArchiveServices/zipFromArchive.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>zipFromArchive</title>
<para>Create a new ZIP archive from files located within another archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para/>
</section>
<section version="5.0" xml:base="ArchiveServices/unzip.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>unzip</title>
<para>Extract files from a zip archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para/>
</section>
<section version="5.0" xml:base="ArchiveServices/unrar.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>untar</title>
<para>Extract files from a tarball archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para/>
</section>
<section version="5.0" xml:base="ArchiveServices/untar.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>unrar</title>
<para>Extract files from a RAR archive.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para/>
</section>
 
</section>
<section id="dateservices" version="5.0" xml:base="DateServices/DateServices.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>DateServices</title>
<para>The DateService bundles various date and time related operations.
</para>
<para>Its WSDL is located at http://server:port/XServices/DateService?wsdl</para>
<para>XServices uses a date/time format as suggested by http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#dateTime, which is basically a subset of ISO8601. Most input parameters for date/time have to be provided as such.
Another date/time format, that is often used is defined by RFC822. The major difference to ISO8601 and the Xmlschema datetime format, is in the way how the time zone is specified. ISO8601 specifies a colon to be used to separate hour and minutes time shift. RFC822 does not use a separator.
<itemizedlist>
<listitem>
<para>ISO8601 (example: "2012-01-17T23:50:00+01:00")</para>
</listitem>
<listitem>
<para>RFC822 (example: "2012-01-17T23:50:00+0100")</para>
</listitem>
</itemizedlist>
</para>
<section version="5.0" xml:base="DateServices/dateAdd.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>dateAdd</title>
<para>Add or substract a time span from/ to a date.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para>Hints here</para>
</section>
<section version="5.0" xml:base="DateServices/dateTimeDiff.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>dateTimeDiff</title>
<para>Calculate elapsed time between two dates. Returns the elapsed time in milliseconds.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para>Hints here</para>
</section>
<section version="5.0" xml:base="DateServices/dateTimeDiff2.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>dateTimeDiff</title>
<para>Calculate Fully elapsed units between two dates. Example: 4:15:10-4:15:55 in minutes = 0 and in seconds = 45.
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para>Hints here</para>
</section>
<section version="5.0" xml:base="DateServices/getDate.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>getDate</title>
<para>Get current time and date.
Sample request:
<programlisting language="xml"><![CDATA[
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:getDate/>
</soapenv:Body>
</soapenv:Envelop
]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns1:getDateResponse xmlns:ns1="http://ws.xservices.brutex.net">
<ns1:return>
<ns1:formats>
<ns1:format1>02.01.2012</ns1:format1>
<ns1:format2>2012/01/02</ns1:format2>
<ns1:format3>08:14:40+0100</ns1:format3>
</ns1:formats>
<ns1:iso8601date>2012-01-02T08:14:40+0100</ns1:iso8601date>
<ns1:timestamp>1325488480957</ns1:timestamp>
</ns1:return>
</ns1:getDateResponse>
</soap:Body>
</soap:Envelope>]]></programlisting>
</para>
</section>
<section version="5.0" xml:base="DateServices/getDateExtended.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>getDateExtended</title>
<para>Get current time and date (extended Version).
Sample response:
<programlisting language="xml">
<![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:getDateExtendedResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return>
<iso8601date>2012-01-23T08:30:00.333+01:00</iso8601date>
<rfc822date>2012-01-23T08:30:00.333+0100</rfc822date>
<timestamp>1327303800333</timestamp>
<format1>23.01.2012</format1>
<format2>2012/01/23</format2>
<format3>08:30:00</format3>
</return>
</ns2:getDateExtendedResponse>
</soap:Body>
</soap:Envelope>
]]>
</programlisting>
 
</para>
</section>
<section version="5.0" xml:base="DateServices/formatDate.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>formatDate</title>
<para>
Transform date/time representation from ISO8601 or RFC822 format to
<itemizedlist>
<listitem>
<para>ISO8601 (example: "2012-01-17T23:50:00+01:00")</para>
</listitem>
<listitem>
<para>RFC822 (example: "2012-01-17T23:50:00+0100")</para>
</listitem>
<listitem>
<para>YYYYMMDD (example: "2012/01/17")</para>
</listitem>
<listitem>
<para>DDMMYYYY (example: "17.01.2012")</para>
</listitem>
</itemizedlist>
</para>
</section>
<section version="5.0" xml:base="DateServices/formatDateAdvanced.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>formatDateAdvanced</title>
<para>
Transform Time/ Date representation. Formats a date with a free form pattern. Uses SimpleDateFormat patterns.
</para>
<para>
The following pattern letters are defined (all other characters from 'A' to 'Z' and from 'a' to 'z' are reserved):
<programlisting><![CDATA[
Letter Date or Time Component Presentation Examples
G Era designator Text AD
y Year Year 1996; 96
M Month in year Month July; Jul; 07
w Week in year Number 27
W Week in month Number 2
D Day in year Number 189
d Day in month Number 10
F Day of week in month Number 2
E Day in week Text Tuesday; Tue
a Am/pm marker Text PM
H Hour in day (0-23) Number 0
k Hour in day (1-24) Number 24
K Hour in am/pm (0-11) Number 0
h Hour in am/pm (1-12) Number 12
m Minute in hour Number 30
s Second in minute Number 55
S Millisecond Number 978
z Time zone General time zone Pacific Standard Time; PST; GMT-08:00
Z Time zone RFC 822 time zone -0800
]]></programlisting>
</para>
</section>
<section version="5.0" xml:base="DateServices/getInTimezone.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>getInTimezone</title>
<para>
Changes the date/time presentation to another time zone. The date/time object itself
is not changed. For example '2012-01-05T22:45:11-06:30' is presented as '2012-01-06T07:15:11+02:00' from Helsinki time zone perspective.
</para>
<para>The web service operation "getTimezones" returns a full list of all supported time zones.</para>
</section>
<section version="5.0" xml:base="DateServices/getTimestamp.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>getTimestamp</title>
<para>Get current timestamp in milliseconds (epoch).
Sample request:
<programlisting language="xml">
<![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
]]>
</programlisting>
Sample response:
<programlisting language="xml">
<![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>]]>
</programlisting>
</para>
</section>
<section version="5.0" xml:base="DateServices/getTimestamp2.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>getTimestamp2</title>
<para>Get current timestamp in seconds (unix timestamp).
Sample request:
<programlisting language="xml">
<![CDATA[
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:getTimestamp2/>
</soapenv:Body>
</soapenv:Envelop
]]>
</programlisting>
Sample response:
<programlisting language="xml">
<![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns1:getTimestamp2Response xmlns:ns1="http://ws.xservices.brutex.net">
<ns1:return>]]><emphasis>1325488876</emphasis><![CDATA[</ns1:return>
</ns1:getTimestamp2Response>
</soap:Body>
</soap:Envelope>]]>
</programlisting>
</para>
</section>
<section version="5.0" xml:base="DateServices/getTimezones.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>getTimezones</title>
<para>
Returns all time zones this implementation (more precisely your JVM) is aware of.
You have to use the
id to refer to a time zone, the display name is specific to the localisation of your
JVM.
</para>
<para>The offset shows the time difference to Greenwich Time (GMT), also known as UTC.
The daylight saving time is not taken into account for the offset.</para>
<para>Sample response</para>
<para><programlisting><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns1:getTimezonesResponse xmlns:ns1="http://ws.xservices.brutex.net">
<ns1:return>
<ns1:timezone>
<ns1:displayname>GMT-12:00</ns1:displayname>
<ns1:id>Etc/GMT+12</ns1:id>
<ns1:offset>-43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-11:00</ns1:displayname>
<ns1:id>Etc/GMT+11</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>West Samoa Zeit</ns1:displayname>
<ns1:id>MIT</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>West Samoa Zeit</ns1:displayname>
<ns1:id>Pacific/Apia</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Samoa Normalzeit</ns1:displayname>
<ns1:id>Pacific/Midway</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Niue Zeit</ns1:displayname>
<ns1:id>Pacific/Niue</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Samoa Normalzeit</ns1:displayname>
<ns1:id>Pacific/Pago_Pago</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Samoa Normalzeit</ns1:displayname>
<ns1:id>Pacific/Samoa</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Samoa Normalzeit</ns1:displayname>
<ns1:id>US/Samoa</ns1:id>
<ns1:offset>-39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii-Aleutische Normalzeit</ns1:displayname>
<ns1:id>America/Adak</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii-Aleutische Normalzeit</ns1:displayname>
<ns1:id>America/Atka</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-10:00</ns1:displayname>
<ns1:id>Etc/GMT+10</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii Normalzeit</ns1:displayname>
<ns1:id>HST</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Tokelau Zeit</ns1:displayname>
<ns1:id>Pacific/Fakaofo</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii Normalzeit</ns1:displayname>
<ns1:id>Pacific/Honolulu</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii Normalzeit</ns1:displayname>
<ns1:id>Pacific/Johnston</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Cook-Inseln Zeit</ns1:displayname>
<ns1:id>Pacific/Rarotonga</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Tahiti Zeit</ns1:displayname>
<ns1:id>Pacific/Tahiti</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii Normalzeit</ns1:displayname>
<ns1:id>SystemV/HST10</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii-Aleutische Normalzeit</ns1:displayname>
<ns1:id>US/Aleutian</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hawaii Normalzeit</ns1:displayname>
<ns1:id>US/Hawaii</ns1:id>
<ns1:offset>-36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Marquesas Zeit</ns1:displayname>
<ns1:id>Pacific/Marquesas</ns1:id>
<ns1:offset>-34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>AST</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>America/Anchorage</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>America/Juneau</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>America/Nome</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>America/Yakutat</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-09:00</ns1:displayname>
<ns1:id>Etc/GMT+9</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Gambier Zeit</ns1:displayname>
<ns1:id>Pacific/Gambier</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>SystemV/YST9</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>SystemV/YST9YDT</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alaska Normalzeit</ns1:displayname>
<ns1:id>US/Alaska</ns1:id>
<ns1:offset>-32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>America/Dawson</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>America/Ensenada</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>America/Los_Angeles</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>America/Santa_Isabel</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>America/Tijuana</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>America/Vancouver</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>America/Whitehorse</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>Canada/Pacific</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>Canada/Yukon</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-08:00</ns1:displayname>
<ns1:id>Etc/GMT+8</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>Mexico/BajaNorte</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>PST</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>PST8PDT</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pitcairn Normalzeit</ns1:displayname>
<ns1:id>Pacific/Pitcairn</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>SystemV/PST8</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>SystemV/PST8PDT</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>US/Pacific</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pazifische Normalzeit</ns1:displayname>
<ns1:id>US/Pacific-New</ns1:id>
<ns1:offset>-28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Boise</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Cambridge_Bay</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Chihuahua</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Dawson_Creek</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Denver</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Edmonton</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Hermosillo</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Inuvik</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Mazatlan</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Ojinaga</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Phoenix</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Shiprock</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>America/Yellowknife</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>Canada/Mountain</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-07:00</ns1:displayname>
<ns1:id>Etc/GMT+7</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>MST</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>MST7MDT</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>Mexico/BajaSur</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>Navajo</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>PNT</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>SystemV/MST7</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>SystemV/MST7MDT</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>US/Arizona</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rocky Mountains Normalzeit</ns1:displayname>
<ns1:id>US/Mountain</ns1:id>
<ns1:offset>-25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Belize</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Cancun</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Chicago</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Costa_Rica</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/El_Salvador</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Guatemala</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Knox</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Tell_City</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Knox_IN</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Managua</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Matamoros</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Menominee</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Merida</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Mexico_City</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Monterrey</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/North_Dakota/Center</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/North_Dakota/New_Salem</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Rainy_River</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Rankin_Inlet</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Regina</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Swift_Current</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Tegucigalpa</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>America/Winnipeg</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>CST</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>CST6CDT</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>Canada/Central</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>Canada/East-Saskatchewan</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>Canada/Saskatchewan</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osterinseln Zeit</ns1:displayname>
<ns1:id>Chile/EasterIsland</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-06:00</ns1:displayname>
<ns1:id>Etc/GMT+6</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>Mexico/General</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osterinseln Zeit</ns1:displayname>
<ns1:id>Pacific/Easter</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Galapagos Zeit</ns1:displayname>
<ns1:id>Pacific/Galapagos</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>SystemV/CST6</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>SystemV/CST6CDT</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>US/Central</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit</ns1:displayname>
<ns1:id>US/Indiana-Starke</ns1:id>
<ns1:offset>-21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Atikokan</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Kolumbianische Zeit</ns1:displayname>
<ns1:id>America/Bogota</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Cayman</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Coral_Harbour</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Detroit</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Fort_Wayne</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Grand_Turk</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ecuadorianische Zeit</ns1:displayname>
<ns1:id>America/Guayaquil</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Kubanische Normalzeit</ns1:displayname>
<ns1:id>America/Havana</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Indianapolis</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Marengo</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Petersburg</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Vevay</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Vincennes</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Indiana/Winamac</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Indianapolis</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Iqaluit</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Jamaica</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Kentucky/Louisville</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Kentucky/Monticello</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Peruanische Zeit</ns1:displayname>
<ns1:id>America/Lima</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Louisville</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Montreal</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Nassau</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/New_York</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Nipigon</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Panama</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Pangnirtung</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Port-au-Prince</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Resolute</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Thunder_Bay</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>America/Toronto</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>Canada/Eastern</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Kubanische Normalzeit</ns1:displayname>
<ns1:id>Cuba</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>EST</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>EST5EDT</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-05:00</ns1:displayname>
<ns1:id>Etc/GMT+5</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>IET</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>Jamaica</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>SystemV/EST5</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>SystemV/EST5EDT</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>US/East-Indiana</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>US/Eastern</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit</ns1:displayname>
<ns1:id>US/Michigan</ns1:id>
<ns1:offset>-18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Venezuelanische Zeit</ns1:displayname>
<ns1:id>America/Caracas</ns1:id>
<ns1:offset>-16200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Anguilla</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Antigua</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/San_Luis</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Aruba</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Paraguay Zeit</ns1:displayname>
<ns1:id>America/Asuncion</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Barbados</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Blanc-Sablon</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Boa_Vista</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Campo_Grande</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Cuiaba</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Curacao</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Dominica</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Eirunepe</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Glace_Bay</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Goose_Bay</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Grenada</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Guadeloupe</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Guyanische Zeit</ns1:displayname>
<ns1:id>America/Guyana</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Halifax</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Bolivianische Zeit</ns1:displayname>
<ns1:id>America/La_Paz</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Manaus</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Marigot</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Martinique</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Moncton</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Montserrat</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Port_of_Spain</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Porto_Acre</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Porto_Velho</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Puerto_Rico</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>America/Rio_Branco</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chilenische Zeit</ns1:displayname>
<ns1:id>America/Santiago</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Santo_Domingo</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/St_Barthelemy</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/St_Kitts</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/St_Lucia</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/St_Thomas</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/St_Vincent</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Thule</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Tortola</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>America/Virgin</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chilenische Zeit</ns1:displayname>
<ns1:id>Antarctica/Palmer</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>Atlantic/Bermuda</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Falkland Inseln Zeit</ns1:displayname>
<ns1:id>Atlantic/Stanley</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>Brazil/Acre</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Amazonas Normalzeit</ns1:displayname>
<ns1:id>Brazil/West</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>Canada/Atlantic</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chilenische Zeit</ns1:displayname>
<ns1:id>Chile/Continental</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-04:00</ns1:displayname>
<ns1:id>Etc/GMT+4</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>PRT</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>SystemV/AST4</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Atlantik Normalzeit</ns1:displayname>
<ns1:id>SystemV/AST4ADT</ns1:id>
<ns1:offset>-14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neufundland Normalzeit</ns1:displayname>
<ns1:id>America/St_Johns</ns1:id>
<ns1:offset>-12600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neufundland Normalzeit</ns1:displayname>
<ns1:id>CNT</ns1:id>
<ns1:offset>-12600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neufundland Normalzeit</ns1:displayname>
<ns1:id>Canada/Newfoundland</ns1:id>
<ns1:offset>-12600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>AGT</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Araguaina</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Buenos_Aires</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Catamarca</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/ComodRivadavia</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Cordoba</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Jujuy</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/La_Rioja</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Mendoza</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Rio_Gallegos</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Salta</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/San_Juan</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Tucuman</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Argentina/Ushuaia</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Bahia</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Belem</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Buenos_Aires</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Catamarca</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Französisch-Guiana Zeit</ns1:displayname>
<ns1:id>America/Cayenne</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Cordoba</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Fortaleza</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westgrönländische Zeit</ns1:displayname>
<ns1:id>America/Godthab</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Jujuy</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Maceio</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Mendoza</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pierre &amp; Miquelon Normalzeit</ns1:displayname>
<ns1:id>America/Miquelon</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Uruguayische Zeit</ns1:displayname>
<ns1:id>America/Montevideo</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Suriname Zeit</ns1:displayname>
<ns1:id>America/Paramaribo</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Recife</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Argentinische Zeit</ns1:displayname>
<ns1:id>America/Rosario</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Santarem</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>America/Sao_Paulo</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Rothera Zeit</ns1:displayname>
<ns1:id>Antarctica/Rothera</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>BET</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brasilianische Zeit</ns1:displayname>
<ns1:id>Brazil/East</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-03:00</ns1:displayname>
<ns1:id>Etc/GMT+3</ns1:id>
<ns1:offset>-10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Fernando de Noronha Zeit</ns1:displayname>
<ns1:id>America/Noronha</ns1:id>
<ns1:offset>-7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>South Georgia Normalzeit</ns1:displayname>
<ns1:id>Atlantic/South_Georgia</ns1:id>
<ns1:offset>-7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Fernando de Noronha Zeit</ns1:displayname>
<ns1:id>Brazil/DeNoronha</ns1:id>
<ns1:offset>-7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-02:00</ns1:displayname>
<ns1:id>Etc/GMT+2</ns1:id>
<ns1:offset>-7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostgrönländische Zeit</ns1:displayname>
<ns1:id>America/Scoresbysund</ns1:id>
<ns1:offset>-3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Azoren Zeit</ns1:displayname>
<ns1:id>Atlantic/Azores</ns1:id>
<ns1:offset>-3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Kap Verde Zeit</ns1:displayname>
<ns1:id>Atlantic/Cape_Verde</ns1:id>
<ns1:offset>-3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT-01:00</ns1:displayname>
<ns1:id>Etc/GMT+1</ns1:id>
<ns1:offset>-3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Abidjan</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ghanaische Normalzeit</ns1:displayname>
<ns1:id>Africa/Accra</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Bamako</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Banjul</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Bissau</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Africa/Casablanca</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Conakry</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Dakar</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Africa/El_Aaiun</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Normalzeit</ns1:displayname>
<ns1:id>Africa/Freetown</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Lome</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Monrovia</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Nouakchott</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Ouagadougou</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Sao_Tome</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Africa/Timbuktu</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>America/Danmarkshavn</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Atlantic/Canary</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Atlantic/Faeroe</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Atlantic/Faroe</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Atlantic/Madeira</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Atlantic/Reykjavik</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Atlantic/St_Helena</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Eire</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+00:00</ns1:displayname>
<ns1:id>Etc/GMT</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+00:00</ns1:displayname>
<ns1:id>Etc/GMT+0</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+00:00</ns1:displayname>
<ns1:id>Etc/GMT-0</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+00:00</ns1:displayname>
<ns1:id>Etc/GMT0</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Etc/Greenwich</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>Etc/UCT</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>Etc/UTC</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>Etc/Universal</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>Etc/Zulu</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Europe/Belfast</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Europe/Dublin</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Europe/Guernsey</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Europe/Isle_of_Man</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Europe/Jersey</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Lisbon</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Europe/London</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>GB</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>GB-Eire</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>GMT</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+00:00</ns1:displayname>
<ns1:id>GMT0</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Greenwich</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Greenwich Zeit</ns1:displayname>
<ns1:id>Iceland</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>Portugal</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>UCT</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>UTC</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>Universal</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westeuropäische Zeit</ns1:displayname>
<ns1:id>WET</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koordinierte Universalzeit</ns1:displayname>
<ns1:id>Zulu</ns1:id>
<ns1:offset>0</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Africa/Algiers</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Bangui</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Brazzaville</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Africa/Ceuta</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Douala</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Kinshasa</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Lagos</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Libreville</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Luanda</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Malabo</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Ndjamena</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Niamey</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Porto-Novo</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Africa/Tunis</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Windhoek</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Arctic/Longyearbyen</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Atlantic/Jan_Mayen</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>CET</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>ECT</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+01:00</ns1:displayname>
<ns1:id>Etc/GMT-1</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Amsterdam</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Andorra</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Belgrade</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Berlin</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Bratislava</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Brussels</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Budapest</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Copenhagen</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Gibraltar</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Ljubljana</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Luxembourg</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Madrid</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Malta</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Monaco</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Oslo</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Paris</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Podgorica</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Prague</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Rome</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/San_Marino</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Sarajevo</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Skopje</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Stockholm</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Tirane</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Vaduz</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Vatican</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Vienna</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Warsaw</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Zagreb</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Zurich</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentraleuropäische Zeit</ns1:displayname>
<ns1:id>MET</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mitteleuropäische Zeit</ns1:displayname>
<ns1:id>Poland</ns1:id>
<ns1:offset>3600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>ART</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Blantyre</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Bujumbura</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Africa/Cairo</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Gaborone</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Harare</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Südafrikanische Normalzeit</ns1:displayname>
<ns1:id>Africa/Johannesburg</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Kigali</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Lubumbashi</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Lusaka</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Maputo</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Südafrikanische Normalzeit</ns1:displayname>
<ns1:id>Africa/Maseru</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Südafrikanische Normalzeit</ns1:displayname>
<ns1:id>Africa/Mbabane</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Africa/Tripoli</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Asia/Amman</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Asia/Beirut</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Asia/Damascus</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Asia/Gaza</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Asia/Istanbul</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Israelische Normalzeit</ns1:displayname>
<ns1:id>Asia/Jerusalem</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Asia/Nicosia</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Israelische Normalzeit</ns1:displayname>
<ns1:id>Asia/Tel_Aviv</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralafrikanische Zeit</ns1:displayname>
<ns1:id>CAT</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>EET</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Egypt</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+02:00</ns1:displayname>
<ns1:id>Etc/GMT-2</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Athens</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Bucharest</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Chisinau</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Helsinki</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Istanbul</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Kaliningrad</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Kiev</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Mariehamn</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Minsk</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Nicosia</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Riga</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Simferopol</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Sofia</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Tallinn</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Tiraspol</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Uzhgorod</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Vilnius</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Europe/Zaporozhye</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Israelische Normalzeit</ns1:displayname>
<ns1:id>Israel</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Libya</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Osteuropäische Zeit</ns1:displayname>
<ns1:id>Turkey</ns1:id>
<ns1:offset>7200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Addis_Ababa</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Asmara</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Asmera</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Dar_es_Salaam</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Djibouti</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Kampala</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Khartoum</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Mogadishu</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Africa/Nairobi</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Syowa Zeit</ns1:displayname>
<ns1:id>Antarctica/Syowa</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Arabische Normalzeit</ns1:displayname>
<ns1:id>Asia/Aden</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Arabische Normalzeit</ns1:displayname>
<ns1:id>Asia/Baghdad</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Arabische Normalzeit</ns1:displayname>
<ns1:id>Asia/Bahrain</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Arabische Normalzeit</ns1:displayname>
<ns1:id>Asia/Kuwait</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Arabische Normalzeit</ns1:displayname>
<ns1:id>Asia/Qatar</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Arabische Normalzeit</ns1:displayname>
<ns1:id>Asia/Riyadh</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>EAT</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+03:00</ns1:displayname>
<ns1:id>Etc/GMT-3</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Moskauer Normalzeit</ns1:displayname>
<ns1:id>Europe/Moscow</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Wolgograder Zeit</ns1:displayname>
<ns1:id>Europe/Volgograd</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Indian/Antananarivo</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Indian/Comoro</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostafrikanische Zeit</ns1:displayname>
<ns1:id>Indian/Mayotte</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Moskauer Normalzeit</ns1:displayname>
<ns1:id>W-SU</ns1:id>
<ns1:offset>10800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+03:07</ns1:displayname>
<ns1:id>Asia/Riyadh87</ns1:id>
<ns1:offset>11224</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+03:07</ns1:displayname>
<ns1:id>Asia/Riyadh88</ns1:id>
<ns1:offset>11224</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+03:07</ns1:displayname>
<ns1:id>Asia/Riyadh89</ns1:id>
<ns1:offset>11224</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+03:07</ns1:displayname>
<ns1:id>Mideast/Riyadh87</ns1:id>
<ns1:offset>11224</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+03:07</ns1:displayname>
<ns1:id>Mideast/Riyadh88</ns1:id>
<ns1:offset>11224</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+03:07</ns1:displayname>
<ns1:id>Mideast/Riyadh89</ns1:id>
<ns1:offset>11224</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Iranische Normalzeit</ns1:displayname>
<ns1:id>Asia/Tehran</ns1:id>
<ns1:offset>12600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Iranische Normalzeit</ns1:displayname>
<ns1:id>Iran</ns1:id>
<ns1:offset>12600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Aserbaidschanische Zeit</ns1:displayname>
<ns1:id>Asia/Baku</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Golf Normalzeit</ns1:displayname>
<ns1:id>Asia/Dubai</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Golf Normalzeit</ns1:displayname>
<ns1:id>Asia/Muscat</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Georgische Zeit</ns1:displayname>
<ns1:id>Asia/Tbilisi</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Armenische Zeit</ns1:displayname>
<ns1:id>Asia/Yerevan</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+04:00</ns1:displayname>
<ns1:id>Etc/GMT-4</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Samarische Zeit</ns1:displayname>
<ns1:id>Europe/Samara</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Seychellen Zeit</ns1:displayname>
<ns1:id>Indian/Mahe</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mauritius Zeit</ns1:displayname>
<ns1:id>Indian/Mauritius</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Reunion Zeit</ns1:displayname>
<ns1:id>Indian/Reunion</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Armenische Zeit</ns1:displayname>
<ns1:id>NET</ns1:id>
<ns1:offset>14400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Afghanistanische Zeit</ns1:displayname>
<ns1:id>Asia/Kabul</ns1:id>
<ns1:offset>16200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Davis Zeit</ns1:displayname>
<ns1:id>Antarctica/Davis</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Mawson Zeit</ns1:displayname>
<ns1:id>Antarctica/Mawson</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Aqtau Zeit</ns1:displayname>
<ns1:id>Asia/Aqtau</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Aqtobe Zeit</ns1:displayname>
<ns1:id>Asia/Aqtobe</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Turkmenische Zeit</ns1:displayname>
<ns1:id>Asia/Ashgabat</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Turkmenische Zeit</ns1:displayname>
<ns1:id>Asia/Ashkhabad</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Tadschikische Zeit</ns1:displayname>
<ns1:id>Asia/Dushanbe</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pakistanische Zeit</ns1:displayname>
<ns1:id>Asia/Karachi</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Oral Zeit</ns1:displayname>
<ns1:id>Asia/Oral</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Usbekistan Zeit</ns1:displayname>
<ns1:id>Asia/Samarkand</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Usbekistan Zeit</ns1:displayname>
<ns1:id>Asia/Tashkent</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Jekaterinburger Zeit</ns1:displayname>
<ns1:id>Asia/Yekaterinburg</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+05:00</ns1:displayname>
<ns1:id>Etc/GMT-5</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Französisch Süd- u. Antarktische Landzeit</ns1:displayname>
<ns1:id>Indian/Kerguelen</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Maledivische Zeit</ns1:displayname>
<ns1:id>Indian/Maldives</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Pakistanische Zeit</ns1:displayname>
<ns1:id>PLT</ns1:id>
<ns1:offset>18000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indische Normalzeit</ns1:displayname>
<ns1:id>Asia/Calcutta</ns1:id>
<ns1:offset>19800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indische Normalzeit</ns1:displayname>
<ns1:id>Asia/Colombo</ns1:id>
<ns1:offset>19800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indische Normalzeit</ns1:displayname>
<ns1:id>Asia/Kolkata</ns1:id>
<ns1:offset>19800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indische Normalzeit</ns1:displayname>
<ns1:id>IST</ns1:id>
<ns1:offset>19800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Nepalesische Zeit</ns1:displayname>
<ns1:id>Asia/Kathmandu</ns1:id>
<ns1:offset>20700</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Nepalesische Zeit</ns1:displayname>
<ns1:id>Asia/Katmandu</ns1:id>
<ns1:offset>20700</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Vostok Zeit</ns1:displayname>
<ns1:id>Antarctica/Vostok</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Alma Ata Zeit</ns1:displayname>
<ns1:id>Asia/Almaty</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Kirgisische Zeit</ns1:displayname>
<ns1:id>Asia/Bishkek</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Bangladesch Zeit</ns1:displayname>
<ns1:id>Asia/Dacca</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Bangladesch Zeit</ns1:displayname>
<ns1:id>Asia/Dhaka</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Nowosibirsker Zeit</ns1:displayname>
<ns1:id>Asia/Novokuznetsk</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Nowosibirsker Zeit</ns1:displayname>
<ns1:id>Asia/Novosibirsk</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Omsk Zeit</ns1:displayname>
<ns1:id>Asia/Omsk</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Qyzylorda Zeit</ns1:displayname>
<ns1:id>Asia/Qyzylorda</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Bhutanische Zeit</ns1:displayname>
<ns1:id>Asia/Thimbu</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Bhutanische Zeit</ns1:displayname>
<ns1:id>Asia/Thimphu</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Bangladesch Zeit</ns1:displayname>
<ns1:id>BST</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+06:00</ns1:displayname>
<ns1:id>Etc/GMT-6</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indischer Ozean Territorium Zeit</ns1:displayname>
<ns1:id>Indian/Chagos</ns1:id>
<ns1:offset>21600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Myanmar Zeit</ns1:displayname>
<ns1:id>Asia/Rangoon</ns1:id>
<ns1:offset>23400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Cocos Islands Zeit</ns1:displayname>
<ns1:id>Indian/Cocos</ns1:id>
<ns1:offset>23400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indochina Zeit</ns1:displayname>
<ns1:id>Asia/Bangkok</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indochina Zeit</ns1:displayname>
<ns1:id>Asia/Ho_Chi_Minh</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hovd Zeit</ns1:displayname>
<ns1:id>Asia/Hovd</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westindonesische Zeit</ns1:displayname>
<ns1:id>Asia/Jakarta</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Krasnojarsker Zeit</ns1:displayname>
<ns1:id>Asia/Krasnoyarsk</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indochina Zeit</ns1:displayname>
<ns1:id>Asia/Phnom_Penh</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westindonesische Zeit</ns1:displayname>
<ns1:id>Asia/Pontianak</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indochina Zeit</ns1:displayname>
<ns1:id>Asia/Saigon</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indochina Zeit</ns1:displayname>
<ns1:id>Asia/Vientiane</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+07:00</ns1:displayname>
<ns1:id>Etc/GMT-7</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Christmas Island Zeit</ns1:displayname>
<ns1:id>Indian/Christmas</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Indochina Zeit</ns1:displayname>
<ns1:id>VST</ns1:id>
<ns1:offset>25200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Brunei Zeit</ns1:displayname>
<ns1:id>Asia/Brunei</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Choibalsan Zeit</ns1:displayname>
<ns1:id>Asia/Choibalsan</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Chongqing</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Chungking</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Harbin</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hongkong Zeit</ns1:displayname>
<ns1:id>Asia/Hong_Kong</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Irkutsk Zeit</ns1:displayname>
<ns1:id>Asia/Irkutsk</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Kashgar</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Malaysische Zeit</ns1:displayname>
<ns1:id>Asia/Kuala_Lumpur</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Malaysische Zeit</ns1:displayname>
<ns1:id>Asia/Kuching</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Macao</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Macau</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralindonesische Zeit</ns1:displayname>
<ns1:id>Asia/Makassar</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Philippinische Zeit</ns1:displayname>
<ns1:id>Asia/Manila</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Shanghai</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Singapur Zeit</ns1:displayname>
<ns1:id>Asia/Singapore</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Taipei</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentralindonesische Zeit</ns1:displayname>
<ns1:id>Asia/Ujung_Pandang</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ulaanbaatar Zeit</ns1:displayname>
<ns1:id>Asia/Ulaanbaatar</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ulaanbaatar Zeit</ns1:displayname>
<ns1:id>Asia/Ulan_Bator</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>Asia/Urumqi</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westliche Normalzeit (Australien)</ns1:displayname>
<ns1:id>Australia/Perth</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Westliche Normalzeit (Australien)</ns1:displayname>
<ns1:id>Australia/West</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>CTT</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+08:00</ns1:displayname>
<ns1:id>Etc/GMT-8</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Hongkong Zeit</ns1:displayname>
<ns1:id>Hongkong</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chinesische Normalzeit</ns1:displayname>
<ns1:id>PRC</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Singapur Zeit</ns1:displayname>
<ns1:id>Singapore</ns1:id>
<ns1:offset>28800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentral-Westliche Normalzeit (Australien)</ns1:displayname>
<ns1:id>Australia/Eucla</ns1:id>
<ns1:offset>31500</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Timor-Leste Normalzeit</ns1:displayname>
<ns1:id>Asia/Dili</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ostindonesische Zeit</ns1:displayname>
<ns1:id>Asia/Jayapura</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koreanische Normalzeit</ns1:displayname>
<ns1:id>Asia/Pyongyang</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koreanische Normalzeit</ns1:displayname>
<ns1:id>Asia/Seoul</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Japanische Normalzeit</ns1:displayname>
<ns1:id>Asia/Tokyo</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Jakutsk Zeit</ns1:displayname>
<ns1:id>Asia/Yakutsk</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+09:00</ns1:displayname>
<ns1:id>Etc/GMT-9</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Japanische Normalzeit</ns1:displayname>
<ns1:id>JST</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Japanische Normalzeit</ns1:displayname>
<ns1:id>Japan</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Palau Zeit</ns1:displayname>
<ns1:id>Pacific/Palau</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Koreanische Normalzeit</ns1:displayname>
<ns1:id>ROK</ns1:id>
<ns1:offset>32400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit (Northern Territory)</ns1:displayname>
<ns1:id>ACT</ns1:id>
<ns1:offset>34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit (Südaustralien)</ns1:displayname>
<ns1:id>Australia/Adelaide</ns1:id>
<ns1:offset>34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit (Südaustralien/New South Wales)</ns1:displayname>
<ns1:id>Australia/Broken_Hill</ns1:id>
<ns1:offset>34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit (Northern Territory)</ns1:displayname>
<ns1:id>Australia/Darwin</ns1:id>
<ns1:offset>34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit (Northern Territory)</ns1:displayname>
<ns1:id>Australia/North</ns1:id>
<ns1:offset>34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit (Südaustralien)</ns1:displayname>
<ns1:id>Australia/South</ns1:id>
<ns1:offset>34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Zentrale Normalzeit (Südaustralien/New South Wales)</ns1:displayname>
<ns1:id>Australia/Yancowinna</ns1:id>
<ns1:offset>34200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (New South Wales)</ns1:displayname>
<ns1:id>AET</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Dumont-d'Urville Zeit</ns1:displayname>
<ns1:id>Antarctica/DumontDUrville</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Sakhalin Zeit</ns1:displayname>
<ns1:id>Asia/Sakhalin</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Wladiwostok Zeit</ns1:displayname>
<ns1:id>Asia/Vladivostok</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (New South Wales)</ns1:displayname>
<ns1:id>Australia/ACT</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (Queensland)</ns1:displayname>
<ns1:id>Australia/Brisbane</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (New South Wales)</ns1:displayname>
<ns1:id>Australia/Canberra</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (New South Wales)</ns1:displayname>
<ns1:id>Australia/Currie</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (Tasmanien)</ns1:displayname>
<ns1:id>Australia/Hobart</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (Queensland)</ns1:displayname>
<ns1:id>Australia/Lindeman</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (Victoria)</ns1:displayname>
<ns1:id>Australia/Melbourne</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (New South Wales)</ns1:displayname>
<ns1:id>Australia/NSW</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (Queensland)</ns1:displayname>
<ns1:id>Australia/Queensland</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (New South Wales)</ns1:displayname>
<ns1:id>Australia/Sydney</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (Tasmanien)</ns1:displayname>
<ns1:id>Australia/Tasmania</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Östliche Normalzeit (Victoria)</ns1:displayname>
<ns1:id>Australia/Victoria</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+10:00</ns1:displayname>
<ns1:id>Etc/GMT-10</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chamorro Normalzeit</ns1:displayname>
<ns1:id>Pacific/Guam</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Papua-Neuguinea Zeit</ns1:displayname>
<ns1:id>Pacific/Port_Moresby</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chamorro Normalzeit</ns1:displayname>
<ns1:id>Pacific/Saipan</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Truk Zeit</ns1:displayname>
<ns1:id>Pacific/Truk</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Truk Zeit</ns1:displayname>
<ns1:id>Pacific/Yap</ns1:id>
<ns1:offset>36000</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Lord Howe Normalzeit</ns1:displayname>
<ns1:id>Australia/LHI</ns1:id>
<ns1:offset>37800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Lord Howe Normalzeit</ns1:displayname>
<ns1:id>Australia/Lord_Howe</ns1:id>
<ns1:offset>37800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Casey Time</ns1:displayname>
<ns1:id>Antarctica/Casey</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Magadanische Zeit</ns1:displayname>
<ns1:id>Asia/Magadan</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+11:00</ns1:displayname>
<ns1:id>Etc/GMT-11</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Vanuatu Zeit</ns1:displayname>
<ns1:id>Pacific/Efate</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Salomoninseln Zeit</ns1:displayname>
<ns1:id>Pacific/Guadalcanal</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Kosrae Zeit</ns1:displayname>
<ns1:id>Pacific/Kosrae</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neukaledonische Zeit</ns1:displayname>
<ns1:id>Pacific/Noumea</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Ponape Zeit</ns1:displayname>
<ns1:id>Pacific/Ponape</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Salomoninseln Zeit</ns1:displayname>
<ns1:id>SST</ns1:id>
<ns1:offset>39600</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Norfolk Zeit</ns1:displayname>
<ns1:id>Pacific/Norfolk</ns1:id>
<ns1:offset>41400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neuseeland Normalzeit</ns1:displayname>
<ns1:id>Antarctica/McMurdo</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neuseeland Normalzeit</ns1:displayname>
<ns1:id>Antarctica/South_Pole</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Anadyr Zeit</ns1:displayname>
<ns1:id>Asia/Anadyr</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Petropawlowsk-Kamtschatkische Zeit</ns1:displayname>
<ns1:id>Asia/Kamchatka</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+12:00</ns1:displayname>
<ns1:id>Etc/GMT-12</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Marshallinseln Zeit</ns1:displayname>
<ns1:id>Kwajalein</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neuseeland Normalzeit</ns1:displayname>
<ns1:id>NST</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neuseeland Normalzeit</ns1:displayname>
<ns1:id>NZ</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Neuseeland Normalzeit</ns1:displayname>
<ns1:id>Pacific/Auckland</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Fidschi Zeit</ns1:displayname>
<ns1:id>Pacific/Fiji</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Tuvalu Zeit</ns1:displayname>
<ns1:id>Pacific/Funafuti</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Marshallinseln Zeit</ns1:displayname>
<ns1:id>Pacific/Kwajalein</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Marshallinseln Zeit</ns1:displayname>
<ns1:id>Pacific/Majuro</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Nauru Zeit</ns1:displayname>
<ns1:id>Pacific/Nauru</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Gilbert-Inseln Zeit</ns1:displayname>
<ns1:id>Pacific/Tarawa</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Wake Zeit</ns1:displayname>
<ns1:id>Pacific/Wake</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Wallis u. Futuna Zeit</ns1:displayname>
<ns1:id>Pacific/Wallis</ns1:id>
<ns1:offset>43200</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chatham Normalzeit</ns1:displayname>
<ns1:id>NZ-CHAT</ns1:id>
<ns1:offset>45900</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Chatham Normalzeit</ns1:displayname>
<ns1:id>Pacific/Chatham</ns1:id>
<ns1:offset>45900</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+13:00</ns1:displayname>
<ns1:id>Etc/GMT-13</ns1:id>
<ns1:offset>46800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Phoenix Inseln Zeit</ns1:displayname>
<ns1:id>Pacific/Enderbury</ns1:id>
<ns1:offset>46800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Tonga Zeit</ns1:displayname>
<ns1:id>Pacific/Tongatapu</ns1:id>
<ns1:offset>46800</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>GMT+14:00</ns1:displayname>
<ns1:id>Etc/GMT-14</ns1:id>
<ns1:offset>50400</ns1:offset>
</ns1:timezone>
<ns1:timezone>
<ns1:displayname>Line Inseln Zeit</ns1:displayname>
<ns1:id>Pacific/Kiritimati</ns1:id>
<ns1:offset>50400</ns1:offset>
</ns1:timezone>
</ns1:return>
</ns1:getTimezonesResponse>
</soap:Body>
</soap:Envelope>
]]></programlisting>
</para>
</section>
<section version="5.0" xml:base="DateServices/parseDate.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>parseDate</title>
<para>
Converts a string into date using pre-defined date formats
<itemizedlist>
<listitem>
<para>ISO8601 (example: "2012-01-17T23:50:00+01:00")</para>
</listitem>
<listitem>
<para>RFC822 (example: "2012-01-17T23:50:00+0100")</para>
</listitem>
<listitem>
<para>YYYYMMDD (example: "2012/01/17")</para>
</listitem>
<listitem>
<para>DDMMYYYY (example: "17.01.2012")</para>
</listitem>
</itemizedlist>
</para>
</section>
<section version="5.0" xml:base="DateServices/parseDateAdvanced.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>parseDateAdvanced</title>
<para>
Converts a string into date using any format.
</para>
</section>
</section>
<section id="executeservices" version="5.0" xml:base="ExecuteServices/ExecuteServices.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>ExecuteServices</title>
<para>The ExecuteService bundles local and remote command
execution operations. Its WSDL is located at
http://server:port/XServices/ExecuteService?wsdl</para>
<section version="5.0" xml:base="ExecuteServices/rExec.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>rExec
</title>
<para>provides remote execution facilities with authentication based on
user names and passwords.</para>
<section>
<title>Input parameters
</title>
<para/>
<table frame="all">
<title>rExec
input parameters
</title>
<tgroup cols="4">
<colspec colname="parameter" colnum="1"/>
<colspec colname="type" colnum="2"/>
<colspec colname="required" colnum="3"/>
<colspec colname="description" colnum="4"/>
<thead>
<row>
<entry>parameter</entry>
<entry>type</entry>
<entry>required</entry>
<entry>description</entry>
</row>
</thead>
<tbody>
<row>
<entry>host</entry>
<entry>HostConnection</entry>
<entry>Yes</entry>
<entry>
Host where to execute the command. See
<link linkend="hostconnection">HostConnection</link>
.
</entry>
</row>
<row>
<entry>command</entry>
<entry>String</entry>
<entry>No</entry>
<entry>Any command including arguments</entry>
</row>
<row xml:base="file:/C:/Users/brosenberger/workspace-XS/XServices/doc/entities.ent">
<entry>timeout</entry>
<entry>Long</entry>
<entry>Yes</entry>
<entry>Timeout in milliseconds. The command is forcefully terminated when timeout is reached.</entry>
</row>
</tbody>
</tgroup>
</table>
<para/>
</section>
<section>
<title>Output parameters
</title>
<section version="5.0" xml:base="./../types/ReturnCode.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>ReturnCode type</title>
<para>
The ReturnCode type is used as the generic answer type for most of the
<application class="software">BruteXservices</application>
operations.
</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/ReturnCode.html">
<classname>net.brutex.xservices.types.ReturnCode</classname>
</ulink>
.
</para>
<bridgehead renderas="sect3">Schema definition</bridgehead>
<programlisting language="xml"><![CDATA[
<xs:complexType name="ReturnCodeType">
<xs:sequence>
<xs:element name="returnCode" type="xs:int"/>
<xs:element minOccurs="0" name="stdOut" type="xs:string"/>
<xs:element minOccurs="0" name="stdErr" type="xs:string"/>
<xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="]]><link linkend="antproperty">tns:antProperty</link><![CDATA["/>
</xs:sequence>
</xs:complexType>]]>
</programlisting>
 
<bridgehead renderas="sect3">Example XML</bridgehead>
<programlisting language="xml">
&lt;ReturnCode
xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;returnCode&gt;0&lt;/returnCode&gt;
&lt;stdOut/&gt;
&lt;stdErr/&gt;
&lt;propertyList&gt;
<lineannotation>
See
<link linkend="antproperty">tns:antProperty</link>
for details about the &lt;propertyList&gt; elements.
</lineannotation>
&lt;name&gt;key1&lt;/name&gt;
&lt;value&gt;value1&lt;/value&gt;
&lt;/propertyList&gt;
&lt;propertyList&gt;
&lt;name&gt;key2&lt;/name&gt;
&lt;value&gt;value2&lt;/value&gt;
&lt;/propertyList&gt;
&lt;/ReturnCode&gt;
</programlisting>
 
</section>
</section>
</section>
<section version="5.0" xml:base="ExecuteServices/runCommand.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>runCommand</title>
<para>Run an executable with arguments on the server providing the web
service. The command is run within the environment and under the user
privileges of the user who is running the Tomcat Server.</para>
<section>
<title>Input parameters
</title>
<para/>
<table frame="all">
<title>runCommand input parameters</title>
<tgroup cols="4">
<colspec colname="parameter" colnum="1"/>
<colspec colname="type" colnum="2"/>
<colspec colname="required" colnum="3"/>
<colspec colname="description" colnum="4"/>
<thead>
<row>
<entry>parameter</entry>
<entry>type</entry>
<entry>required</entry>
<entry>description</entry>
</row>
</thead>
<tbody>
<row>
<entry>executable</entry>
<entry>String</entry>
<entry>Yes</entry>
<entry>Command to be run. The command may be specified with full
path using forward slash "/" as path separator.</entry>
</row>
<row>
<entry>argline</entry>
<entry>String</entry>
<entry>No</entry>
<entry>Any command line arguments</entry>
</row>
<row xml:base="file:/C:/Users/brosenberger/workspace-XS/XServices/doc/entities.ent">
<entry>timeout</entry>
<entry>Long</entry>
<entry>Yes</entry>
<entry>Timeout in milliseconds. The command is forcefully terminated when timeout is reached.</entry>
</row>
</tbody>
</tgroup>
</table>
<para/>
</section>
<section>
<title>Output parameters
</title>
<section version="5.0" xml:base="./../types/ReturnCode.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>ReturnCode type</title>
<para>
The ReturnCode type is used as the generic answer type for most of the
<application class="software">BruteXservices</application>
operations.
</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/ReturnCode.html">
<classname>net.brutex.xservices.types.ReturnCode</classname>
</ulink>
.
</para>
<bridgehead renderas="sect3">Schema definition</bridgehead>
<programlisting language="xml"><![CDATA[
<xs:complexType name="ReturnCodeType">
<xs:sequence>
<xs:element name="returnCode" type="xs:int"/>
<xs:element minOccurs="0" name="stdOut" type="xs:string"/>
<xs:element minOccurs="0" name="stdErr" type="xs:string"/>
<xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="]]><link linkend="antproperty">tns:antProperty</link><![CDATA["/>
</xs:sequence>
</xs:complexType>]]>
</programlisting>
 
<bridgehead renderas="sect3">Example XML</bridgehead>
<programlisting language="xml">
&lt;ReturnCode
xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;returnCode&gt;0&lt;/returnCode&gt;
&lt;stdOut/&gt;
&lt;stdErr/&gt;
&lt;propertyList&gt;
<lineannotation>
See
<link linkend="antproperty">tns:antProperty</link>
for details about the &lt;propertyList&gt; elements.
</lineannotation>
&lt;name&gt;key1&lt;/name&gt;
&lt;value&gt;value1&lt;/value&gt;
&lt;/propertyList&gt;
&lt;propertyList&gt;
&lt;name&gt;key2&lt;/name&gt;
&lt;value&gt;value2&lt;/value&gt;
&lt;/propertyList&gt;
&lt;/ReturnCode&gt;
</programlisting>
 
</section>
</section>
<section>
<para>
Sample request: Start Windows Command Interpreter and print "Hello World" to STDOUT.
<programlisting language="xml">
<![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:runCommand>
<executable>c:/windows/system32/cmd.exe</executable>
<argline>/C "echo Hallo Welt!"</argline>
<timeout>3000</timeout>
</ws:runCommand>
</soapenv:Body>
</soapenv:Envelope>]]>
</programlisting>
Sample response:
<programlisting language="xml">
<![CDATA[<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:runCommandResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return>
<returnCode>0</returnCode>
<stdOut/>
<stdErr/>
<propertyList>
<name>ExecuteService.result</name>
<value>0</value>
</propertyList>
<propertyList>
<name>ExecuteService.stdout</name>
<value>Hallo Welt!</value>
</propertyList>
<propertyList>
<name>ExecuteService.stderr</name>
<value/>
</propertyList>
</return>
</ns2:runCommandResponse>
</soap:Body>
</soap:Envelope>]]></programlisting></para></section>
<section>
<para>
Sample request: Start notepad.exe and close it after 15 seconds.
<programlisting language="xml">
<![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:runCommand>
<executable>c:/windows/system32/notepad.exe</executable>
<argline></argline>
<timeout>15000</timeout>
</ws:runCommand>
</soapenv:Body>
</soapenv:Envelope>]]></programlisting></para></section>
</section>
<section version="5.0" xml:base="ExecuteServices/runCommandAsync.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>runCommandAsync</title>
<para>Run an executable with arguments on the server providing the web
service and don't wait for the executable to finish.
The command is run within the environment and under the user
privileges of the user who is running the Tomcat Server.</para>
</section>
<section version="5.0" xml:base="ExecuteServices/runCommandAsyncWithArgs.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>runCommandAsyncWithArgs</title>
<para>Run an executable with arguments on the server providing the web
service and don't wait for the executable to finish.
The command is run within the environment and under the user
privileges of the user who is running the Tomcat Server.</para>
</section>
<section version="5.0" xml:base="ExecuteServices/runCommandWithArgs.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>runCommandWithArgs</title>
<para>Run an executable with arguments on the server providing the web
service. The command is run within the environment and under the user
privileges of the user who is running the Tomcat Server.</para>
</section>
<section version="5.0" xml:base="ExecuteServices/runCommandWithSSH.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>runCommandWithSSH</title>
<para>Executes a command through a SSH session.</para>
<section>
<title>Input parameters
</title>
<para/>
<table frame="all">
<title>runCommandWithSSH input parameters</title>
<tgroup cols="4">
<colspec colname="parameter" colnum="1"/>
<colspec colname="type" colnum="2"/>
<colspec colname="required" colnum="3"/>
<colspec colname="description" colnum="4"/>
<thead>
<row>
<entry>parameter</entry>
<entry>type</entry>
<entry>required</entry>
<entry>description</entry>
</row>
</thead>
<tbody>
<row>
<entry>host</entry>
<entry>HostConnection</entry>
<entry>Yes</entry>
<entry>
Host to connect to (see:
<link linkend="hostconnection">tns:HostConnection</link>
)
</entry>
</row>
<row>
<entry>command</entry>
<entry>String</entry>
<entry>No</entry>
<entry>The command to execute.</entry>
</row>
<row xml:base="file:/C:/Users/brosenberger/workspace-XS/XServices/doc/entities.ent">
<entry>timeout</entry>
<entry>Long</entry>
<entry>Yes</entry>
<entry>Timeout in milliseconds. The command is forcefully terminated when timeout is reached.</entry>
</row>
</tbody>
</tgroup>
</table>
<para/>
</section>
<section>
<title>Output parameters
</title>
<section version="5.0" xml:base="./../types/ReturnCode.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>ReturnCode type</title>
<para>
The ReturnCode type is used as the generic answer type for most of the
<application class="software">BruteXservices</application>
operations.
</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/ReturnCode.html">
<classname>net.brutex.xservices.types.ReturnCode</classname>
</ulink>
.
</para>
<bridgehead renderas="sect3">Schema definition</bridgehead>
<programlisting language="xml"><![CDATA[
<xs:complexType name="ReturnCodeType">
<xs:sequence>
<xs:element name="returnCode" type="xs:int"/>
<xs:element minOccurs="0" name="stdOut" type="xs:string"/>
<xs:element minOccurs="0" name="stdErr" type="xs:string"/>
<xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="]]><link linkend="antproperty">tns:antProperty</link><![CDATA["/>
</xs:sequence>
</xs:complexType>]]>
</programlisting>
 
<bridgehead renderas="sect3">Example XML</bridgehead>
<programlisting language="xml">
&lt;ReturnCode
xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;returnCode&gt;0&lt;/returnCode&gt;
&lt;stdOut/&gt;
&lt;stdErr/&gt;
&lt;propertyList&gt;
<lineannotation>
See
<link linkend="antproperty">tns:antProperty</link>
for details about the &lt;propertyList&gt; elements.
</lineannotation>
&lt;name&gt;key1&lt;/name&gt;
&lt;value&gt;value1&lt;/value&gt;
&lt;/propertyList&gt;
&lt;propertyList&gt;
&lt;name&gt;key2&lt;/name&gt;
&lt;value&gt;value2&lt;/value&gt;
&lt;/propertyList&gt;
&lt;/ReturnCode&gt;
</programlisting>
 
</section>
</section>
<section>
<title>Sample Request:</title>
<programlisting language="xml">
<![CDATA[
<ws:runCommandWithSSH>
<host>
<hostname>ssh.brutex.net</hostname>
<port>22</port>
<user>roger</user>
<password>xxx</password>
</host>
<command>ls /etc/</command>
<timeout>30000</timeout>
</ws:runCommandWithSSH>
]]></programlisting>
</section>
</section>
<section version="5.0" xml:base="ExecuteServices/runCommandWithSSHKeyAuth.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>runCommandWithSSHKeyAuth</title>
<para>Executes a command through a SSH session.</para>
</section>
<section version="5.0" xml:base="ExecuteServices/runJavaScript.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>runJavaScript</title>
<para>Execute a JavaScript and or Java program using Mozilla Rhino JIT-Compiler.</para>
</section>
<section version="5.0" xml:base="ExecuteServices/telnet.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>telnet</title>
<para>Runs a telnet session with an "expect shell" like behaviour.</para>
<section>
<title>Input parameters
</title>
<para/>
<table frame="all">
<title>telnet input parameters</title>
<tgroup cols="4">
<colspec colname="parameter" colnum="1"/>
<colspec colname="type" colnum="2"/>
<colspec colname="required" colnum="3"/>
<colspec colname="description" colnum="4"/>
<thead>
<row>
<entry>parameter</entry>
<entry>type</entry>
<entry>required</entry>
<entry>description</entry>
</row>
</thead>
<tbody>
<row>
<entry>host</entry>
<entry>HostConnection</entry>
<entry>Yes</entry>
<entry>Host to connect to (see: <link linkend="hostconnection">tns:HostConnection</link>)</entry>
</row>
<row>
<entry>prompt</entry>
<entry>String</entry>
<entry>No</entry>
<entry>The prompt string to expect after login. This is used to recognize when
the session is open.</entry>
</row>
<row>
<entry>command</entry>
<entry>String</entry>
<entry>No</entry>
<entry>The command to execute.</entry>
</row>
<row>
<entry>expect</entry>
<entry>String</entry>
<entry>No</entry>
<entry>The prompt to expect after the command has been executed successfully.</entry>
</row>
<row xml:base="file:/C:/Users/brosenberger/workspace-XS/XServices/doc/entities.ent">
<entry>timeout</entry>
<entry>Long</entry>
<entry>Yes</entry>
<entry>Timeout in milliseconds. The command is forcefully terminated when timeout is reached.</entry>
</row>
</tbody>
</tgroup>
</table>
<para/>
</section>
<section>
<title>Output parameters</title>
<section version="5.0" xml:base="./../types/ReturnCode.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>ReturnCode type</title>
<para>
The ReturnCode type is used as the generic answer type for most of the
<application class="software">BruteXservices</application>
operations.
</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/ReturnCode.html">
<classname>net.brutex.xservices.types.ReturnCode</classname>
</ulink>
.
</para>
<bridgehead renderas="sect3">Schema definition</bridgehead>
<programlisting language="xml"><![CDATA[
<xs:complexType name="ReturnCodeType">
<xs:sequence>
<xs:element name="returnCode" type="xs:int"/>
<xs:element minOccurs="0" name="stdOut" type="xs:string"/>
<xs:element minOccurs="0" name="stdErr" type="xs:string"/>
<xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="]]><link linkend="antproperty">tns:antProperty</link><![CDATA["/>
</xs:sequence>
</xs:complexType>]]>
</programlisting>
 
<bridgehead renderas="sect3">Example XML</bridgehead>
<programlisting language="xml">
&lt;ReturnCode
xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;returnCode&gt;0&lt;/returnCode&gt;
&lt;stdOut/&gt;
&lt;stdErr/&gt;
&lt;propertyList&gt;
<lineannotation>
See
<link linkend="antproperty">tns:antProperty</link>
for details about the &lt;propertyList&gt; elements.
</lineannotation>
&lt;name&gt;key1&lt;/name&gt;
&lt;value&gt;value1&lt;/value&gt;
&lt;/propertyList&gt;
&lt;propertyList&gt;
&lt;name&gt;key2&lt;/name&gt;
&lt;value&gt;value2&lt;/value&gt;
&lt;/propertyList&gt;
&lt;/ReturnCode&gt;
</programlisting>
 
</section>
</section>
<section>
<title>Sample Request:</title>
<programlisting language="xml">
<![CDATA[
<ws:telnet>
<host>
<hostname>localhost</hostname>
<port>23</port>
<user>brosenberger</user>
<password></password>
</host>
<prompt>C:\Users\brosenberger&gt;</prompt>
<command>dir c:\temp</command>
<expect>enberger&gt;</expect>
<timeout>60000</timeout>
</ws:telnet>
]]></programlisting>
</section>
</section>
</section>
<section id="fileservices" version="5.0" xml:base="FileServices/FileServices.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>FileServices</title>
<para>The FileServces bundles various file operations. Its WSDL is located at
http://server:port/XServices/FileService?wsdl</para>
<section version="5.0" xml:base="FileServices/downloadFile.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>downloadFile</title>
<para>Downloads a file as base64 encoded.
Sample request:
<programlisting language="xml"><![CDATA[
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<!-- downloads a file from the XServices server as base64 encoded -->
<ws:downloadFile>
<file>
<type>FILE</type>
<uri>c:\temp\test.docx</uri>
</file>
</ws:downloadFile>
</soapenv:Body>
</soapenv:Envelope>
]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:downloadFileResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return>
<content>ADQBNA[... snipp ...]wAApzcAAAAA</content>
<filename>test.docx</filename>
</return>
</ns2:downloadFileResponse>
</soap:Body>
</soap:Envelope>]]></programlisting>
</para>
<para>Encoding files as base64 is very memory consuming!</para>
</section>
<section version="5.0" xml:base="FileServices/encodeFile.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>encodeFile</title>
<para>Encodes a file as base64.
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:encodeFile>
<file>
<type>FILE</type>
<uri>c:\temp\test.docx</uri>
</file>
</ws:encodeFile>
</soapenv:Body>
</soapenv:Envelope>
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:encodeFileResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return>
<content>ADQBNA[... snipp ...]wAApzcAAAAA</content>
<filename>test.docx</filename>
</return>
</ns2:encodeFileResponse>
</soap:Body>
</soap:Envelope>]]></programlisting>
</para>
<para>DEPRECATED: Encoding files as base64 is very memory consuming!</para>
</section>
</section>
<section id="jobservices" version="5.0" xml:base="JobServices/JobServices.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>JobServices</title>
<para>The JobService bundles re-occuring or scheduled operations. Its WSDL is located at
http://server:port/XServices/JobService?wsdl</para>
<!--
<xi:include href="MiscServices/generateUUID.xml" />
<xi:include href="MiscServices/getHostinfo.xml" />
<xi:include href="MiscServices/sleep.xml" />
-->
</section>
<section id="mailservices" version="5.0" xml:base="MailServices/MailServices.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>MailServices</title>
<para>The MailService contains mail send and receive operations. Its WSDL is located at
http://server:port/XServices/MailService?wsdl</para>
<section version="5.0" xml:base="MailServices/sendMailSimple.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>sendMailSimple</title>
<para>Send email.</para>
</section>
</section>
<section id="miscservices" version="5.0" xml:base="MiscServices/MiscServices.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>MiscServices</title>
<para>The MiscService bundles various operations. Its WSDL is located at
http://server:port/XServices/MiscService?wsdl</para>
<section version="5.0" xml:base="MiscServices/generateUUID.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>generateUUID</title>
<para>Generates a UUID that represents a 128-bit value. This operation does not require any
input parameters. The output has the format:
<screen>
0xFFFFFFFF00000000 time_low
0x00000000FFFF0000 time_mid
0x000000000000F000 version
0x0000000000000FFF time_hi
</screen>
The least significant long consists of the following unsigned fields:
<screen>
0xC000000000000000 variant
0x3FFF000000000000 clock_seq
0x0000FFFFFFFFFFFF node
</screen>
Sample response:
<screen><![CDATA[
<soap:Envelope
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns1:generateUUIDResponse
xmlns:ns1="http://ws.xservices.brutex.net">
<ns1:return>]]><emphasis>33b9e5c8-9102-423b-88af-bbee479ebea8</emphasis><![CDATA[</ns1:return>
</ns1:generateUUIDResponse>
</soap:Body>
</soap:Envelope>
]]></screen>
</para>
</section>
<section version="5.0" xml:base="MiscServices/getHostinfo.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>getHostinfo</title>
<para>Collect information about a host address.
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:getHostinfo>
<ws:hostname>]]><emphasis>google.com</emphasis><![CDATA[</ws:hostname>
</ws:getHostinfo>
</soapenv:Body>
</soapenv:Envelope>
]]></screen>
Sample response:
<screen><![CDATA[
<soap:Envelope
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns1:getHostinfoResponse
xmlns:ns1="http://ws.xservices.brutex.net">
<ns1:return>
<ns1:domain>]]><emphasis>1e100.net</emphasis><![CDATA[</ns1:domain>
<ns1:ip4>]]><emphasis>173.194.66.105</emphasis><![CDATA[</ns1:ip4>
<ns1:ip6>]]><emphasis>::</emphasis><![CDATA[</ns1:ip6>
<ns1:name>]]><emphasis>we-in-f105</emphasis><![CDATA[</ns1:name>
</ns1:return>
</ns1:getHostinfoResponse>
</soap:Body>
</soap:Envelope>
]]></screen>
</para>
</section>
<section version="5.0" xml:base="MiscServices/sleep.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>sleep</title>
<para>Delays the response by the given minutes/ seconds. Please note,
that it may take more time to perform the server roundtrip (network
delays, parsing, etc.). Also you may have a network timeout set up in
Tomcat or your client that prevents this web service to respond
correctly.
</para>
</section>
</section>
<section id="storageservices" version="5.0" xml:base="StorageServices/StorageServices.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>StorageServices</title>
<para>The StorageService will provide get/ push operations to store and retrieve data from various backends.
This is currently under development and not yet released.
Its WSDL is located at
http://server:port/XServices/StorageService?wsdl</para>
<section version="5.0" xml:base="StorageServices/operationName.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title> ...
</title>
<para>Description here</para>
<section>
<title>Input parameters
</title>
<para/>
<table frame="all">
<title>Input parameters
</title>
<tgroup cols="4">
<colspec colname="parameter" colnum="1"/>
<colspec colname="type" colnum="2"/>
<colspec colname="required" colnum="3"/>
<colspec colname="description" colnum="4"/>
<thead>
<row>
<entry>parameter</entry>
<entry>type</entry>
<entry>required</entry>
<entry>description</entry>
</row>
</thead>
<tbody>
<row>
<entry>host</entry>
<entry>HostConnection</entry>
<entry>Yes</entry>
<entry>
Host where to execute the command. See
<link linkend="hostconnection">HostConnection</link>
.
</entry>
</row>
<row>
<entry>command</entry>
<entry>String</entry>
<entry>No</entry>
<entry>Any command including arguments</entry>
</row>
<row xml:base="file:/C:/Users/brosenberger/workspace-XS/XServices/doc/entities.ent">
<entry>timeout</entry>
<entry>Long</entry>
<entry>Yes</entry>
<entry>Timeout in milliseconds. The command is forcefully terminated when timeout is reached.</entry>
</row>
</tbody>
</tgroup>
</table>
<para/>
</section>
<section>
<title>Output parameters
</title>
<section version="5.0" xml:base="./../types/ReturnCode.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>ReturnCode type</title>
<para>
The ReturnCode type is used as the generic answer type for most of the
<application class="software">BruteXservices</application>
operations.
</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/ReturnCode.html">
<classname>net.brutex.xservices.types.ReturnCode</classname>
</ulink>
.
</para>
<bridgehead renderas="sect3">Schema definition</bridgehead>
<programlisting language="xml"><![CDATA[
<xs:complexType name="ReturnCodeType">
<xs:sequence>
<xs:element name="returnCode" type="xs:int"/>
<xs:element minOccurs="0" name="stdOut" type="xs:string"/>
<xs:element minOccurs="0" name="stdErr" type="xs:string"/>
<xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="]]><link linkend="antproperty">tns:antProperty</link><![CDATA["/>
</xs:sequence>
</xs:complexType>]]>
</programlisting>
 
<bridgehead renderas="sect3">Example XML</bridgehead>
<programlisting language="xml">
&lt;ReturnCode
xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;returnCode&gt;0&lt;/returnCode&gt;
&lt;stdOut/&gt;
&lt;stdErr/&gt;
&lt;propertyList&gt;
<lineannotation>
See
<link linkend="antproperty">tns:antProperty</link>
for details about the &lt;propertyList&gt; elements.
</lineannotation>
&lt;name&gt;key1&lt;/name&gt;
&lt;value&gt;value1&lt;/value&gt;
&lt;/propertyList&gt;
&lt;propertyList&gt;
&lt;name&gt;key2&lt;/name&gt;
&lt;value&gt;value2&lt;/value&gt;
&lt;/propertyList&gt;
&lt;/ReturnCode&gt;
</programlisting>
 
</section>
</section>
</section>
</section>
<section id="stringservices" version="5.0" xml:base="StringServices/StringServices.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>StringServices</title>
<para>The StringService provides String manipulation capabilities.
Its WSDL is located at
http://server:port/XServices/StringService?wsdl</para>
<section version="5.0" xml:base="StringServices/replaceRegEx.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>replaceRegEx</title>
<para>Search and Replace using regular expression.
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:replaceRegEx>
<string>Hallo Welt</string>
<search>W.*</search>
<replace>Brian</replace>
<regexflags>ig</regexflags>
</ws:replaceRegEx>
</soapenv:Body>
</soapenv:Envelope>
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:replaceRegExResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return>
<string>Hallo Brian</string>
<count>1</count>
</return>
</ns2:replaceRegExResponse>
</soap:Body>
</soap:Envelope>]]></programlisting>
</para>
<para>Allowed regexflags are case-insensitive (i) and global search (g).</para>
</section>
</section>
<section id="xmlservices" version="5.0" xml:base="XmlServices/XmlServices.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>XmlServices</title>
<para>The XmlService provides operations to manipulate XML structures.
Its WSDL is located at
http://server:port/XServices/XmlService?wsdl</para>
<section version="5.0" xml:base="XmlServices/insertNodes.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>insertNodes</title>
<para>Insert an xml fragment into other elements specified by an XPath expression.
This operation is namespace aware.
Sample request:
<programlisting language="xml"><![CDATA[
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:insertNodes>
<sourcexml><![CDATA[
<books>
<author>
<name>Mensiok</name>
<surname>Bello</surname>
</author>
<author>
<name>Schwab</name>
<surname>Rumsau</surname>
</author>
<author>
<name>Dollibert</name>
<surname>Rach</surname>
</author>
</books>
]]]]><![CDATA[></sourcexml>
<encoding>utf-8</encoding>
<namespaceList>
<!--Zero or more repetitions:-->
<namespace>
<prefix></prefix>
<uri></uri>
</namespace>
</namespaceList>
<xpath>/books/author</xpath>
<!--Optional:-->
<xmldata><![CDATA[<age namespace="http://btx"/>]]]]><![CDATA[></xmldata>
</ws:insertNodes>
</soapenv:Body>
</soapenv:Envelope>
]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:insertNodesResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return><![CDATA[<?xml version='1.0' encoding='UTF-8'?>
<books>
<author>
<name>Mensiok</name>
<surname>Bello</surname>
<age namespace="http://btx"/></author>
<author>
<name>Schwab</name>
<surname>Rumsau</surname>
<age namespace="http://btx"/></author>
<author>
<name>Dollibert</name>
<surname>Rach</surname>
<age namespace="http://btx"/></author>
</books>]]]]><![CDATA[></!></return>
</ns2:insertNodesResponse>
</soap:Body>
</soap:Envelope>
]]></programlisting>
</para>
</section>
<section version="5.0" xml:base="XmlServices/insertNodes2.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>insertNodes2</title>
<para>Insert an xml fragment into xml resource (i.e. file, URL) specified by an XPath expression.
This operation is namespace aware.
Sample request:
<programlisting language="xml"><![CDATA[
...]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
...]]></programlisting>
</para>
</section>
<section version="5.0" xml:base="XmlServices/replaceNodes.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>replaceNodes</title>
<para>Replace an xml fragment with another xml fragment. This operation is namespace aware.
Sample request:
<programlisting language="xml"><![CDATA[
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:replaceNodes>
<sourcexml><![CDATA[
<books>
<author>
<name>Mensiok</name>
<surname>Bello</surname>
</author>
<author>
<name>Schwab</name>
<surname>Rumsau</surname>
</author>
<author>
<name>Dollibert</name>
<surname>Rach</surname>
</author>
</books>
]]]]><![CDATA[>
</sourcexml>
<encoding>utf-8</encoding>
<namespaceList>
<!--Zero or more repetitions:-->
<namespace>
<prefix></prefix>
<uri></uri>
</namespace>
</namespaceList>
<xpath>*/name[text()='Schwab']</xpath>
<!--Optional:-->
<xmldata><![CDATA[<name>Meyer</name><age>45</age><!--edited here-->]]]]><![CDATA[></xmldata>
</ws:replaceNodes>
</soapenv:Body>
</soapenv:Envelope>
]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:replaceNodesResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return><![CDATA[<?xml version='1.0' encoding='UTF-8'?>
<books>
<author>
<name>Mensiok</name>
<surname>Bello</surname>
</author>
<author>
<name>Meyer</name><age>45</age><!--edited here-->
<surname>Rumsau</surname>
</author>
<author>
<name>Dollibert</name>
<surname>Rach</surname>
</author>
</books>]]]]><![CDATA[></return>
</ns2:replaceNodesResponse>
</soap:Body>
</soap:Envelope>]]></programlisting>
</para>
</section>
<section version="5.0" xml:base="XmlServices/replaceNodes2.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>replaceNodes2</title>
<para>Replace an xml fragment with another xml fragment read from a resource (i.e. file, URL). This operation is namespace aware.
Sample request:
<programlisting language="xml">
...
</programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
...]]></programlisting>
</para>
</section>
<section version="5.0" xml:base="XmlServices/selectXPath.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>selectXPath</title>
<para>Selects xmlfragements, nodes, attribute or text from xml data using an XPath expression.
This function requires namespaces to be declared correctly.</para>
<para>
Sample request:
<programlisting language="xml"><![CDATA[
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:selectXPath>
<sourcexml>
<![CDATA[<notes xmlns="http://demo.brutex.net" xmlns:bx="http://bx.brutex.net">
<bx:note>
<to>Lena</to>
<from>Jani</from>
<heading>Reminder ABC</heading>
<body>Don't forget me this weekend!</body>
</bx:note>
<note>
<to>John</to>
<from>Lena</from>
<heading>Call Mr. ABC</heading>
<body>Please call back</body>
</note>
<bx:note>
<to>Brian</to>
<from>JJohn</from>
<heading>Reminder XServices</heading>
<body>How to use selectXPath?</body>
</bx:note>
</notes>
]]]]><![CDATA[>
</sourcexml>
<encoding>utf-8</encoding>
<namespaceList>
<namespace>
<prefix>ns</prefix>
<uri>http://demo.brutex.net</uri>
</namespace>
<namespace>
<prefix>bx</prefix>
<uri>http://bx.brutex.net</uri>
</namespace>
</namespaceList>
<xpath>*/bx:note/ns:heading/text()</xpath>
</ws:selectXPath>
</soapenv:Body>
</soapenv:Envelope>
]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:selectXPathResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return>
<stringlist>Reminder ABC</stringlist>
<stringlist>Reminder XServices</stringlist>
<size>2</size>
</return>
</ns2:selectXPathResponse>
</soap:Body>
</soap:Envelope>
]]></programlisting>
</para>
</section>
<section version="5.0" xml:base="XmlServices/setAttribute.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>setAttribute</title>
<para>Set an attribute into elements matched by an XPath expression.</para>
<para>
Sample request:
<programlisting language="xml"><![CDATA[
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:setAttribute>
<sourcexml>
<![CDATA[<notes xmlns="http://demo.brutex.net">
<note>
<to>Lena</to>
<from>Jani</from>
<heading>Reminder ABC</heading>
<body>Don't forget me this weekend!</body>
</note>
<note>
<to>John</to>
<from>Lena</from>
<heading>Call Mr. ABC</heading>
<body>Please call back</body>
</note>
</notes>
]]]]><![CDATA[></sourcexml>
<encoding>utf-8</encoding>
<!--Optional:-->
<namespaceList>
<!--Zero or more repetitions:-->
<namespace>
<prefix>bx</prefix>
<uri>http://demo.brutex.net</uri>
</namespace>
</namespaceList>
<xpath>*/bx:note</xpath>
<attribute>
<name>priority</name>
<!--Optional:-->
<value>high</value>
</attribute>
</ws:setAttribute>
</soapenv:Body>
</soapenv:Envelope>
]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:setAttributeResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return><![CDATA[<?xml version='1.0' encoding='UTF-8'?>
<notes xmlns="http://demo.brutex.net">
<note xmlns:axis2ns16="http://demo.brutex.net" axis2ns16:priority="high">
<to>Lena</to>
<from>Jani</from>
<heading>Reminder ABC</heading>
<body>Don't forget me this weekend!</body>
</note>
<note xmlns:axis2ns17="http://demo.brutex.net" axis2ns17:priority="high">
<to>John</to>
<from>Lena</from>
<heading>Call Mr. ABC</heading>
<body>Please call back</body>
</note>
</notes>]]]]><![CDATA[></return>
</ns2:setAttributeResponse>
</soap:Body>
</soap:Envelope>
]]></programlisting>
</para>
</section>
<section version="5.0" xml:base="XmlServices/wrapInCDATA.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>wrapInCDATA</title>
<para>Simply wraps any data fragment into &lt;![CDATA[ ... ]]&gt; section. This can be useful if you
want to preserve indentation or line breaks.
</para>
<para>
Sample request:
<programlisting language="xml"><![CDATA[
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:wrapInCDATA>
<data>Hello World, here is some &lt;xml&gt; data</data>
</ws:wrapInCDATA>
</soapenv:Body>
</soapenv:Envelope>
]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:wrapInCDATAResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return>&lt;![CDATA[Hello World, here is some &lt;xml> data]]&gt;</return>
</ns2:wrapInCDATAResponse>
</soap:Body>
</soap:Envelope>
]]></programlisting>
</para>
</section>
</section>
</chapter>
 
<chapter id="restservices">
<beginpage/>
<title>Available RESTful Services</title>
<para>List of available web services and their operations.</para>
<section id="cvsinfoservices" version="5.0" xml:base="CVSInfoService/CVSInfoService.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>CVSInfoService</title>
<para>RESTful service to query a CVS repository, search files and content. Includes caching mechanism.
</para>
<para>Endpoint address: http://localhost:8080/XServices/cvsinfo</para>
<para>WADL : http://localhost:8080/XServices/cvsinfo?_wadl</para>
 
 
 
<!--
<xi:include href="./dateAdd.xml" />
 
-->
</section>
<section id="fileinfoservices" version="5.0" xml:base="FileInfoService/FileInfoService.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>FileInfoService</title>
<para>The FileInfoService allows listing/ searching/ browsing and download of files and directories. Includes caching mechanism.
</para>
<para>Endpoint address: http://localhost:8080/XServices/fileinfo</para>
<para>WADL : http://localhost:8080/XServices/fileinfo?_wadl</para>
<!--
<xi:include href="./dateAdd.xml" />
 
-->
</section>
 
</chapter>
<chapter id="xmltypes">
<beginpage/>
<title>XML Types</title>
<para>This chapter bundles the documentation for common XML types used
by XServices web service.</para>
<section version="5.0" xml:base="types/Types.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<!-- Sort alphabetically -->
<section id="antproperty" xml:base="types/AntProperty.xml">
<title>AntProperty type</title>
<para>The AntProperty type defines a list of key/value pairs.</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/AntProperty.html">
<classname>net.brutex.xservices.types.AntProperty</classname>
</ulink>
.
</para>
 
<programlisting language="xml"><![CDATA[
<xs:complexType name="antProperty">
<xs:sequence>
<xs:element name="name" type="xs:string"/>
<xs:element name="value" type="xs:string"/>
</xs:sequence>
</xs:complexType>]]>
</programlisting>
<programlisting language="xml"><![CDATA[
<AntProperty>
<name>key2</name>
<value>value2</value>
</AntProperty>]]>
</programlisting>
</section>
<section version="5.0" xml:base="types/DateInfoType.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>DateInfoType type</title>
<para>Different presentation of a date time value.</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/DateInfoType.html">
<classname>net.brutex.xservices.types.DateInfoType</classname>
</ulink>
.
</para>
</section>
<section xml:base="types/FileResource.xml">
<title>FileResource type</title>
<para>The FileResource type defines an URI to a file with optional on-the-fly decompression.</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/FileResource.html">
<classname>net.brutex.xservices.types.FileResource</classname>
</ulink>
.
</para>
 
<programlisting language="xml"><![CDATA[
<xs:complexType name="FileResourceType">
<xs:sequence>
<xs:element default="FILE" name="type" type="tns:type"/>
<xs:element name="uri" type="xs:string"/>
</xs:sequence>
</xs:complexType>]]>
</programlisting>
<para>Available types:</para>
<para>FILE: URI points to a local file resource. Examples: c:\temp\something.txt, c:/dir/another.file, /home/brian/file</para>
<para>URL: File from URL (http, https, ftp, ...). Example: http://brutex.net/file.pdf</para>
<para>GZIP and BZIP2: File from a local file system with on-the-fly decompression.</para>
<programlisting language="xml"><![CDATA[
<resource>
<type>FILE</type>
<uri>c:\temp\xservices.war</uri>
</resource>]]>
</programlisting>
</section>
<section id="hostconnection" version="5.0" xml:base="types/HostConnection.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>HostConnection type</title>
<para>The HostConnection type identifies a server resource and login
credentials.</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/HostConnection.html">
<classname>net.brutex.xservices.types.HostConnection</classname>
</ulink>
.
</para>
<bridgehead renderas="sect3">Schema definition</bridgehead>
<programlisting language="xml"><![CDATA[
<xs:complexType name="connection">
<xs:sequence>
<xs:element name="hostname" type="xs:string"/>
<xs:element name="port" type="xs:int"/>
<xs:element minOccurs="0" name="user" type="xs:string"/>
<xs:element minOccurs="0" name="password" type="xs:string"/>
</xs:sequence>
</xs:complexType>
]]>
</programlisting>
<bridgehead renderas="sect3">Example XML</bridgehead>
<programlisting language="xml"><![CDATA[
<host>
<hostname>server.brutex.net</hostname>
<port>512</port> <!-- default rExec port -->
<user>brian</user>
<!--Optional:-->
<password>somepass</password>
</host>
]]>
</programlisting>
</section>
<section id="patternelement" version="5.0" xml:base="types/PatternElement.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>PatternElement type</title>
<para>The PatternElement type defines single string pattern for file/
directory matching.</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/PatternElement.html">
<classname>net.brutex.xservices.types.PatternElement</classname>
</ulink>
.
</para>
<para>
These patterns look exactly like those used in Apache Ant
<ulink url="http://ant.apache.org/manual/dirtasks.html#patterns">Patterns</ulink>.
The '*' matches zero or more characters and the
'?' will match a single character.
Both symbols can be combined in one pattern. The '**'
symbol can be used to match any directory deepth.
</para>
<para>Some example patterns:</para>
<para>
<parameter>**/mydir/**</parameter>
</para>
<para>Match all file that are located in any directory that has
"mydir" string in its pathname. Also applies to files with
"mydir" in their name.</para>
<para>
<parameter>/mydir/</parameter>
</para>
<para>The
parser will automatically append an '**' symbol, thus the
resulting pattern is
<parameter>/mydir/**</parameter>.
All files below the "/mydir/" directory (including its
sub-directories will be chosen.
</para>
<note>
<para>The pattern is OS independent. You should always use
"/" as path separator, even on windows based systems.
</para>
</note>
<bridgehead renderas="sect3">Schema definition</bridgehead>
<programlisting language="xml"><![CDATA[<xs:simpleType name="patternElement">
<xs:restriction base="xs:string"/>
</xs:simpleType>]]></programlisting>
 
<bridgehead renderas="sect3">Example XML</bridgehead>
<programlisting language="xml"><![CDATA[<PatternElement>**/*</PatternElement>]]></programlisting>
 
</section>
<section id="patternsettype" version="5.0" xml:base="types/PatternSetType.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>PatternSetType type</title>
<para>The PatternSetType exposes various filters/ selectors for the
selection of resources (files).</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/PatternSetType.html">
<classname>net.brutex.xservices.types.PatternSetType</classname>
</ulink>
.
</para>
<bridgehead renderas="sect3">Schema definition</bridgehead>
<programlisting language="xml"><![CDATA[
<xs:complexType name="patternSetType">
<xs:sequence>
<xs:element default="**/*" maxOccurs="unbounded" minOccurs="0" name="include" type="]]><link linkend="patternelement">tns:patternElement</link><![CDATA["/>
<xs:element maxOccurs="unbounded" minOccurs="0" name="exclude" type="]]><link linkend="patternelement">tns:patternElement</link><![CDATA["/>
<xs:element minOccurs="0" name="selector" nillable="true" type="]]><link linkend="selectortype">tns:selectorType</link><![CDATA["/>
</xs:sequence>
</xs:complexType>]]>
</programlisting>
<bridgehead renderas="sect3">Example XML</bridgehead>
<programlisting language="xml"><![CDATA[
tbd.]]>
</programlisting>
</section>
<section version="5.0" xml:base="types/ReturnCode.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>ReturnCode type</title>
<para>
The ReturnCode type is used as the generic answer type for most of the
<application class="software">BruteXservices</application>
operations.
</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/ReturnCode.html">
<classname>net.brutex.xservices.types.ReturnCode</classname>
</ulink>
.
</para>
<bridgehead renderas="sect3">Schema definition</bridgehead>
<programlisting language="xml"><![CDATA[
<xs:complexType name="ReturnCodeType">
<xs:sequence>
<xs:element name="returnCode" type="xs:int"/>
<xs:element minOccurs="0" name="stdOut" type="xs:string"/>
<xs:element minOccurs="0" name="stdErr" type="xs:string"/>
<xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="]]><link linkend="antproperty">tns:antProperty</link><![CDATA["/>
</xs:sequence>
</xs:complexType>]]>
</programlisting>
 
<bridgehead renderas="sect3">Example XML</bridgehead>
<programlisting language="xml">
&lt;ReturnCode
xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;returnCode&gt;0&lt;/returnCode&gt;
&lt;stdOut/&gt;
&lt;stdErr/&gt;
&lt;propertyList&gt;
<lineannotation>
See
<link linkend="antproperty">tns:antProperty</link>
for details about the &lt;propertyList&gt; elements.
</lineannotation>
&lt;name&gt;key1&lt;/name&gt;
&lt;value&gt;value1&lt;/value&gt;
&lt;/propertyList&gt;
&lt;propertyList&gt;
&lt;name&gt;key2&lt;/name&gt;
&lt;value&gt;value2&lt;/value&gt;
&lt;/propertyList&gt;
&lt;/ReturnCode&gt;
</programlisting>
 
</section>
<section id="selectortype" version="5.0" xml:base="types/SelectorType.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>SelectorType type</title>
<para>The SelectorType exposes various selectors for the selection of resources (files).</para>
<para>The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/SelectorType.html">
<classname>net.brutex.xservices.types.SelectorType</classname></ulink>.</para>
<bridgehead renderas="sect3">Schema definition</bridgehead>
<programlisting language="xml"><![CDATA[
<xs:complexType abstract="true" name="selectorType">
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="contains" nillable="true" type="tns:containsSelectorType"/>
</xs:sequence>
</xs:complexType>]]>
</programlisting>
<bridgehead renderas="sect3">Example XML</bridgehead>
<programlisting language="xml"><![CDATA[
tbd.]]>
</programlisting>
</section>
</section>
</chapter>
</book>
/xservices/branches/xservices-jre7/doc/BruteXServices_User_Guide.xml
0,0 → 1,85
<?xml version='1.0'?>
<!DOCTYPE book [
<!ENTITY % myent SYSTEM "entities.ent">
%myent;
]>
<book xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude">
<title>Brutex XServices Documentation</title>
<bookinfo>
<date>June 2014</date>
<author>
<firstname>Brian</firstname>
<surname>Rosenberger</surname>
<email>bru@brutex.de</email>
</author>
<corpname>Brutex Network</corpname>
<copyright>
<year>2014</year>
</copyright>
<legalnotice>
<para>
The copyright holders make no representation about the suitability
of this document for any purpose. It is provided
<emphasis>as is</emphasis>
without expressed or implied warranty.
</para>
</legalnotice>
<legalnotice>
<para>
<literallayout>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
</literallayout></para>
<para>Apache Tomcat and Apache Ant are trademarks of the Apache
Software Foundation.</para>
</legalnotice>
<xi:include href="common/abstract.xml" />
</bookinfo>
<chapter id="installation">
<beginpage />
<title>Getting started</title>
<para>This chapter describes the installation process.</para>
<xi:include href="common/installation.xml" />
</chapter>
<chapter id="soapservices">
<beginpage />
<title>Available SOAP Services</title>
<para>List of available web services and their operations.</para>
<xi:include href="ArchiveServices/ArchiveServices.xml" />
<xi:include href="DateServices/DateServices.xml" />
<xi:include href="ExecuteServices/ExecuteServices.xml" />
<xi:include href="FileServices/FileServices.xml" />
<xi:include href="JobServices/JobServices.xml" />
<xi:include href="MailServices/MailServices.xml" />
<xi:include href="MiscServices/MiscServices.xml" />
<xi:include href="StorageServices/StorageServices.xml" />
<xi:include href="StringServices/StringServices.xml" />
<xi:include href="XmlServices/XmlServices.xml" />
</chapter>
 
<chapter id="restservices">
<beginpage />
<title>Available RESTful Services</title>
<para>List of available web services and their operations.</para>
<xi:include href="CVSInfoService/CVSInfoService.xml" />
<xi:include href="FileInfoService/FileInfoService.xml" />
 
</chapter>
<chapter id="xmltypes">
<beginpage />
<title>XML Types</title>
<para>This chapter bundles the documentation for common XML types used
by XServices web service.</para>
<xi:include href="types/Types.xml" />
</chapter>
</book>
/xservices/branches/xservices-jre7/doc/CVSInfoService/CVSInfoService.xml
0,0 → 1,17
<?xml version="1.0" encoding="utf-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude" id="cvsinfoservices">
<title>CVSInfoService</title>
<para>RESTful service to query a CVS repository, search files and content. Includes caching mechanism.
</para>
<para>Endpoint address: http://localhost:8080/XServices/cvsinfo</para>
<para>WADL : http://localhost:8080/XServices/cvsinfo?_wadl</para>
 
 
 
<!--
<xi:include href="./dateAdd.xml" />
 
-->
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/common/installation.xml
0,0 → 1,60
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:xlink="http://www.w3.org/1999/xlink">
 
 
<title>Installation</title>
<para>As of February 2013, XServices require Java 7. Older builds run against Java 5.</para>
<para>Apache Tomcat 7</para>
<para>tbd.</para>
<para>In short: Deploy .WAR file to Apache Tomcat</para>
<section>
<title>Securing with Basic Authentication</title>
<para>There is a quick guide explaining Basic Authentication for Tomcat here: <link
xlink:href="http://oreilly.com/pub/a/java/archive/tomcat-tips.html?page=1">
http://oreilly.com/pub/a/java/archive/tomcat-tips.html?page=1</link>
</para>
<para>
</para>
</section>
<section>
<title>Limit access by IP address</title>
<para>Sometimes you&apos;ll only want to restrict access to to
only
specified host names or IP addresses. This way, only
clients at
those specified addresses can use the web services.
Tomcat provides
two configuration values for that:
RemoteHostValve and
RemoteAddrValve.</para>
<para>These Valves allow you to filter requests by host name or
by IP
address, and to allow or deny hosts that match. The
example below
restricts access to the ArchiveService from any
machine that is not
the local host.</para>
<programlisting language="xml">&lt;Context
path=&quot;/XService/ArchiveService&quot;
...&gt; &lt;Valve
className=&quot;org.apache.catalina.valves.RemoteAddrValve&quot;
allow=&quot;127.0.0.1&quot; deny=&quot;&quot;/&gt; &lt;/Context&gt;
</programlisting>
<para>If no allow pattern is given, then patterns that match
the deny
attribute patterns will be rejected, and all others
will be allowed.
Similarly, if no deny pattern is given,
patterns that match the
allow attribute will be allowed, and
all others will be denied.
</para>
<para>The &lt;context&gt; element must be placed into the
server.xml
file (into &lt;engine&gt;&lt;host&gt;).</para>
</section>
 
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/common/abstract.xml
0,0 → 1,25
<?xml version="1.0" encoding="UTF-8"?>
<abstract>
<title>Abstract</title>
<para>In complex IT environments it is often necessary to integrate
different information systems with each other, exchange data between
software tools and automate actions based on events arising from user
interaction. Web Services is a popular way to make remote functions
available to a broad range of clients. A WebService is independent
from platforms and programming languages. XML Messages are exchanged
through common protocols like TCP/IP or SMTP, processed and returned
(request/ response paradigm).</para>
<para>Because of their nature, WebServices are a great technology to
overcome system boundaries and to "orchestrate" your IT environment.
They make up the basis for SOA and are the pieces that assemble
automated business processes.</para>
<para>XServices is a collection of pre-build WebServices with the
intention to avoid duplicate work and "re-inventing the wheel". The
historical base for XServices is the 'XBridgeNG' software, which
provided a set of Apache Ant Tasks with quite the same intention. The
available WebService operations are most likely the "most wanted"
ones, some of them for sure are "must have". This collection may
overlap with other libraries. In summary the current version contains
8 WebServices with over 50 operations.</para>
</abstract>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/html/BruteXServices_User_Guide.fo
0,0 → 1,4908
<?xml version="1.0" encoding="UTF-8"?><fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" font-family="serif,Symbol,ZapfDingbats" font-size="10pt" text-align="justify" line-height="normal" font-selection-strategy="character-by-character" line-height-shift-adjustment="disregard-shifts" writing-mode="lr-tb" language="en"><fo:layout-master-set><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="blank" margin-left="1in" margin-right="1in"><fo:region-body margin-top="0.5in" margin-bottom="0.5in" display-align="center" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-blank"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-blank"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-blank" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-blank" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="titlepage-first" margin-left="1in" margin-right="1in"><fo:region-body column-count="1" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-first"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-first"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-first" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-first" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="titlepage-odd" margin-left="1in" margin-right="1in"><fo:region-body column-count="1" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-odd"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-odd"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-odd" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-odd" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="titlepage-even" margin-left="1in" margin-right="1in"><fo:region-body column-count="1" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-even"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-even"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-even" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-even" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="lot-first" margin-left="1in" margin-right="1in"><fo:region-body column-count="1" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-first"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-first"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-first" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-first" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="lot-odd" margin-left="1in" margin-right="1in"><fo:region-body column-count="1" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-odd"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-odd"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-odd" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-odd" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="lot-even" margin-left="1in" margin-right="1in"><fo:region-body column-count="1" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-even"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-even"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-even" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-even" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="front-first" margin-left="1in" margin-right="1in"><fo:region-body column-count="1" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-first"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-first"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-first" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-first" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="front-odd" margin-left="1in" margin-right="1in"><fo:region-body column-count="1" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-odd"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-odd"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-odd" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-odd" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="front-even" margin-left="1in" margin-right="1in"><fo:region-body column-count="1" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-even"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-even"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-even" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-even" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="body-first" margin-left="1in" margin-right="1in"><fo:region-body column-count="1" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-first"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-first"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-first" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-first" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="body-odd" margin-left="1in" margin-right="1in"><fo:region-body column-count="1" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-odd"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-odd"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-odd" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-odd" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="body-even" margin-left="1in" margin-right="1in"><fo:region-body column-count="1" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-even"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-even"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-even" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-even" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="back-first" margin-left="1in" margin-right="1in"><fo:region-body column-count="1" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-first"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-first"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-first" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-first" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="back-odd" margin-left="1in" margin-right="1in"><fo:region-body column-count="1" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-odd"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-odd"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-odd" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-odd" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="back-even" margin-left="1in" margin-right="1in"><fo:region-body column-count="1" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-even"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-even"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-even" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-even" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="index-first" margin-left="1in" margin-right="1in"><fo:region-body column-count="2" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-first"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-first"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-first" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-first" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="index-odd" margin-left="1in" margin-right="1in"><fo:region-body column-count="2" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-odd"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-odd"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-odd" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-odd" precedence="false" extent="0in"/></fo:simple-page-master><fo:simple-page-master margin-bottom="0.5in" margin-top="0.5in" page-height="297mm" page-width="210mm" master-name="index-even" margin-left="1in" margin-right="1in"><fo:region-body column-count="2" column-gap="12pt" margin-top="0.5in" margin-bottom="0.5in" margin-left="0in" margin-right="0in"/><fo:region-before display-align="before" precedence="true" extent="0.4in" region-name="xsl-region-before-even"/><fo:region-after display-align="after" precedence="true" extent="0.4in" region-name="xsl-region-after-even"/><fo:region-start border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-outer-even" precedence="false" extent="0in"/><fo:region-end border-width="0" padding="0" reference-orientation="90" region-name="xsl-region-inner-even" precedence="false" extent="0in"/></fo:simple-page-master><fo:page-sequence-master master-name="titlepage"><fo:repeatable-page-master-alternatives><fo:conditional-page-master-reference blank-or-not-blank="blank" master-reference="blank"/><fo:conditional-page-master-reference page-position="first" master-reference="titlepage-first"/><fo:conditional-page-master-reference odd-or-even="odd" master-reference="titlepage-odd"/><fo:conditional-page-master-reference odd-or-even="even" master-reference="titlepage-odd"/></fo:repeatable-page-master-alternatives></fo:page-sequence-master><fo:page-sequence-master master-name="lot"><fo:repeatable-page-master-alternatives><fo:conditional-page-master-reference blank-or-not-blank="blank" master-reference="blank"/><fo:conditional-page-master-reference page-position="first" master-reference="lot-first"/><fo:conditional-page-master-reference odd-or-even="odd" master-reference="lot-odd"/><fo:conditional-page-master-reference odd-or-even="even" master-reference="lot-odd"/></fo:repeatable-page-master-alternatives></fo:page-sequence-master><fo:page-sequence-master master-name="front"><fo:repeatable-page-master-alternatives><fo:conditional-page-master-reference blank-or-not-blank="blank" master-reference="blank"/><fo:conditional-page-master-reference page-position="first" master-reference="front-first"/><fo:conditional-page-master-reference odd-or-even="odd" master-reference="front-odd"/><fo:conditional-page-master-reference odd-or-even="even" master-reference="front-odd"/></fo:repeatable-page-master-alternatives></fo:page-sequence-master><fo:page-sequence-master master-name="body"><fo:repeatable-page-master-alternatives><fo:conditional-page-master-reference blank-or-not-blank="blank" master-reference="blank"/><fo:conditional-page-master-reference page-position="first" master-reference="body-first"/><fo:conditional-page-master-reference odd-or-even="odd" master-reference="body-odd"/><fo:conditional-page-master-reference odd-or-even="even" master-reference="body-odd"/></fo:repeatable-page-master-alternatives></fo:page-sequence-master><fo:page-sequence-master master-name="back"><fo:repeatable-page-master-alternatives><fo:conditional-page-master-reference blank-or-not-blank="blank" master-reference="blank"/><fo:conditional-page-master-reference page-position="first" master-reference="back-first"/><fo:conditional-page-master-reference odd-or-even="odd" master-reference="back-odd"/><fo:conditional-page-master-reference odd-or-even="even" master-reference="back-odd"/></fo:repeatable-page-master-alternatives></fo:page-sequence-master><fo:page-sequence-master master-name="index"><fo:repeatable-page-master-alternatives><fo:conditional-page-master-reference blank-or-not-blank="blank" master-reference="blank"/><fo:conditional-page-master-reference page-position="first" master-reference="index-first"/><fo:conditional-page-master-reference odd-or-even="odd" master-reference="index-odd"/><fo:conditional-page-master-reference odd-or-even="even" master-reference="index-odd"/></fo:repeatable-page-master-alternatives></fo:page-sequence-master></fo:layout-master-set><fo:declarations xmlns:fox="http://xmlgraphics.apache.org/fop/extensions"><x:xmpmeta xmlns:x="adobe:ns:meta/"><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><rdf:Description xmlns:dc="http://purl.org/dc/elements/1.1/" rdf:about=""><dc:title>Brutex XServices Documentation</dc:title><dc:creator>Brian Rosenberger</dc:creator></rdf:Description><rdf:Description xmlns:pdf="http://ns.adobe.com/pdf/1.3/" rdf:about=""/><rdf:Description xmlns:xmp="http://ns.adobe.com/xap/1.0/" rdf:about=""><xmp:CreatorTool>DocBook XSL Stylesheets with Apache FOP</xmp:CreatorTool></rdf:Description></rdf:RDF></x:xmpmeta></fo:declarations><fo:bookmark-tree><fo:bookmark xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2000B" starting-state="hide"><fo:bookmark-title>Brutex XServices Documentation</fo:bookmark-title></fo:bookmark><fo:bookmark xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="toc...N2000B"><fo:bookmark-title>Table of Contents</fo:bookmark-title></fo:bookmark><fo:bookmark xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="installation" starting-state="hide"><fo:bookmark-title>Chapter 1. Getting started</fo:bookmark-title><fo:bookmark internal-destination="N2005C" starting-state="hide"><fo:bookmark-title>1.1. Installation</fo:bookmark-title><fo:bookmark internal-destination="N2006E" starting-state="hide"><fo:bookmark-title>1.1.1. Securing with Basic Authentication</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N2007E" starting-state="hide"><fo:bookmark-title>1.1.2. Limit access to</fo:bookmark-title></fo:bookmark></fo:bookmark></fo:bookmark><fo:bookmark xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="soapservices" starting-state="hide"><fo:bookmark-title>Chapter 2. Available SOAP Services</fo:bookmark-title><fo:bookmark internal-destination="archiveservices" starting-state="hide"><fo:bookmark-title>2.1. ArchiveServices</fo:bookmark-title><fo:bookmark internal-destination="N200AB" starting-state="hide"><fo:bookmark-title>2.1.1. gzip</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N200BE" starting-state="hide"><fo:bookmark-title>2.1.2. bzip2FromArchive</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N200D1" starting-state="hide"><fo:bookmark-title>2.1.3. bzip2</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N200E4" starting-state="hide"><fo:bookmark-title>2.1.4. gzipFromArchive</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N200F7" starting-state="hide"><fo:bookmark-title>2.1.5. gunzip</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N2010A" starting-state="hide"><fo:bookmark-title>2.1.6. bunzip2</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N2011D" starting-state="hide"><fo:bookmark-title>2.1.7. gunzipFromURL</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20130" starting-state="hide"><fo:bookmark-title>2.1.8. bunzip2FromURL</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20143" starting-state="hide"><fo:bookmark-title>2.1.9. zip</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20156" starting-state="hide"><fo:bookmark-title>2.1.10. zipFromArchive</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20169" starting-state="hide"><fo:bookmark-title>2.1.11. unzip</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N2017C" starting-state="hide"><fo:bookmark-title>2.1.12. untar</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N2018F" starting-state="hide"><fo:bookmark-title>2.1.13. unrar</fo:bookmark-title></fo:bookmark></fo:bookmark><fo:bookmark internal-destination="dateservices" starting-state="hide"><fo:bookmark-title>2.2. DateServices</fo:bookmark-title><fo:bookmark internal-destination="N201C2" starting-state="hide"><fo:bookmark-title>2.2.1. dateAdd</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N201D6" starting-state="hide"><fo:bookmark-title>2.2.2. dateTimeDiff</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N201EA" starting-state="hide"><fo:bookmark-title>2.2.3. dateTimeDiff</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N201FE" starting-state="hide"><fo:bookmark-title>2.2.4. getDate</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20210" starting-state="hide"><fo:bookmark-title>2.2.5. getDateExtended</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N2021E" starting-state="hide"><fo:bookmark-title>2.2.6. formatDate</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20243" starting-state="hide"><fo:bookmark-title>2.2.7. formatDateAdvanced</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20253" starting-state="hide"><fo:bookmark-title>2.2.8. getInTimezone</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20260" starting-state="hide"><fo:bookmark-title>2.2.9. getTimestamp</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20275" starting-state="hide"><fo:bookmark-title>2.2.10. getTimestamp2</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N2028A" starting-state="hide"><fo:bookmark-title>2.2.11. getTimezones</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N2029F" starting-state="hide"><fo:bookmark-title>2.2.12. parseDate</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N202C4" starting-state="hide"><fo:bookmark-title>2.2.13. parseDateAdvanced</fo:bookmark-title></fo:bookmark></fo:bookmark><fo:bookmark internal-destination="executeservices" starting-state="hide"><fo:bookmark-title>2.3. ExecuteServices</fo:bookmark-title><fo:bookmark internal-destination="N202D9" starting-state="hide"><fo:bookmark-title>2.3.1. rExec</fo:bookmark-title><fo:bookmark internal-destination="N202E2" starting-state="hide"><fo:bookmark-title>2.3.1.1. Input parameters</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N2034E" starting-state="hide"><fo:bookmark-title>2.3.1.2. Output parameters</fo:bookmark-title><fo:bookmark internal-destination="N20353" starting-state="hide"><fo:bookmark-title>2.3.1.2.1. ReturnCode type</fo:bookmark-title></fo:bookmark></fo:bookmark></fo:bookmark><fo:bookmark internal-destination="N20388" starting-state="hide"><fo:bookmark-title>2.3.2. runCommand</fo:bookmark-title><fo:bookmark internal-destination="N20391" starting-state="hide"><fo:bookmark-title>2.3.2.1. Input parameters</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N203F9" starting-state="hide"><fo:bookmark-title>2.3.2.2. Output parameters</fo:bookmark-title><fo:bookmark internal-destination="N203FE" starting-state="hide"><fo:bookmark-title>2.3.2.2.1. ReturnCode type</fo:bookmark-title></fo:bookmark></fo:bookmark><fo:bookmark internal-destination="N20432" starting-state="hide"><fo:bookmark-title>2.3.2.3. </fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N2043E" starting-state="hide"><fo:bookmark-title>2.3.2.4. </fo:bookmark-title></fo:bookmark></fo:bookmark><fo:bookmark internal-destination="N20447" starting-state="hide"><fo:bookmark-title>2.3.3. runCommandAsync</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20451" starting-state="hide"><fo:bookmark-title>2.3.4. runCommandAsyncWithArgs</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N2045B" starting-state="hide"><fo:bookmark-title>2.3.5. runCommandWithArgs</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20465" starting-state="hide"><fo:bookmark-title>2.3.6. runCommandWithSSH</fo:bookmark-title><fo:bookmark internal-destination="N2046E" starting-state="hide"><fo:bookmark-title>2.3.6.1. Input parameters</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N204DA" starting-state="hide"><fo:bookmark-title>2.3.6.2. Output parameters</fo:bookmark-title><fo:bookmark internal-destination="N204DF" starting-state="hide"><fo:bookmark-title>2.3.6.2.1. ReturnCode type</fo:bookmark-title></fo:bookmark></fo:bookmark><fo:bookmark internal-destination="N20513" starting-state="hide"><fo:bookmark-title>2.3.6.3. Sample Request:</fo:bookmark-title></fo:bookmark></fo:bookmark><fo:bookmark internal-destination="N2051E" starting-state="hide"><fo:bookmark-title>2.3.7. runCommandWithSSHKeyAuth</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20528" starting-state="hide"><fo:bookmark-title>2.3.8. runJavaScript</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20532" starting-state="hide"><fo:bookmark-title>2.3.9. telnet</fo:bookmark-title><fo:bookmark internal-destination="N2053B" starting-state="hide"><fo:bookmark-title>2.3.9.1. Input parameters</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N205C5" starting-state="hide"><fo:bookmark-title>2.3.9.2. Output parameters</fo:bookmark-title><fo:bookmark internal-destination="N205CA" starting-state="hide"><fo:bookmark-title>2.3.9.2.1. ReturnCode type</fo:bookmark-title></fo:bookmark></fo:bookmark><fo:bookmark internal-destination="N205FE" starting-state="hide"><fo:bookmark-title>2.3.9.3. Sample Request:</fo:bookmark-title></fo:bookmark></fo:bookmark></fo:bookmark><fo:bookmark internal-destination="fileservices" starting-state="hide"><fo:bookmark-title>2.4. FileServices</fo:bookmark-title><fo:bookmark internal-destination="N20614" starting-state="hide"><fo:bookmark-title>2.4.1. downloadFile</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20629" starting-state="hide"><fo:bookmark-title>2.4.2. encodeFile</fo:bookmark-title></fo:bookmark></fo:bookmark><fo:bookmark internal-destination="jobservices" starting-state="hide"><fo:bookmark-title>2.5. JobServices</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="mailservices" starting-state="hide"><fo:bookmark-title>2.6. MailServices</fo:bookmark-title><fo:bookmark internal-destination="N20655" starting-state="hide"><fo:bookmark-title>2.6.1. sendMailSimple</fo:bookmark-title></fo:bookmark></fo:bookmark><fo:bookmark internal-destination="miscservices" starting-state="hide"><fo:bookmark-title>2.7. MiscServices</fo:bookmark-title><fo:bookmark internal-destination="N2066A" starting-state="hide"><fo:bookmark-title>2.7.1. generateUUID</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20680" starting-state="hide"><fo:bookmark-title>2.7.2. getHostinfo</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N2069F" starting-state="hide"><fo:bookmark-title>2.7.3. sleep</fo:bookmark-title></fo:bookmark></fo:bookmark><fo:bookmark internal-destination="storageservices" starting-state="hide"><fo:bookmark-title>2.8. StorageServices</fo:bookmark-title><fo:bookmark internal-destination="N206B4" starting-state="hide"><fo:bookmark-title>2.8.1.  ...</fo:bookmark-title><fo:bookmark internal-destination="N206BD" starting-state="hide"><fo:bookmark-title>2.8.1.1. Input parameters</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20729" starting-state="hide"><fo:bookmark-title>2.8.1.2. Output parameters</fo:bookmark-title><fo:bookmark internal-destination="N2072E" starting-state="hide"><fo:bookmark-title>2.8.1.2.1. ReturnCode type</fo:bookmark-title></fo:bookmark></fo:bookmark></fo:bookmark></fo:bookmark><fo:bookmark internal-destination="stringservices" starting-state="hide"><fo:bookmark-title>2.9. StringServices</fo:bookmark-title><fo:bookmark internal-destination="N2076E" starting-state="hide"><fo:bookmark-title>2.9.1. replaceRegEx</fo:bookmark-title></fo:bookmark></fo:bookmark><fo:bookmark internal-destination="xmlservices" starting-state="hide"><fo:bookmark-title>2.10. XmlServices</fo:bookmark-title><fo:bookmark internal-destination="N2078D" starting-state="hide"><fo:bookmark-title>2.10.1. insertNodes</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N2079F" starting-state="hide"><fo:bookmark-title>2.10.2. insertNodes2</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N207B1" starting-state="hide"><fo:bookmark-title>2.10.3. replaceNodes</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N207C3" starting-state="hide"><fo:bookmark-title>2.10.4. replaceNodes2</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N207D5" starting-state="hide"><fo:bookmark-title>2.10.5. selectXPath</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N207EA" starting-state="hide"><fo:bookmark-title>2.10.6. setAttribute</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N207FF" starting-state="hide"><fo:bookmark-title>2.10.7. wrapInCDATA</fo:bookmark-title></fo:bookmark></fo:bookmark></fo:bookmark><fo:bookmark xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="restservices" starting-state="hide"><fo:bookmark-title>Chapter 3. Available RESTful Services</fo:bookmark-title><fo:bookmark internal-destination="cvsinfoservices" starting-state="hide"><fo:bookmark-title>3.1. CVSInfoService</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="fileinfoservices" starting-state="hide"><fo:bookmark-title>3.2. FileInfoService</fo:bookmark-title></fo:bookmark></fo:bookmark><fo:bookmark xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="xmltypes" starting-state="hide"><fo:bookmark-title>Chapter 4. XML Types</fo:bookmark-title><fo:bookmark internal-destination="N20853" starting-state="hide"><fo:bookmark-title>4.1. </fo:bookmark-title><fo:bookmark internal-destination="antproperty" starting-state="hide"><fo:bookmark-title>4.1.1. AntProperty type</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20875" starting-state="hide"><fo:bookmark-title>4.1.2. DateInfoType type</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20889" starting-state="hide"><fo:bookmark-title>4.1.3. FileResource type</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="hostconnection" starting-state="hide"><fo:bookmark-title>4.1.4. HostConnection type</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="patternelement" starting-state="hide"><fo:bookmark-title>4.1.5. PatternElement type</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="patternsettype" starting-state="hide"><fo:bookmark-title>4.1.6. PatternSetType type</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="N20951" starting-state="hide"><fo:bookmark-title>4.1.7. ReturnCode type</fo:bookmark-title></fo:bookmark><fo:bookmark internal-destination="selectortype" starting-state="hide"><fo:bookmark-title>4.1.8. SelectorType type</fo:bookmark-title></fo:bookmark></fo:bookmark></fo:bookmark></fo:bookmark-tree><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2000B"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="installation"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2005C"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2006E"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2007E"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="soapservices"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="archiveservices"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N200AB"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N200BE"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N200D1"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N200E4"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N200F7"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2010A"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2011D"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20130"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20143"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20156"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20169"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2017C"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2018F"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="dateservices"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N201C2"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N201D6"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N201EA"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N201FE"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20210"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2021E"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20243"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20253"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20260"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20275"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2028A"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2029F"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N202C4"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="executeservices"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N202D9"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N202E2"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2034E"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20353"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20388"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20391"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N203F9"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N203FE"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20432"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2043E"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20447"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20451"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2045B"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20465"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2046E"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N204DA"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N204DF"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20513"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2051E"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20528"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20532"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2053B"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N205C5"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N205CA"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N205FE"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="fileservices"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20614"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20629"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="jobservices"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="mailservices"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20655"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="miscservices"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2066A"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20680"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2069F"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="storageservices"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N206B4"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N206BD"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20729"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2072E"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="stringservices"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2076E"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="xmlservices"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2078D"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N2079F"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N207B1"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N207C3"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N207D5"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N207EA"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N207FF"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="restservices"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="cvsinfoservices"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="fileinfoservices"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="xmltypes"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20853"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="antproperty"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20875"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20889"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="hostconnection"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="patternelement"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="patternsettype"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="N20951"/><fox:destination xmlns:fox="http://xmlgraphics.apache.org/fop/extensions" internal-destination="selectortype"/><fo:page-sequence xmlns:axf="http://www.antennahouse.com/names/XSL/Extensions" master-reference="titlepage" hyphenate="true" language="en" format="i" initial-page-number="auto" force-page-count="no-force" hyphenation-character="-" hyphenation-push-character-count="2" hyphenation-remain-character-count="2"><fo:static-content flow-name="xsl-region-before-first"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"/></fo:static-content><fo:static-content flow-name="xsl-region-before-odd"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-even"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-blank"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-footnote-separator"><fo:block><fo:leader color="black" leader-pattern="rule" leader-length="1in"/></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-inner-first"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-odd"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-even"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-blank"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-first"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-odd"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-even"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-blank"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-after-first"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"/></fo:static-content><fo:static-content flow-name="xsl-region-after-odd"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-even"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-blank"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:flow flow-name="xsl-region-body"><fo:block id="N2000B"><fo:block><fo:block><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" font-size="24.8832pt" text-align="center" space-before="18.6624pt"><fo:block hyphenate="false" keep-with-next.within-column="always">Brutex XServices Documentation</fo:block></fo:block><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" font-size="17.28pt" text-align="center" keep-with-next.within-column="always" space-before="10.8pt"><fo:block>Brian Rosenberger</fo:block></fo:block></fo:block><fo:block><fo:block break-after="page"/><fo:block font-size="14.4pt" font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold"><fo:block>Brutex XServices Documentation</fo:block></fo:block><fo:block font-size="10pt"><fo:block>Brian Rosenberger</fo:block></fo:block><fo:block font-size="10pt">Copyright <fo:inline font-family="serif,Symbol,ZapfDingbats">©</fo:inline> 2014 </fo:block><fo:block font-size="10pt"><fo:block start-indent="0.0in" end-indent="0.0in"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.optimum="10pt" space-before.minimum="10pt * 0.8" space-before.maximum="10pt * 1.2" hyphenate="false" text-align="center"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.optimum="10pt" space-before.minimum="10pt * 0.8" space-before.maximum="10pt * 1.2" hyphenate="false" text-align="center">Abstract</fo:block></fo:block><fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">In complex IT environments it is often necessary to integrate
different information systems with each other, exchange data between
software tools and automate actions based on events arising from user
interaction. Web Services is a popular way to make remote functions
available to a broad range of clients. A WebService is independent
from platforms and programming languages. XML Messages are exchanged
through common protocols like TCP/IP or SMTP, processed and returned
(request/ response paradigm).</fo:block><fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Because of their nature, WebServices are a great technology to
overcome system boundaries and to "orchestrate" your IT environment.
They make up the basis for SOA and are the pieces that assemble
automated business processes.</fo:block><fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">XServices is a collection of pre-build WebServices with the
intention to avoid duplicate work and "re-inventing the wheel". The
historical base for XServices is the 'XBridgeNG' software, which
provided a set of Apache Ant Tasks with quite the same intention. The
available WebService operations are most likely the "most wanted"
ones, some of them for sure are "must have". This collection may
overlap with other libraries. In summary the current version contains
8 WebServices with over 50 operations.</fo:block></fo:block></fo:block><fo:block font-size="8pt"><fo:block id="N2002C">
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The copyright holders make no representation about the suitability
of this document for any purpose. It is provided
<fo:inline font-style="italic">as is</fo:inline>
without expressed or implied warranty.
</fo:block>
</fo:block></fo:block><fo:block font-size="8pt"><fo:block id="N20035">
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" id="N20039">
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
</fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Apache Tomcat and Apache Ant are trademarks of the Apache
Software Foundation.</fo:block>
</fo:block></fo:block></fo:block><fo:block break-after="page"/></fo:block></fo:block></fo:flow></fo:page-sequence><fo:page-sequence xmlns:axf="http://www.antennahouse.com/names/XSL/Extensions" master-reference="lot" hyphenate="true" language="en" format="i" initial-page-number="auto" force-page-count="no-force" hyphenation-character="-" hyphenation-push-character-count="2" hyphenation-remain-character-count="2"><fo:static-content flow-name="xsl-region-before-first"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-odd"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block>Brutex XServices Documentation</fo:block></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-even"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block>Brutex XServices Documentation</fo:block></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-blank"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-footnote-separator"><fo:block><fo:leader color="black" leader-pattern="rule" leader-length="1in"/></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-inner-first"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-odd"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-even"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-blank"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-first"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-odd"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-even"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-blank"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-after-first"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-odd"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-even"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-blank"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:flow flow-name="xsl-region-body" start-indent="4pc" end-indent="0pt"><fo:block space-before.minimum="0.5em" space-before.optimum="1em" space-before.maximum="2em" space-after.minimum="0.5em" space-after.optimum="1em" space-after.maximum="2em" id="toc...N2000B"><fo:block><fo:block><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" font-size="17.28pt" start-indent="0pt" space-after="0.5em" space-before.maximum="2em" space-before.optimum="1.5em" space-before.minimum="1em">Table of Contents</fo:block></fo:block></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="installation">1. Getting started</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="installation"><fo:page-number-citation ref-id="installation"/></fo:basic-link></fo:inline></fo:block><fo:block id="toc.N2000B.installation" margin-left="24pt"><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2005C">1.1. Installation</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2005C"><fo:page-number-citation ref-id="N2005C"/></fo:basic-link></fo:inline></fo:block><fo:block id="toc.N2000B.N2005C" margin-left="24pt"><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2006E">1.1.1. Securing with Basic Authentication</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2006E"><fo:page-number-citation ref-id="N2006E"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2007E">1.1.2. Limit access to</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2007E"><fo:page-number-citation ref-id="N2007E"/></fo:basic-link></fo:inline></fo:block></fo:block></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="soapservices">2. Available SOAP Services</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="soapservices"><fo:page-number-citation ref-id="soapservices"/></fo:basic-link></fo:inline></fo:block><fo:block id="toc.N2000B.soapservices" margin-left="24pt"><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="archiveservices">2.1. ArchiveServices</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="archiveservices"><fo:page-number-citation ref-id="archiveservices"/></fo:basic-link></fo:inline></fo:block><fo:block id="toc.N2000B.archiveservices" margin-left="24pt"><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N200AB">2.1.1. gzip</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N200AB"><fo:page-number-citation ref-id="N200AB"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N200BE">2.1.2. bzip2FromArchive</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N200BE"><fo:page-number-citation ref-id="N200BE"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N200D1">2.1.3. bzip2</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N200D1"><fo:page-number-citation ref-id="N200D1"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N200E4">2.1.4. gzipFromArchive</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N200E4"><fo:page-number-citation ref-id="N200E4"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N200F7">2.1.5. gunzip</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N200F7"><fo:page-number-citation ref-id="N200F7"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2010A">2.1.6. bunzip2</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2010A"><fo:page-number-citation ref-id="N2010A"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2011D">2.1.7. gunzipFromURL</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2011D"><fo:page-number-citation ref-id="N2011D"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20130">2.1.8. bunzip2FromURL</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20130"><fo:page-number-citation ref-id="N20130"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20143">2.1.9. zip</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20143"><fo:page-number-citation ref-id="N20143"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20156">2.1.10. zipFromArchive</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20156"><fo:page-number-citation ref-id="N20156"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20169">2.1.11. unzip</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20169"><fo:page-number-citation ref-id="N20169"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2017C">2.1.12. untar</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2017C"><fo:page-number-citation ref-id="N2017C"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2018F">2.1.13. unrar</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2018F"><fo:page-number-citation ref-id="N2018F"/></fo:basic-link></fo:inline></fo:block></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="dateservices">2.2. DateServices</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="dateservices"><fo:page-number-citation ref-id="dateservices"/></fo:basic-link></fo:inline></fo:block><fo:block id="toc.N2000B.dateservices" margin-left="24pt"><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N201C2">2.2.1. dateAdd</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N201C2"><fo:page-number-citation ref-id="N201C2"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N201D6">2.2.2. dateTimeDiff</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N201D6"><fo:page-number-citation ref-id="N201D6"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N201EA">2.2.3. dateTimeDiff</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N201EA"><fo:page-number-citation ref-id="N201EA"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N201FE">2.2.4. getDate</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N201FE"><fo:page-number-citation ref-id="N201FE"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20210">2.2.5. getDateExtended</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20210"><fo:page-number-citation ref-id="N20210"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2021E">2.2.6. formatDate</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2021E"><fo:page-number-citation ref-id="N2021E"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20243">2.2.7. formatDateAdvanced</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20243"><fo:page-number-citation ref-id="N20243"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20253">2.2.8. getInTimezone</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20253"><fo:page-number-citation ref-id="N20253"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20260">2.2.9. getTimestamp</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20260"><fo:page-number-citation ref-id="N20260"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20275">2.2.10. getTimestamp2</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20275"><fo:page-number-citation ref-id="N20275"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2028A">2.2.11. getTimezones</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2028A"><fo:page-number-citation ref-id="N2028A"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2029F">2.2.12. parseDate</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2029F"><fo:page-number-citation ref-id="N2029F"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N202C4">2.2.13. parseDateAdvanced</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N202C4"><fo:page-number-citation ref-id="N202C4"/></fo:basic-link></fo:inline></fo:block></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="executeservices">2.3. ExecuteServices</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="executeservices"><fo:page-number-citation ref-id="executeservices"/></fo:basic-link></fo:inline></fo:block><fo:block id="toc.N2000B.executeservices" margin-left="24pt"><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N202D9">2.3.1. rExec
</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N202D9"><fo:page-number-citation ref-id="N202D9"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20388">2.3.2. runCommand</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20388"><fo:page-number-citation ref-id="N20388"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20447">2.3.3. runCommandAsync</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20447"><fo:page-number-citation ref-id="N20447"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20451">2.3.4. runCommandAsyncWithArgs</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20451"><fo:page-number-citation ref-id="N20451"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2045B">2.3.5. runCommandWithArgs</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2045B"><fo:page-number-citation ref-id="N2045B"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20465">2.3.6. runCommandWithSSH</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20465"><fo:page-number-citation ref-id="N20465"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2051E">2.3.7. runCommandWithSSHKeyAuth</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2051E"><fo:page-number-citation ref-id="N2051E"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20528">2.3.8. runJavaScript</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20528"><fo:page-number-citation ref-id="N20528"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20532">2.3.9. telnet</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20532"><fo:page-number-citation ref-id="N20532"/></fo:basic-link></fo:inline></fo:block></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="fileservices">2.4. FileServices</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="fileservices"><fo:page-number-citation ref-id="fileservices"/></fo:basic-link></fo:inline></fo:block><fo:block id="toc.N2000B.fileservices" margin-left="24pt"><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20614">2.4.1. downloadFile</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20614"><fo:page-number-citation ref-id="N20614"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20629">2.4.2. encodeFile</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20629"><fo:page-number-citation ref-id="N20629"/></fo:basic-link></fo:inline></fo:block></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="jobservices">2.5. JobServices</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="jobservices"><fo:page-number-citation ref-id="jobservices"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="mailservices">2.6. MailServices</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="mailservices"><fo:page-number-citation ref-id="mailservices"/></fo:basic-link></fo:inline></fo:block><fo:block id="toc.N2000B.mailservices" margin-left="24pt"><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20655">2.6.1. sendMailSimple</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20655"><fo:page-number-citation ref-id="N20655"/></fo:basic-link></fo:inline></fo:block></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="miscservices">2.7. MiscServices</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="miscservices"><fo:page-number-citation ref-id="miscservices"/></fo:basic-link></fo:inline></fo:block><fo:block id="toc.N2000B.miscservices" margin-left="24pt"><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2066A">2.7.1. generateUUID</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2066A"><fo:page-number-citation ref-id="N2066A"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20680">2.7.2. getHostinfo</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20680"><fo:page-number-citation ref-id="N20680"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2069F">2.7.3. sleep</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2069F"><fo:page-number-citation ref-id="N2069F"/></fo:basic-link></fo:inline></fo:block></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="storageservices">2.8. StorageServices</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="storageservices"><fo:page-number-citation ref-id="storageservices"/></fo:basic-link></fo:inline></fo:block><fo:block id="toc.N2000B.storageservices" margin-left="24pt"><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N206B4">2.8.1. ...
</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N206B4"><fo:page-number-citation ref-id="N206B4"/></fo:basic-link></fo:inline></fo:block></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="stringservices">2.9. StringServices</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="stringservices"><fo:page-number-citation ref-id="stringservices"/></fo:basic-link></fo:inline></fo:block><fo:block id="toc.N2000B.stringservices" margin-left="24pt"><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2076E">2.9.1. replaceRegEx</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2076E"><fo:page-number-citation ref-id="N2076E"/></fo:basic-link></fo:inline></fo:block></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="xmlservices">2.10. XmlServices</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="xmlservices"><fo:page-number-citation ref-id="xmlservices"/></fo:basic-link></fo:inline></fo:block><fo:block id="toc.N2000B.xmlservices" margin-left="24pt"><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2078D">2.10.1. insertNodes</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2078D"><fo:page-number-citation ref-id="N2078D"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N2079F">2.10.2. insertNodes2</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N2079F"><fo:page-number-citation ref-id="N2079F"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N207B1">2.10.3. replaceNodes</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N207B1"><fo:page-number-citation ref-id="N207B1"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N207C3">2.10.4. replaceNodes2</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N207C3"><fo:page-number-citation ref-id="N207C3"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N207D5">2.10.5. selectXPath</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N207D5"><fo:page-number-citation ref-id="N207D5"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N207EA">2.10.6. setAttribute</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N207EA"><fo:page-number-citation ref-id="N207EA"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N207FF">2.10.7. wrapInCDATA</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N207FF"><fo:page-number-citation ref-id="N207FF"/></fo:basic-link></fo:inline></fo:block></fo:block></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="restservices">3. Available RESTful Services</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="restservices"><fo:page-number-citation ref-id="restservices"/></fo:basic-link></fo:inline></fo:block><fo:block id="toc.N2000B.restservices" margin-left="24pt"><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="cvsinfoservices">3.1. CVSInfoService</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="cvsinfoservices"><fo:page-number-citation ref-id="cvsinfoservices"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="fileinfoservices">3.2. FileInfoService</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="fileinfoservices"><fo:page-number-citation ref-id="fileinfoservices"/></fo:basic-link></fo:inline></fo:block></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="xmltypes">4. XML Types</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="xmltypes"><fo:page-number-citation ref-id="xmltypes"/></fo:basic-link></fo:inline></fo:block><fo:block id="toc.N2000B.xmltypes" margin-left="24pt"><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20853">4.1. </fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20853"><fo:page-number-citation ref-id="N20853"/></fo:basic-link></fo:inline></fo:block><fo:block id="toc.N2000B.N20853" margin-left="24pt"><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="antproperty">4.1.1. AntProperty type</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="antproperty"><fo:page-number-citation ref-id="antproperty"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20875">4.1.2. DateInfoType type</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20875"><fo:page-number-citation ref-id="N20875"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20889">4.1.3. FileResource type</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20889"><fo:page-number-citation ref-id="N20889"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="hostconnection">4.1.4. HostConnection type</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="hostconnection"><fo:page-number-citation ref-id="hostconnection"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="patternelement">4.1.5. PatternElement type</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="patternelement"><fo:page-number-citation ref-id="patternelement"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="patternsettype">4.1.6. PatternSetType type</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="patternsettype"><fo:page-number-citation ref-id="patternsettype"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20951">4.1.7. ReturnCode type</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20951"><fo:page-number-citation ref-id="N20951"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="selectortype">4.1.8. SelectorType type</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="selectortype"><fo:page-number-citation ref-id="selectortype"/></fo:basic-link></fo:inline></fo:block></fo:block></fo:block></fo:block></fo:flow></fo:page-sequence><fo:page-sequence xmlns:axf="http://www.antennahouse.com/names/XSL/Extensions" master-reference="lot" hyphenate="true" language="en" format="i" initial-page-number="auto" force-page-count="no-force" hyphenation-character="-" hyphenation-push-character-count="2" hyphenation-remain-character-count="2"><fo:static-content flow-name="xsl-region-before-first"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-odd"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block>Brutex XServices Documentation</fo:block></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-even"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block>Brutex XServices Documentation</fo:block></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-blank"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-footnote-separator"><fo:block><fo:leader color="black" leader-pattern="rule" leader-length="1in"/></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-inner-first"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-odd"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-even"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-blank"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-first"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-odd"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-even"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-blank"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-after-first"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-odd"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-even"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-blank"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:flow flow-name="xsl-region-body" start-indent="4pc" end-indent="0pt"><fo:block id="lot...table...N2000B"><fo:block><fo:block><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" font-size="17.28pt" start-indent="0pt" space-after="0.5em" space-before.maximum="2em" space-before.optimum="1.5em" space-before.minimum="1em">List of Tables</fo:block></fo:block></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N202E9">2.1. rExec
input parameters
</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N202E9"><fo:page-number-citation ref-id="N202E9"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20398">2.2. runCommand input parameters</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20398"><fo:page-number-citation ref-id="N20398"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20475">2.3. runCommandWithSSH input parameters</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20475"><fo:page-number-citation ref-id="N20475"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N20542">2.4. telnet input parameters</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N20542"><fo:page-number-citation ref-id="N20542"/></fo:basic-link></fo:inline></fo:block><fo:block text-align-last="justify" text-align="start" end-indent="24pt" last-line-end-indent="-24pt"><fo:inline keep-with-next.within-line="always"><fo:basic-link internal-destination="N206C4">2.5. Input parameters
</fo:basic-link></fo:inline><fo:inline keep-together.within-line="always"> <fo:leader keep-with-next.within-line="always" leader-alignment="reference-area" leader-pattern-width="3pt" leader-pattern="dots"/> <fo:basic-link internal-destination="N206C4"><fo:page-number-citation ref-id="N206C4"/></fo:basic-link></fo:inline></fo:block></fo:block></fo:flow></fo:page-sequence>
<fo:page-sequence xmlns:axf="http://www.antennahouse.com/names/XSL/Extensions" master-reference="body" hyphenate="true" language="en" format="1" initial-page-number="1" force-page-count="no-force" hyphenation-character="-" hyphenation-push-character-count="2" hyphenation-remain-character-count="2"><fo:static-content flow-name="xsl-region-before-first"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-odd"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block>Getting started</fo:block></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-even"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block>Getting started</fo:block></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-blank"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-footnote-separator"><fo:block><fo:leader color="black" leader-pattern="rule" leader-length="1in"/></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-inner-first"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-odd"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-even"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-blank"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-first"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-odd"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-even"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-blank"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-after-first"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-odd"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-even"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-blank"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:flow flow-name="xsl-region-body" start-indent="4pc" end-indent="0pt"><fo:block id="installation"><fo:block font-family="sans-serif,Symbol,ZapfDingbats"><fo:block margin-left="0pt"><fo:block font-weight="bold" font-size="24.8832pt"><fo:block keep-with-next.within-column="always" space-before.optimum="10pt" space-before.minimum="10pt * 0.8" space-before.maximum="10pt * 1.2" hyphenate="false" text-align="start" start-indent="0pt" hyphenation-character="-" hyphenation-push-character-count="2" hyphenation-remain-character-count="2">Chapter 1. Getting started</fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">This chapter describes the installation process.</fo:block>
<fo:block id="N2005C"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">Installation</fo:marker><fo:block font-size="20.735999999999997pt">1.1. Installation</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
 
 
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">As of February 2013, XServices require Java 7. Older builds run against Java 5.</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Apache Tomcat 7</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">tbd.</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">In short: Deploy .WAR file to Apache Tomcat</fo:block>
<fo:block id="N2006E"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">Securing with Basic Authentication</fo:marker><fo:block font-size="17.28pt">1.1.1. Securing with Basic Authentication</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">There is a quick guide explaining Basic Authentication for Tomcat here: <fo:basic-link external-destination="url(http://oreilly.com/pub/a/java/archive/tomcat-tips.html?page=1)">
http://oreilly.com/pub/a/java/archive/tomcat-tips.html?page=1</fo:basic-link><fo:inline hyphenate="false"> [<fo:basic-link external-destination="url(http://oreilly.com/pub/a/java/archive/tomcat-tips.html?page=1)">http://oreilly.com/pub/a/java/archive/tomcat-tips.html?page=1</fo:basic-link>]</fo:inline>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
</fo:block>
</fo:block>
<fo:block id="N2007E"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">Limit access to</fo:marker><fo:block font-size="17.28pt">1.1.2. Limit access to</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Sometimes you'll only want to restrict access to to
only
specified host names or IP addresses. This way, only
clients at
those specified addresses can use the web services.
Tomcat provides
two configuration values for that:
RemoteHostValve and
RemoteAddrValve.</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">These Valves allow you to filter requests by host name or
by IP
address, and to allow or deny hosts that match. The
example below
restricts access to the ArchiveService from any
machine that is not
the local host.</fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20089">&lt;Context
path="/XService/ArchiveService"
...&gt; &lt;Valve
className="org.apache.catalina.valves.RemoteAddrValve"
allow="127.0.0.1" deny=""/&gt; &lt;/Context&gt;
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">If no allow pattern is given, then patterns that match
the deny
attribute patterns will be rejected, and all others
will be allowed.
Similarly, if no deny pattern is given,
patterns that match the
allow attribute will be allowed, and
all others will be denied.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The &lt;context&gt; element must be placed into the
server.xml
file (into &lt;engine&gt;&lt;host&gt;).</fo:block>
</fo:block>
 
</fo:block>
</fo:flow></fo:page-sequence>
<fo:page-sequence xmlns:axf="http://www.antennahouse.com/names/XSL/Extensions" master-reference="body" hyphenate="true" language="en" format="1" initial-page-number="auto" force-page-count="no-force" hyphenation-character="-" hyphenation-push-character-count="2" hyphenation-remain-character-count="2"><fo:static-content flow-name="xsl-region-before-first"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-odd"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block>Available SOAP Services</fo:block></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-even"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block>Available SOAP Services</fo:block></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-blank"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-footnote-separator"><fo:block><fo:leader color="black" leader-pattern="rule" leader-length="1in"/></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-inner-first"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-odd"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-even"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-blank"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-first"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-odd"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-even"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-blank"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-after-first"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-odd"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-even"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-blank"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:flow flow-name="xsl-region-body" start-indent="4pc" end-indent="0pt"><fo:block id="soapservices"><fo:block font-family="sans-serif,Symbol,ZapfDingbats"><fo:block margin-left="0pt"><fo:block font-weight="bold" font-size="24.8832pt"><fo:block keep-with-next.within-column="always" space-before.optimum="10pt" space-before.minimum="10pt * 0.8" space-before.maximum="10pt * 1.2" hyphenate="false" text-align="start" start-indent="0pt" hyphenation-character="-" hyphenation-push-character-count="2" hyphenation-remain-character-count="2">Chapter 2. Available SOAP Services</fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">List of available web services and their operations.</fo:block>
<fo:block id="archiveservices"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">ArchiveServices</fo:marker><fo:block font-size="20.735999999999997pt">2.1. ArchiveServices</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The ArchiveService bundles file packing operations. Its
WSDL is located at
http://server:port/XServices/ArchiveService?wsdl</fo:block>
<fo:block id="N200AB"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">gzip</fo:marker><fo:block font-size="17.28pt">2.1.1. gzip</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Create a GNU zip archive.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N200B3">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N200B6">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N200BE"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">bzip2FromArchive</fo:marker><fo:block font-size="17.28pt">2.1.2. bzip2FromArchive</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Create a new bzip2 archive from files located within another archive.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N200C6">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N200C9">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N200D1"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">bzip2</fo:marker><fo:block font-size="17.28pt">2.1.3. bzip2</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Create a bzip2 archive.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N200D9">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N200DC">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N200E4"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">gzipFromArchive</fo:marker><fo:block font-size="17.28pt">2.1.4. gzipFromArchive</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Create a new GNU zip archive from files located within another archive.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N200EC">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N200EF">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N200F7"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">gunzip</fo:marker><fo:block font-size="17.28pt">2.1.5. gunzip</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Extract files from a GNU zip archive.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N200FF">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20102">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N2010A"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">bunzip2</fo:marker><fo:block font-size="17.28pt">2.1.6. bunzip2</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Extract files from a bzip2 archive.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20112">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20115">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N2011D"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">gunzipFromURL</fo:marker><fo:block font-size="17.28pt">2.1.7. gunzipFromURL</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Extract files from a GNU zip archive. The archive is located on the web (http/ https)
and will be downloaded automatically.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20125">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20128">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N20130"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">bunzip2FromURL</fo:marker><fo:block font-size="17.28pt">2.1.8. bunzip2FromURL</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Extract files from a bzip2 archive. The archive is located on the web (http/ https)
and will be downloaded automatically.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20138">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2013B">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N20143"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">zip</fo:marker><fo:block font-size="17.28pt">2.1.9. zip</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Compress files and store them in a ZIP archive.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2014B">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2014E">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N20156"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">zipFromArchive</fo:marker><fo:block font-size="17.28pt">2.1.10. zipFromArchive</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Create a new ZIP archive from files located within another archive.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2015E">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20161">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N20169"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">unzip</fo:marker><fo:block font-size="17.28pt">2.1.11. unzip</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Extract files from a zip archive.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20171">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20174">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N2017C"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">untar</fo:marker><fo:block font-size="17.28pt">2.1.12. untar</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Extract files from a tarball archive.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20184">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20187">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N2018F"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">unrar</fo:marker><fo:block font-size="17.28pt">2.1.13. unrar</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Extract files from a RAR archive.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20197">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2019A">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
 
</fo:block>
<fo:block id="dateservices"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">DateServices</fo:marker><fo:block font-size="20.735999999999997pt">2.2. DateServices</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The DateService bundles various date and time related operations.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Its WSDL is located at http://server:port/XServices/DateService?wsdl</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">XServices uses a date/time format as suggested by http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#dateTime, which is basically a subset of ISO8601. Most input parameters for date/time have to be provided as such.
Another date/time format, that is often used is defined by RFC822. The major difference to ISO8601 and the Xmlschema datetime format, is in the way how the time zone is specified. ISO8601 specifies a colon to be used to separate hour and minutes time shift. RFC822 does not use a separator.
<fo:list-block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" space-after.optimum="1em" space-after.minimum="0.8em" space-after.maximum="1.2em" provisional-label-separation="0.2em" provisional-distance-between-starts="1.0em" id="N201B2"><fo:list-item space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" id="N201B4"><fo:list-item-label end-indent="label-end()"><fo:block>•</fo:block></fo:list-item-label><fo:list-item-body start-indent="body-start()"><fo:block>
<fo:block>ISO8601 (example: "2012-01-17T23:50:00+01:00")</fo:block>
</fo:block></fo:list-item-body></fo:list-item><fo:list-item space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" id="N201BA"><fo:list-item-label end-indent="label-end()"><fo:block>•</fo:block></fo:list-item-label><fo:list-item-body start-indent="body-start()"><fo:block>
<fo:block>RFC822 (example: "2012-01-17T23:50:00+0100")</fo:block>
</fo:block></fo:list-item-body></fo:list-item></fo:list-block>
</fo:block>
<fo:block id="N201C2"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">dateAdd</fo:marker><fo:block font-size="17.28pt">2.2.1. dateAdd</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Add or substract a time span from/ to a date.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N201CA">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N201CD">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Hints here</fo:block>
</fo:block>
<fo:block id="N201D6"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">dateTimeDiff</fo:marker><fo:block font-size="17.28pt">2.2.2. dateTimeDiff</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Calculate elapsed time between two dates. Returns the elapsed time in milliseconds.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N201DE">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N201E1">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Hints here</fo:block>
</fo:block>
<fo:block id="N201EA"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">dateTimeDiff</fo:marker><fo:block font-size="17.28pt">2.2.3. dateTimeDiff</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Calculate Fully elapsed units between two dates. Example: 4:15:10-4:15:55 in minutes = 0 and in seconds = 45.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N201F2">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N201F5">
...
</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Hints here</fo:block>
</fo:block>
<fo:block id="N201FE"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">getDate</fo:marker><fo:block font-size="17.28pt">2.2.4. getDate</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Get current time and date.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20206">
&lt;soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net"&gt;
&lt;soapenv:Header/&gt;
&lt;soapenv:Body&gt;
&lt;ws:getDate/&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelop
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2020A">
&lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns1:getDateResponse xmlns:ns1="http://ws.xservices.brutex.net"&gt;
&lt;ns1:return&gt;
&lt;ns1:formats&gt;
&lt;ns1:format1&gt;02.01.2012&lt;/ns1:format1&gt;
&lt;ns1:format2&gt;2012/01/02&lt;/ns1:format2&gt;
&lt;ns1:format3&gt;08:14:40+0100&lt;/ns1:format3&gt;
&lt;/ns1:formats&gt;
&lt;ns1:iso8601date&gt;2012-01-02T08:14:40+0100&lt;/ns1:iso8601date&gt;
&lt;ns1:timestamp&gt;1325488480957&lt;/ns1:timestamp&gt;
&lt;/ns1:return&gt;
&lt;/ns1:getDateResponse&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;</fo:block>
</fo:block>
</fo:block>
<fo:block id="N20210"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">getDateExtended</fo:marker><fo:block font-size="17.28pt">2.2.5. getDateExtended</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Get current time and date (extended Version).
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20218">
 
&lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns2:getDateExtendedResponse xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;return&gt;
&lt;iso8601date&gt;2012-01-23T08:30:00.333+01:00&lt;/iso8601date&gt;
&lt;rfc822date&gt;2012-01-23T08:30:00.333+0100&lt;/rfc822date&gt;
&lt;timestamp&gt;1327303800333&lt;/timestamp&gt;
&lt;format1&gt;23.01.2012&lt;/format1&gt;
&lt;format2&gt;2012/01/23&lt;/format2&gt;
&lt;format3&gt;08:30:00&lt;/format3&gt;
&lt;/return&gt;
&lt;/ns2:getDateExtendedResponse&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;
 
</fo:block>
 
</fo:block>
</fo:block>
<fo:block id="N2021E"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">formatDate</fo:marker><fo:block font-size="17.28pt">2.2.6. formatDate</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
Transform date/time representation from ISO8601 or RFC822 format to
<fo:list-block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" space-after.optimum="1em" space-after.minimum="0.8em" space-after.maximum="1.2em" provisional-label-separation="0.2em" provisional-distance-between-starts="1.0em" id="N20226"><fo:list-item space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" id="N20228"><fo:list-item-label end-indent="label-end()"><fo:block>•</fo:block></fo:list-item-label><fo:list-item-body start-indent="body-start()"><fo:block>
<fo:block>ISO8601 (example: "2012-01-17T23:50:00+01:00")</fo:block>
</fo:block></fo:list-item-body></fo:list-item><fo:list-item space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" id="N2022E"><fo:list-item-label end-indent="label-end()"><fo:block>•</fo:block></fo:list-item-label><fo:list-item-body start-indent="body-start()"><fo:block>
<fo:block>RFC822 (example: "2012-01-17T23:50:00+0100")</fo:block>
</fo:block></fo:list-item-body></fo:list-item><fo:list-item space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" id="N20234"><fo:list-item-label end-indent="label-end()"><fo:block>•</fo:block></fo:list-item-label><fo:list-item-body start-indent="body-start()"><fo:block>
<fo:block>YYYYMMDD (example: "2012/01/17")</fo:block>
</fo:block></fo:list-item-body></fo:list-item><fo:list-item space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" id="N2023A"><fo:list-item-label end-indent="label-end()"><fo:block>•</fo:block></fo:list-item-label><fo:list-item-body start-indent="body-start()"><fo:block>
<fo:block>DDMMYYYY (example: "17.01.2012")</fo:block>
</fo:block></fo:list-item-body></fo:list-item></fo:list-block>
</fo:block>
</fo:block>
<fo:block id="N20243"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">formatDateAdvanced</fo:marker><fo:block font-size="17.28pt">2.2.7. formatDateAdvanced</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
Transform Time/ Date representation. Formats a date with a free form pattern. Uses SimpleDateFormat patterns.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The following pattern letters are defined (all other characters from 'A' to 'Z' and from 'a' to 'z' are reserved):
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2024E">
Letter Date or Time Component Presentation Examples
G Era designator Text AD
y Year Year 1996; 96
M Month in year Month July; Jul; 07
w Week in year Number 27
W Week in month Number 2
D Day in year Number 189
d Day in month Number 10
F Day of week in month Number 2
E Day in week Text Tuesday; Tue
a Am/pm marker Text PM
H Hour in day (0-23) Number 0
k Hour in day (1-24) Number 24
K Hour in am/pm (0-11) Number 0
h Hour in am/pm (1-12) Number 12
m Minute in hour Number 30
s Second in minute Number 55
S Millisecond Number 978
z Time zone General time zone Pacific Standard Time; PST; GMT-08:00
Z Time zone RFC 822 time zone -0800
</fo:block>
</fo:block>
</fo:block>
<fo:block id="N20253"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">getInTimezone</fo:marker><fo:block font-size="17.28pt">2.2.8. getInTimezone</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
Changes the date/time presentation to another time zone. The date/time object itself
is not changed. For example '2012-01-05T22:45:11-06:30' is presented as '2012-01-06T07:15:11+02:00' from Helsinki time zone perspective.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The web service operation "getTimezones" returns a full list of all supported time zones.</fo:block>
</fo:block>
<fo:block id="N20260"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">getTimestamp</fo:marker><fo:block font-size="17.28pt">2.2.9. getTimestamp</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Get current timestamp in milliseconds (epoch).
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20268">
 
&lt;soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net"&gt;
&lt;soapenv:Header/&gt;
&lt;soapenv:Body&gt;
&lt;ws:getTimestamp/&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelop
 
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2026C">
 
&lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns1:getTimestampResponse xmlns:ns1="http://ws.xservices.brutex.net"&gt;
&lt;ns1:return&gt;<fo:inline font-style="italic">1325488875703</fo:inline>&lt;/ns1:return&gt;
&lt;/ns1:getTimestampResponse&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;
</fo:block>
</fo:block>
</fo:block>
<fo:block id="N20275"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">getTimestamp2</fo:marker><fo:block font-size="17.28pt">2.2.10. getTimestamp2</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Get current timestamp in seconds (unix timestamp).
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2027D">
 
&lt;soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net"&gt;
&lt;soapenv:Header/&gt;
&lt;soapenv:Body&gt;
&lt;ws:getTimestamp2/&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelop
 
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20281">
 
&lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns1:getTimestamp2Response xmlns:ns1="http://ws.xservices.brutex.net"&gt;
&lt;ns1:return&gt;<fo:inline font-style="italic">1325488876</fo:inline>&lt;/ns1:return&gt;
&lt;/ns1:getTimestamp2Response&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;
</fo:block>
</fo:block>
</fo:block>
<fo:block id="N2028A"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">getTimezones</fo:marker><fo:block font-size="17.28pt">2.2.11. getTimezones</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
Returns all time zones this implementation (more precisely your JVM) is aware of.
You have to use the
id to refer to a time zone, the display name is specific to the localisation of your
JVM.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The offset shows the time difference to Greenwich Time (GMT), also known as UTC.
The daylight saving time is not taken into account for the offset.</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Sample response</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"><fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2029A">
&lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns1:getTimezonesResponse xmlns:ns1="http://ws.xservices.brutex.net"&gt;
&lt;ns1:return&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT-12:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT+12&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT-11:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT+11&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;West Samoa Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;MIT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;West Samoa Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Apia&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Samoa Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Midway&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Niue Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Niue&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Samoa Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Pago_Pago&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Samoa Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Samoa&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Samoa Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;US/Samoa&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Hawaii-Aleutische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Adak&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Hawaii-Aleutische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Atka&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT-10:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT+10&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Hawaii Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;HST&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Tokelau Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Fakaofo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Hawaii Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Honolulu&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Hawaii Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Johnston&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Cook-Inseln Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Rarotonga&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Tahiti Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Tahiti&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Hawaii Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;SystemV/HST10&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Hawaii-Aleutische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;US/Aleutian&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Hawaii Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;US/Hawaii&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Marquesas Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Marquesas&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-34200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Alaska Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;AST&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Alaska Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Anchorage&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Alaska Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Juneau&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Alaska Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Nome&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Alaska Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Yakutat&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT-09:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT+9&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Gambier Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Gambier&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Alaska Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;SystemV/YST9&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Alaska Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;SystemV/YST9YDT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Alaska Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;US/Alaska&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Dawson&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Ensenada&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Los_Angeles&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Santa_Isabel&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Tijuana&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Vancouver&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Whitehorse&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Canada/Pacific&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Canada/Yukon&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT-08:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT+8&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Mexico/BajaNorte&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;PST&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;PST8PDT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pitcairn Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Pitcairn&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;SystemV/PST8&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;SystemV/PST8PDT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;US/Pacific&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pazifische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;US/Pacific-New&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Boise&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Cambridge_Bay&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Chihuahua&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Dawson_Creek&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Denver&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Edmonton&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Hermosillo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Inuvik&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Mazatlan&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Ojinaga&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Phoenix&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Shiprock&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Yellowknife&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Canada/Mountain&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT-07:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT+7&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;MST&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;MST7MDT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Mexico/BajaSur&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Navajo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;PNT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;SystemV/MST7&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;SystemV/MST7MDT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;US/Arizona&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rocky Mountains Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;US/Mountain&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Belize&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Cancun&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Chicago&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Costa_Rica&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/El_Salvador&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Guatemala&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Indiana/Knox&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Indiana/Tell_City&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Knox_IN&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Managua&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Matamoros&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Menominee&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Merida&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Mexico_City&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Monterrey&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/North_Dakota/Center&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/North_Dakota/New_Salem&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Rainy_River&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Rankin_Inlet&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Regina&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Swift_Current&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Tegucigalpa&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Winnipeg&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;CST&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;CST6CDT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Canada/Central&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Canada/East-Saskatchewan&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Canada/Saskatchewan&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osterinseln Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Chile/EasterIsland&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT-06:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT+6&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Mexico/General&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osterinseln Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Easter&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Galapagos Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Galapagos&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;SystemV/CST6&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;SystemV/CST6CDT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;US/Central&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;US/Indiana-Starke&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Atikokan&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Kolumbianische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Bogota&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Cayman&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Coral_Harbour&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Detroit&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Fort_Wayne&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Grand_Turk&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ecuadorianische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Guayaquil&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Kubanische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Havana&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Indiana/Indianapolis&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Indiana/Marengo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Indiana/Petersburg&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Indiana/Vevay&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Indiana/Vincennes&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Indiana/Winamac&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Indianapolis&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Iqaluit&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Jamaica&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Kentucky/Louisville&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Kentucky/Monticello&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Peruanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Lima&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Louisville&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Montreal&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Nassau&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/New_York&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Nipigon&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Panama&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Pangnirtung&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Port-au-Prince&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Resolute&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Thunder_Bay&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Toronto&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Canada/Eastern&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Kubanische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Cuba&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;EST&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;EST5EDT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT-05:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT+5&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;IET&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Jamaica&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;SystemV/EST5&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;SystemV/EST5EDT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;US/East-Indiana&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;US/Eastern&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;US/Michigan&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Venezuelanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Caracas&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-16200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Anguilla&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Antigua&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Argentina/San_Luis&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Aruba&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Paraguay Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Asuncion&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Barbados&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Blanc-Sablon&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Amazonas Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Boa_Vista&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Amazonas Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Campo_Grande&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Amazonas Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Cuiaba&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Curacao&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Dominica&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Amazonas Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Eirunepe&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Glace_Bay&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Goose_Bay&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Grenada&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Guadeloupe&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Guyanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Guyana&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Halifax&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Bolivianische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/La_Paz&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Amazonas Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Manaus&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Marigot&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Martinique&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Moncton&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Montserrat&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Port_of_Spain&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Amazonas Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Porto_Acre&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Amazonas Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Porto_Velho&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Puerto_Rico&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Amazonas Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Rio_Branco&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chilenische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Santiago&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Santo_Domingo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/St_Barthelemy&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/St_Kitts&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/St_Lucia&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/St_Thomas&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/St_Vincent&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Thule&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Tortola&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Virgin&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chilenische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Antarctica/Palmer&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Atlantic/Bermuda&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Falkland Inseln Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Atlantic/Stanley&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Amazonas Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Brazil/Acre&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Amazonas Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Brazil/West&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Canada/Atlantic&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chilenische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Chile/Continental&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT-04:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT+4&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;PRT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;SystemV/AST4&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Atlantik Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;SystemV/AST4ADT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Neufundland Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/St_Johns&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-12600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Neufundland Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;CNT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-12600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Neufundland Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Canada/Newfoundland&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-12600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;AGT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Brasilianische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Araguaina&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Argentina/Buenos_Aires&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Argentina/Catamarca&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Argentina/ComodRivadavia&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Argentina/Cordoba&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Argentina/Jujuy&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Argentina/La_Rioja&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Argentina/Mendoza&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Argentina/Rio_Gallegos&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Argentina/Salta&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Argentina/San_Juan&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Argentina/Tucuman&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Argentina/Ushuaia&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Brasilianische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Bahia&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Brasilianische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Belem&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Buenos_Aires&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Catamarca&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Französisch-Guiana Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Cayenne&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Cordoba&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Brasilianische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Fortaleza&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westgrönländische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Godthab&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Jujuy&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Brasilianische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Maceio&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Mendoza&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pierre &amp;amp; Miquelon Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Miquelon&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Uruguayische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Montevideo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Suriname Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Paramaribo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Brasilianische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Recife&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Argentinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Rosario&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Brasilianische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Santarem&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Brasilianische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Sao_Paulo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Rothera Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Antarctica/Rothera&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Brasilianische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;BET&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Brasilianische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Brazil/East&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT-03:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT+3&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Fernando de Noronha Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Noronha&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;South Georgia Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Atlantic/South_Georgia&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Fernando de Noronha Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Brazil/DeNoronha&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT-02:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT+2&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ostgrönländische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Scoresbysund&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Azoren Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Atlantic/Azores&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Kap Verde Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Atlantic/Cape_Verde&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT-01:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT+1&lt;/ns1:id&gt;
&lt;ns1:offset&gt;-3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Abidjan&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ghanaische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Accra&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Bamako&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Banjul&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Bissau&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westeuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Casablanca&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Conakry&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Dakar&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westeuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/El_Aaiun&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Freetown&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Lome&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Monrovia&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Nouakchott&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Ouagadougou&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Sao_Tome&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Timbuktu&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;America/Danmarkshavn&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westeuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Atlantic/Canary&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westeuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Atlantic/Faeroe&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westeuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Atlantic/Faroe&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westeuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Atlantic/Madeira&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Atlantic/Reykjavik&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Atlantic/St_Helena&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Eire&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+00:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+00:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT+0&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+00:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT-0&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+00:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT0&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/Greenwich&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Koordinierte Universalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/UCT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Koordinierte Universalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/UTC&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Koordinierte Universalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/Universal&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Koordinierte Universalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/Zulu&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Belfast&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Dublin&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Guernsey&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Isle_of_Man&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Jersey&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westeuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Lisbon&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/London&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;GB&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;GB-Eire&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;GMT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+00:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;GMT0&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Greenwich&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Greenwich Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Iceland&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westeuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Portugal&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Koordinierte Universalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;UCT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Koordinierte Universalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;UTC&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Koordinierte Universalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Universal&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westeuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;WET&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Koordinierte Universalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Zulu&lt;/ns1:id&gt;
&lt;ns1:offset&gt;0&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Algiers&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Bangui&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Brazzaville&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Ceuta&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Douala&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Kinshasa&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Lagos&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Libreville&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Luanda&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Malabo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Ndjamena&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Niamey&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Porto-Novo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Tunis&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Windhoek&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Arctic/Longyearbyen&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Atlantic/Jan_Mayen&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;CET&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;ECT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+01:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT-1&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Amsterdam&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Andorra&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Belgrade&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Berlin&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Bratislava&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Brussels&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Budapest&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Copenhagen&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Gibraltar&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Ljubljana&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Luxembourg&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Madrid&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Malta&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Monaco&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Oslo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Paris&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Podgorica&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Prague&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Rome&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/San_Marino&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Sarajevo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Skopje&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Stockholm&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Tirane&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Vaduz&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Vatican&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Vienna&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Warsaw&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Zagreb&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Zurich&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentraleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;MET&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mitteleuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Poland&lt;/ns1:id&gt;
&lt;ns1:offset&gt;3600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;ART&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentralafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Blantyre&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentralafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Bujumbura&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Cairo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentralafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Gaborone&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentralafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Harare&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Südafrikanische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Johannesburg&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentralafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Kigali&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentralafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Lubumbashi&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentralafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Lusaka&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentralafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Maputo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Südafrikanische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Maseru&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Südafrikanische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Mbabane&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Tripoli&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Amman&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Beirut&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Damascus&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Gaza&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Istanbul&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Israelische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Jerusalem&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Nicosia&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Israelische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Tel_Aviv&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentralafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;CAT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;EET&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Egypt&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+02:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT-2&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Athens&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Bucharest&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Chisinau&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Helsinki&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Istanbul&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Kaliningrad&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Kiev&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Mariehamn&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Minsk&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Nicosia&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Riga&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Simferopol&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Sofia&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Tallinn&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Tiraspol&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Uzhgorod&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Vilnius&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Zaporozhye&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Israelische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Israel&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Libya&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Osteuropäische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Turkey&lt;/ns1:id&gt;
&lt;ns1:offset&gt;7200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ostafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Addis_Ababa&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ostafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Asmara&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ostafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Asmera&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ostafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Dar_es_Salaam&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ostafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Djibouti&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ostafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Kampala&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ostafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Khartoum&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ostafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Mogadishu&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ostafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Africa/Nairobi&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Syowa Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Antarctica/Syowa&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Arabische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Aden&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Arabische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Baghdad&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Arabische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Bahrain&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Arabische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Kuwait&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Arabische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Qatar&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Arabische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Riyadh&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ostafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;EAT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+03:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT-3&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Moskauer Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Moscow&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Wolgograder Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Volgograd&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ostafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Indian/Antananarivo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ostafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Indian/Comoro&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ostafrikanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Indian/Mayotte&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Moskauer Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;W-SU&lt;/ns1:id&gt;
&lt;ns1:offset&gt;10800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+03:07&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Riyadh87&lt;/ns1:id&gt;
&lt;ns1:offset&gt;11224&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+03:07&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Riyadh88&lt;/ns1:id&gt;
&lt;ns1:offset&gt;11224&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+03:07&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Riyadh89&lt;/ns1:id&gt;
&lt;ns1:offset&gt;11224&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+03:07&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Mideast/Riyadh87&lt;/ns1:id&gt;
&lt;ns1:offset&gt;11224&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+03:07&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Mideast/Riyadh88&lt;/ns1:id&gt;
&lt;ns1:offset&gt;11224&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+03:07&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Mideast/Riyadh89&lt;/ns1:id&gt;
&lt;ns1:offset&gt;11224&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Iranische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Tehran&lt;/ns1:id&gt;
&lt;ns1:offset&gt;12600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Iranische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Iran&lt;/ns1:id&gt;
&lt;ns1:offset&gt;12600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Aserbaidschanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Baku&lt;/ns1:id&gt;
&lt;ns1:offset&gt;14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Golf Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Dubai&lt;/ns1:id&gt;
&lt;ns1:offset&gt;14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Golf Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Muscat&lt;/ns1:id&gt;
&lt;ns1:offset&gt;14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Georgische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Tbilisi&lt;/ns1:id&gt;
&lt;ns1:offset&gt;14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Armenische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Yerevan&lt;/ns1:id&gt;
&lt;ns1:offset&gt;14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+04:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT-4&lt;/ns1:id&gt;
&lt;ns1:offset&gt;14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Samarische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Europe/Samara&lt;/ns1:id&gt;
&lt;ns1:offset&gt;14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Seychellen Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Indian/Mahe&lt;/ns1:id&gt;
&lt;ns1:offset&gt;14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mauritius Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Indian/Mauritius&lt;/ns1:id&gt;
&lt;ns1:offset&gt;14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Reunion Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Indian/Reunion&lt;/ns1:id&gt;
&lt;ns1:offset&gt;14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Armenische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;NET&lt;/ns1:id&gt;
&lt;ns1:offset&gt;14400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Afghanistanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Kabul&lt;/ns1:id&gt;
&lt;ns1:offset&gt;16200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Davis Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Antarctica/Davis&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Mawson Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Antarctica/Mawson&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Aqtau Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Aqtau&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Aqtobe Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Aqtobe&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Turkmenische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Ashgabat&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Turkmenische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Ashkhabad&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Tadschikische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Dushanbe&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pakistanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Karachi&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Oral Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Oral&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Usbekistan Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Samarkand&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Usbekistan Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Tashkent&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Jekaterinburger Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Yekaterinburg&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+05:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT-5&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Französisch Süd- u. Antarktische Landzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Indian/Kerguelen&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Maledivische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Indian/Maldives&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Pakistanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;PLT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;18000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Indische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Calcutta&lt;/ns1:id&gt;
&lt;ns1:offset&gt;19800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Indische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Colombo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;19800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Indische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Kolkata&lt;/ns1:id&gt;
&lt;ns1:offset&gt;19800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Indische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;IST&lt;/ns1:id&gt;
&lt;ns1:offset&gt;19800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Nepalesische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Kathmandu&lt;/ns1:id&gt;
&lt;ns1:offset&gt;20700&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Nepalesische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Katmandu&lt;/ns1:id&gt;
&lt;ns1:offset&gt;20700&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Vostok Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Antarctica/Vostok&lt;/ns1:id&gt;
&lt;ns1:offset&gt;21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Alma Ata Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Almaty&lt;/ns1:id&gt;
&lt;ns1:offset&gt;21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Kirgisische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Bishkek&lt;/ns1:id&gt;
&lt;ns1:offset&gt;21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Bangladesch Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Dacca&lt;/ns1:id&gt;
&lt;ns1:offset&gt;21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Bangladesch Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Dhaka&lt;/ns1:id&gt;
&lt;ns1:offset&gt;21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Nowosibirsker Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Novokuznetsk&lt;/ns1:id&gt;
&lt;ns1:offset&gt;21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Nowosibirsker Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Novosibirsk&lt;/ns1:id&gt;
&lt;ns1:offset&gt;21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Omsk Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Omsk&lt;/ns1:id&gt;
&lt;ns1:offset&gt;21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Qyzylorda Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Qyzylorda&lt;/ns1:id&gt;
&lt;ns1:offset&gt;21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Bhutanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Thimbu&lt;/ns1:id&gt;
&lt;ns1:offset&gt;21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Bhutanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Thimphu&lt;/ns1:id&gt;
&lt;ns1:offset&gt;21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Bangladesch Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;BST&lt;/ns1:id&gt;
&lt;ns1:offset&gt;21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+06:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT-6&lt;/ns1:id&gt;
&lt;ns1:offset&gt;21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Indischer Ozean Territorium Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Indian/Chagos&lt;/ns1:id&gt;
&lt;ns1:offset&gt;21600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Myanmar Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Rangoon&lt;/ns1:id&gt;
&lt;ns1:offset&gt;23400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Cocos Islands Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Indian/Cocos&lt;/ns1:id&gt;
&lt;ns1:offset&gt;23400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Indochina Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Bangkok&lt;/ns1:id&gt;
&lt;ns1:offset&gt;25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Indochina Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Ho_Chi_Minh&lt;/ns1:id&gt;
&lt;ns1:offset&gt;25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Hovd Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Hovd&lt;/ns1:id&gt;
&lt;ns1:offset&gt;25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westindonesische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Jakarta&lt;/ns1:id&gt;
&lt;ns1:offset&gt;25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Krasnojarsker Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Krasnoyarsk&lt;/ns1:id&gt;
&lt;ns1:offset&gt;25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Indochina Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Phnom_Penh&lt;/ns1:id&gt;
&lt;ns1:offset&gt;25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westindonesische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Pontianak&lt;/ns1:id&gt;
&lt;ns1:offset&gt;25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Indochina Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Saigon&lt;/ns1:id&gt;
&lt;ns1:offset&gt;25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Indochina Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Vientiane&lt;/ns1:id&gt;
&lt;ns1:offset&gt;25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+07:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT-7&lt;/ns1:id&gt;
&lt;ns1:offset&gt;25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Christmas Island Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Indian/Christmas&lt;/ns1:id&gt;
&lt;ns1:offset&gt;25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Indochina Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;VST&lt;/ns1:id&gt;
&lt;ns1:offset&gt;25200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Brunei Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Brunei&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Choibalsan Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Choibalsan&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chinesische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Chongqing&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chinesische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Chungking&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chinesische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Harbin&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Hongkong Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Hong_Kong&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Irkutsk Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Irkutsk&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chinesische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Kashgar&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Malaysische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Kuala_Lumpur&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Malaysische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Kuching&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chinesische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Macao&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chinesische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Macau&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentralindonesische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Makassar&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Philippinische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Manila&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chinesische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Shanghai&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Singapur Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Singapore&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chinesische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Taipei&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentralindonesische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Ujung_Pandang&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ulaanbaatar Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Ulaanbaatar&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ulaanbaatar Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Ulan_Bator&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chinesische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Urumqi&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westliche Normalzeit (Australien)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Perth&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Westliche Normalzeit (Australien)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/West&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chinesische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;CTT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+08:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT-8&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Hongkong Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Hongkong&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chinesische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;PRC&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Singapur Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Singapore&lt;/ns1:id&gt;
&lt;ns1:offset&gt;28800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentral-Westliche Normalzeit (Australien)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Eucla&lt;/ns1:id&gt;
&lt;ns1:offset&gt;31500&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Timor-Leste Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Dili&lt;/ns1:id&gt;
&lt;ns1:offset&gt;32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ostindonesische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Jayapura&lt;/ns1:id&gt;
&lt;ns1:offset&gt;32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Koreanische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Pyongyang&lt;/ns1:id&gt;
&lt;ns1:offset&gt;32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Koreanische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Seoul&lt;/ns1:id&gt;
&lt;ns1:offset&gt;32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Japanische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Tokyo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Jakutsk Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Yakutsk&lt;/ns1:id&gt;
&lt;ns1:offset&gt;32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+09:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT-9&lt;/ns1:id&gt;
&lt;ns1:offset&gt;32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Japanische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;JST&lt;/ns1:id&gt;
&lt;ns1:offset&gt;32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Japanische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Japan&lt;/ns1:id&gt;
&lt;ns1:offset&gt;32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Palau Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Palau&lt;/ns1:id&gt;
&lt;ns1:offset&gt;32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Koreanische Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;ROK&lt;/ns1:id&gt;
&lt;ns1:offset&gt;32400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit (Northern Territory)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;ACT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;34200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit (Südaustralien)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Adelaide&lt;/ns1:id&gt;
&lt;ns1:offset&gt;34200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit (Südaustralien/New South Wales)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Broken_Hill&lt;/ns1:id&gt;
&lt;ns1:offset&gt;34200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit (Northern Territory)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Darwin&lt;/ns1:id&gt;
&lt;ns1:offset&gt;34200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit (Northern Territory)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/North&lt;/ns1:id&gt;
&lt;ns1:offset&gt;34200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit (Südaustralien)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/South&lt;/ns1:id&gt;
&lt;ns1:offset&gt;34200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Zentrale Normalzeit (Südaustralien/New South Wales)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Yancowinna&lt;/ns1:id&gt;
&lt;ns1:offset&gt;34200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit (New South Wales)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;AET&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Dumont-d'Urville Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Antarctica/DumontDUrville&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Sakhalin Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Sakhalin&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Wladiwostok Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Vladivostok&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit (New South Wales)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/ACT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit (Queensland)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Brisbane&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit (New South Wales)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Canberra&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit (New South Wales)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Currie&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit (Tasmanien)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Hobart&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit (Queensland)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Lindeman&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit (Victoria)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Melbourne&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit (New South Wales)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/NSW&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit (Queensland)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Queensland&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit (New South Wales)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Sydney&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit (Tasmanien)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Tasmania&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Östliche Normalzeit (Victoria)&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Victoria&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+10:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT-10&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chamorro Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Guam&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Papua-Neuguinea Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Port_Moresby&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chamorro Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Saipan&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Truk Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Truk&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Truk Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Yap&lt;/ns1:id&gt;
&lt;ns1:offset&gt;36000&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Lord Howe Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/LHI&lt;/ns1:id&gt;
&lt;ns1:offset&gt;37800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Lord Howe Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Australia/Lord_Howe&lt;/ns1:id&gt;
&lt;ns1:offset&gt;37800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Casey Time&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Antarctica/Casey&lt;/ns1:id&gt;
&lt;ns1:offset&gt;39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Magadanische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Magadan&lt;/ns1:id&gt;
&lt;ns1:offset&gt;39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+11:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT-11&lt;/ns1:id&gt;
&lt;ns1:offset&gt;39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Vanuatu Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Efate&lt;/ns1:id&gt;
&lt;ns1:offset&gt;39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Salomoninseln Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Guadalcanal&lt;/ns1:id&gt;
&lt;ns1:offset&gt;39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Kosrae Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Kosrae&lt;/ns1:id&gt;
&lt;ns1:offset&gt;39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Neukaledonische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Noumea&lt;/ns1:id&gt;
&lt;ns1:offset&gt;39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Ponape Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Ponape&lt;/ns1:id&gt;
&lt;ns1:offset&gt;39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Salomoninseln Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;SST&lt;/ns1:id&gt;
&lt;ns1:offset&gt;39600&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Norfolk Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Norfolk&lt;/ns1:id&gt;
&lt;ns1:offset&gt;41400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Neuseeland Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Antarctica/McMurdo&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Neuseeland Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Antarctica/South_Pole&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Anadyr Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Anadyr&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Petropawlowsk-Kamtschatkische Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Asia/Kamchatka&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+12:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT-12&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Marshallinseln Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Kwajalein&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Neuseeland Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;NST&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Neuseeland Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;NZ&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Neuseeland Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Auckland&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Fidschi Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Fiji&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Tuvalu Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Funafuti&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Marshallinseln Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Kwajalein&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Marshallinseln Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Majuro&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Nauru Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Nauru&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Gilbert-Inseln Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Tarawa&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Wake Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Wake&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Wallis u. Futuna Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Wallis&lt;/ns1:id&gt;
&lt;ns1:offset&gt;43200&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chatham Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;NZ-CHAT&lt;/ns1:id&gt;
&lt;ns1:offset&gt;45900&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Chatham Normalzeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Chatham&lt;/ns1:id&gt;
&lt;ns1:offset&gt;45900&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+13:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT-13&lt;/ns1:id&gt;
&lt;ns1:offset&gt;46800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Phoenix Inseln Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Enderbury&lt;/ns1:id&gt;
&lt;ns1:offset&gt;46800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Tonga Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Tongatapu&lt;/ns1:id&gt;
&lt;ns1:offset&gt;46800&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;GMT+14:00&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Etc/GMT-14&lt;/ns1:id&gt;
&lt;ns1:offset&gt;50400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;ns1:timezone&gt;
&lt;ns1:displayname&gt;Line Inseln Zeit&lt;/ns1:displayname&gt;
&lt;ns1:id&gt;Pacific/Kiritimati&lt;/ns1:id&gt;
&lt;ns1:offset&gt;50400&lt;/ns1:offset&gt;
&lt;/ns1:timezone&gt;
&lt;/ns1:return&gt;
&lt;/ns1:getTimezonesResponse&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;
</fo:block>
</fo:block>
</fo:block>
<fo:block id="N2029F"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">parseDate</fo:marker><fo:block font-size="17.28pt">2.2.12. parseDate</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
Converts a string into date using pre-defined date formats
<fo:list-block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" space-after.optimum="1em" space-after.minimum="0.8em" space-after.maximum="1.2em" provisional-label-separation="0.2em" provisional-distance-between-starts="1.0em" id="N202A7"><fo:list-item space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" id="N202A9"><fo:list-item-label end-indent="label-end()"><fo:block>•</fo:block></fo:list-item-label><fo:list-item-body start-indent="body-start()"><fo:block>
<fo:block>ISO8601 (example: "2012-01-17T23:50:00+01:00")</fo:block>
</fo:block></fo:list-item-body></fo:list-item><fo:list-item space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" id="N202AF"><fo:list-item-label end-indent="label-end()"><fo:block>•</fo:block></fo:list-item-label><fo:list-item-body start-indent="body-start()"><fo:block>
<fo:block>RFC822 (example: "2012-01-17T23:50:00+0100")</fo:block>
</fo:block></fo:list-item-body></fo:list-item><fo:list-item space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" id="N202B5"><fo:list-item-label end-indent="label-end()"><fo:block>•</fo:block></fo:list-item-label><fo:list-item-body start-indent="body-start()"><fo:block>
<fo:block>YYYYMMDD (example: "2012/01/17")</fo:block>
</fo:block></fo:list-item-body></fo:list-item><fo:list-item space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" id="N202BB"><fo:list-item-label end-indent="label-end()"><fo:block>•</fo:block></fo:list-item-label><fo:list-item-body start-indent="body-start()"><fo:block>
<fo:block>DDMMYYYY (example: "17.01.2012")</fo:block>
</fo:block></fo:list-item-body></fo:list-item></fo:list-block>
</fo:block>
</fo:block>
<fo:block id="N202C4"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">parseDateAdvanced</fo:marker><fo:block font-size="17.28pt">2.2.13. parseDateAdvanced</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
Converts a string into date using any format.
</fo:block>
</fo:block>
</fo:block>
<fo:block id="executeservices"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">ExecuteServices</fo:marker><fo:block font-size="20.735999999999997pt">2.3. ExecuteServices</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The ExecuteService bundles local and remote command
execution operations. Its WSDL is located at
http://server:port/XServices/ExecuteService?wsdl</fo:block>
<fo:block id="N202D9"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">rExec
</fo:marker><fo:block font-size="17.28pt">2.3.1. rExec
</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">provides remote execution facilities with authentication based on
user names and passwords.</fo:block>
<fo:block id="N202E2"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">2.3.1.1. Input parameters
</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
<fo:block xmlns:rx="http://www.renderx.com/XSL/Extensions" space-before.minimum="0.5em" space-before.optimum="1em" space-before.maximum="2em" space-after.minimum="0.5em" space-after.optimum="1em" space-after.maximum="2em" keep-together.within-column="auto" id="N202E9"><fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" font-weight="bold" font-size="12pt" hyphenate="false" space-after.minimum="0.4em" space-after.optimum="0.6em" space-after.maximum="0.8em" keep-with-next.within-column="always">Table 2.1. rExec
input parameters
</fo:block><fo:table border-before-width.conditionality="retain" border-collapse="collapse" border-start-style="solid" border-end-style="solid" border-top-style="solid" border-bottom-style="solid" border-start-width="0.5pt" border-end-width="0.5pt" border-top-width="0.5pt" border-bottom-width="0.5pt" border-start-color="black" border-end-color="black" border-top-color="black" border-bottom-color="black" table-layout="fixed" width="100%"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-column column-number="4" column-width="proportional-column-width(1)"/><fo:table-header end-indent="0pt" start-indent="0pt"><fo:table-row keep-with-next.within-column="always"><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block font-weight="bold">parameter</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block font-weight="bold">type</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block font-weight="bold">required</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block font-weight="bold">description</fo:block></fo:table-cell></fo:table-row></fo:table-header><fo:table-body end-indent="0pt" start-indent="0pt"><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>host</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>HostConnection</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>Yes</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block>
Host where to execute the command. See
<fo:basic-link internal-destination="hostconnection"><fo:inline>HostConnection</fo:inline></fo:basic-link>
.
</fo:block></fo:table-cell></fo:table-row><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>command</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>String</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>No</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block>Any command including arguments</fo:block></fo:table-cell></fo:table-row><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>timeout</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>Long</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>Yes</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt"><fo:block>Timeout in milliseconds. The command is forcefully terminated when timeout is reached.</fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N2034E"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">2.3.1.2. Output parameters
</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block id="N20353"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="12pt">2.3.1.2.1. ReturnCode type</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The ReturnCode type is used as the generic answer type for most of the
BruteXservices
operations.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The defining Java class is
<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/ReturnCode.html)">
<fo:inline font-family="monospace">net.brutex.xservices.types.ReturnCode</fo:inline>
</fo:basic-link><fo:inline hyphenate="false"> [<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/ReturnCode.html)">javadoc/net/brutex/xservices/types/ReturnCode.html</fo:basic-link>]</fo:inline>
.
</fo:block>
<fo:block id="N2036A"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Schema definition</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2036E">
&lt;xs:complexType name="ReturnCodeType"&gt;
&lt;xs:sequence&gt;
&lt;xs:element name="returnCode" type="xs:int"/&gt;
&lt;xs:element minOccurs="0" name="stdOut" type="xs:string"/&gt;
&lt;xs:element minOccurs="0" name="stdErr" type="xs:string"/&gt;
&lt;xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="<fo:basic-link internal-destination="antproperty"><fo:inline>tns:antProperty</fo:inline></fo:basic-link>"/&gt;
&lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</fo:block>
 
<fo:block id="N20376"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Example XML</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2037A">
&lt;ReturnCode
xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;returnCode&gt;0&lt;/returnCode&gt;
&lt;stdOut/&gt;
&lt;stdErr/&gt;
&lt;propertyList&gt;
<fo:inline font-style="italic">
See
<fo:basic-link internal-destination="antproperty"><fo:inline>tns:antProperty</fo:inline></fo:basic-link>
for details about the &lt;propertyList&gt; elements.
</fo:inline>
&lt;name&gt;key1&lt;/name&gt;
&lt;value&gt;value1&lt;/value&gt;
&lt;/propertyList&gt;
&lt;propertyList&gt;
&lt;name&gt;key2&lt;/name&gt;
&lt;value&gt;value2&lt;/value&gt;
&lt;/propertyList&gt;
&lt;/ReturnCode&gt;
</fo:block>
 
</fo:block>
</fo:block>
</fo:block>
<fo:block id="N20388"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">runCommand</fo:marker><fo:block font-size="17.28pt">2.3.2. runCommand</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Run an executable with arguments on the server providing the web
service. The command is run within the environment and under the user
privileges of the user who is running the Tomcat Server.</fo:block>
<fo:block id="N20391"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">2.3.2.1. Input parameters
</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
<fo:block xmlns:rx="http://www.renderx.com/XSL/Extensions" space-before.minimum="0.5em" space-before.optimum="1em" space-before.maximum="2em" space-after.minimum="0.5em" space-after.optimum="1em" space-after.maximum="2em" keep-together.within-column="auto" id="N20398"><fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" font-weight="bold" font-size="12pt" hyphenate="false" space-after.minimum="0.4em" space-after.optimum="0.6em" space-after.maximum="0.8em" keep-with-next.within-column="always">Table 2.2. runCommand input parameters</fo:block><fo:table border-before-width.conditionality="retain" border-collapse="collapse" border-start-style="solid" border-end-style="solid" border-top-style="solid" border-bottom-style="solid" border-start-width="0.5pt" border-end-width="0.5pt" border-top-width="0.5pt" border-bottom-width="0.5pt" border-start-color="black" border-end-color="black" border-top-color="black" border-bottom-color="black" table-layout="fixed" width="100%"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-column column-number="4" column-width="proportional-column-width(1)"/><fo:table-header end-indent="0pt" start-indent="0pt"><fo:table-row keep-with-next.within-column="always"><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block font-weight="bold">parameter</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block font-weight="bold">type</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block font-weight="bold">required</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block font-weight="bold">description</fo:block></fo:table-cell></fo:table-row></fo:table-header><fo:table-body end-indent="0pt" start-indent="0pt"><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>executable</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>String</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>Yes</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block>Command to be run. The command may be specified with full
path using forward slash "/" as path separator.</fo:block></fo:table-cell></fo:table-row><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>argline</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>String</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>No</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block>Any command line arguments</fo:block></fo:table-cell></fo:table-row><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>timeout</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>Long</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>Yes</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt"><fo:block>Timeout in milliseconds. The command is forcefully terminated when timeout is reached.</fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N203F9"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">2.3.2.2. Output parameters
</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block id="N203FE"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="12pt">2.3.2.2.1. ReturnCode type</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The ReturnCode type is used as the generic answer type for most of the
BruteXservices
operations.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The defining Java class is
<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/ReturnCode.html)">
<fo:inline font-family="monospace">net.brutex.xservices.types.ReturnCode</fo:inline>
</fo:basic-link><fo:inline hyphenate="false"> [<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/ReturnCode.html)">javadoc/net/brutex/xservices/types/ReturnCode.html</fo:basic-link>]</fo:inline>
.
</fo:block>
<fo:block id="N20415"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Schema definition</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20419">
&lt;xs:complexType name="ReturnCodeType"&gt;
&lt;xs:sequence&gt;
&lt;xs:element name="returnCode" type="xs:int"/&gt;
&lt;xs:element minOccurs="0" name="stdOut" type="xs:string"/&gt;
&lt;xs:element minOccurs="0" name="stdErr" type="xs:string"/&gt;
&lt;xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="<fo:basic-link internal-destination="antproperty"><fo:inline>tns:antProperty</fo:inline></fo:basic-link>"/&gt;
&lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</fo:block>
 
<fo:block id="N20421"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Example XML</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20425">
&lt;ReturnCode
xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;returnCode&gt;0&lt;/returnCode&gt;
&lt;stdOut/&gt;
&lt;stdErr/&gt;
&lt;propertyList&gt;
<fo:inline font-style="italic">
See
<fo:basic-link internal-destination="antproperty"><fo:inline>tns:antProperty</fo:inline></fo:basic-link>
for details about the &lt;propertyList&gt; elements.
</fo:inline>
&lt;name&gt;key1&lt;/name&gt;
&lt;value&gt;value1&lt;/value&gt;
&lt;/propertyList&gt;
&lt;propertyList&gt;
&lt;name&gt;key2&lt;/name&gt;
&lt;value&gt;value2&lt;/value&gt;
&lt;/propertyList&gt;
&lt;/ReturnCode&gt;
</fo:block>
 
</fo:block>
</fo:block>
<fo:block id="N20432"><fo:block/>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
Sample request: Start Windows Command Interpreter and print "Hello World" to STDOUT.
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20436">
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net"&gt;
&lt;soapenv:Header/&gt;
&lt;soapenv:Body&gt;
&lt;ws:runCommand&gt;
&lt;executable&gt;c:/windows/system32/cmd.exe&lt;/executable&gt;
&lt;argline&gt;/C "echo Hallo Welt!"&lt;/argline&gt;
&lt;timeout&gt;3000&lt;/timeout&gt;
&lt;/ws:runCommand&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2043A">
&lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns2:runCommandResponse xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;return&gt;
&lt;returnCode&gt;0&lt;/returnCode&gt;
&lt;stdOut/&gt;
&lt;stdErr/&gt;
&lt;propertyList&gt;
&lt;name&gt;ExecuteService.result&lt;/name&gt;
&lt;value&gt;0&lt;/value&gt;
&lt;/propertyList&gt;
&lt;propertyList&gt;
&lt;name&gt;ExecuteService.stdout&lt;/name&gt;
&lt;value&gt;Hallo Welt!&lt;/value&gt;
&lt;/propertyList&gt;
&lt;propertyList&gt;
&lt;name&gt;ExecuteService.stderr&lt;/name&gt;
&lt;value/&gt;
&lt;/propertyList&gt;
&lt;/return&gt;
&lt;/ns2:runCommandResponse&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;</fo:block></fo:block></fo:block>
<fo:block id="N2043E"><fo:block/>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
Sample request: Start notepad.exe and close it after 15 seconds.
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20442">
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net"&gt;
&lt;soapenv:Header/&gt;
&lt;soapenv:Body&gt;
&lt;ws:runCommand&gt;
&lt;executable&gt;c:/windows/system32/notepad.exe&lt;/executable&gt;
&lt;argline&gt;&lt;/argline&gt;
&lt;timeout&gt;15000&lt;/timeout&gt;
&lt;/ws:runCommand&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;</fo:block></fo:block></fo:block>
</fo:block>
<fo:block id="N20447"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">runCommandAsync</fo:marker><fo:block font-size="17.28pt">2.3.3. runCommandAsync</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Run an executable with arguments on the server providing the web
service and don't wait for the executable to finish.
The command is run within the environment and under the user
privileges of the user who is running the Tomcat Server.</fo:block>
</fo:block>
<fo:block id="N20451"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">runCommandAsyncWithArgs</fo:marker><fo:block font-size="17.28pt">2.3.4. runCommandAsyncWithArgs</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Run an executable with arguments on the server providing the web
service and don't wait for the executable to finish.
The command is run within the environment and under the user
privileges of the user who is running the Tomcat Server.</fo:block>
</fo:block>
<fo:block id="N2045B"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">runCommandWithArgs</fo:marker><fo:block font-size="17.28pt">2.3.5. runCommandWithArgs</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Run an executable with arguments on the server providing the web
service. The command is run within the environment and under the user
privileges of the user who is running the Tomcat Server.</fo:block>
</fo:block>
<fo:block id="N20465"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">runCommandWithSSH</fo:marker><fo:block font-size="17.28pt">2.3.6. runCommandWithSSH</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Executes a command through a SSH session.</fo:block>
<fo:block id="N2046E"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">2.3.6.1. Input parameters
</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
<fo:block xmlns:rx="http://www.renderx.com/XSL/Extensions" space-before.minimum="0.5em" space-before.optimum="1em" space-before.maximum="2em" space-after.minimum="0.5em" space-after.optimum="1em" space-after.maximum="2em" keep-together.within-column="auto" id="N20475"><fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" font-weight="bold" font-size="12pt" hyphenate="false" space-after.minimum="0.4em" space-after.optimum="0.6em" space-after.maximum="0.8em" keep-with-next.within-column="always">Table 2.3. runCommandWithSSH input parameters</fo:block><fo:table border-before-width.conditionality="retain" border-collapse="collapse" border-start-style="solid" border-end-style="solid" border-top-style="solid" border-bottom-style="solid" border-start-width="0.5pt" border-end-width="0.5pt" border-top-width="0.5pt" border-bottom-width="0.5pt" border-start-color="black" border-end-color="black" border-top-color="black" border-bottom-color="black" table-layout="fixed" width="100%"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-column column-number="4" column-width="proportional-column-width(1)"/><fo:table-header end-indent="0pt" start-indent="0pt"><fo:table-row keep-with-next.within-column="always"><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block font-weight="bold">parameter</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block font-weight="bold">type</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block font-weight="bold">required</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block font-weight="bold">description</fo:block></fo:table-cell></fo:table-row></fo:table-header><fo:table-body end-indent="0pt" start-indent="0pt"><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>host</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>HostConnection</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>Yes</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block>
Host to connect to (see:
<fo:basic-link internal-destination="hostconnection"><fo:inline>tns:HostConnection</fo:inline></fo:basic-link>
)
</fo:block></fo:table-cell></fo:table-row><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>command</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>String</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>No</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block>The command to execute.</fo:block></fo:table-cell></fo:table-row><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>timeout</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>Long</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>Yes</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt"><fo:block>Timeout in milliseconds. The command is forcefully terminated when timeout is reached.</fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N204DA"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">2.3.6.2. Output parameters
</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block id="N204DF"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="12pt">2.3.6.2.1. ReturnCode type</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The ReturnCode type is used as the generic answer type for most of the
BruteXservices
operations.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The defining Java class is
<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/ReturnCode.html)">
<fo:inline font-family="monospace">net.brutex.xservices.types.ReturnCode</fo:inline>
</fo:basic-link><fo:inline hyphenate="false"> [<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/ReturnCode.html)">javadoc/net/brutex/xservices/types/ReturnCode.html</fo:basic-link>]</fo:inline>
.
</fo:block>
<fo:block id="N204F6"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Schema definition</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N204FA">
&lt;xs:complexType name="ReturnCodeType"&gt;
&lt;xs:sequence&gt;
&lt;xs:element name="returnCode" type="xs:int"/&gt;
&lt;xs:element minOccurs="0" name="stdOut" type="xs:string"/&gt;
&lt;xs:element minOccurs="0" name="stdErr" type="xs:string"/&gt;
&lt;xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="<fo:basic-link internal-destination="antproperty"><fo:inline>tns:antProperty</fo:inline></fo:basic-link>"/&gt;
&lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</fo:block>
 
<fo:block id="N20502"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Example XML</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20506">
&lt;ReturnCode
xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;returnCode&gt;0&lt;/returnCode&gt;
&lt;stdOut/&gt;
&lt;stdErr/&gt;
&lt;propertyList&gt;
<fo:inline font-style="italic">
See
<fo:basic-link internal-destination="antproperty"><fo:inline>tns:antProperty</fo:inline></fo:basic-link>
for details about the &lt;propertyList&gt; elements.
</fo:inline>
&lt;name&gt;key1&lt;/name&gt;
&lt;value&gt;value1&lt;/value&gt;
&lt;/propertyList&gt;
&lt;propertyList&gt;
&lt;name&gt;key2&lt;/name&gt;
&lt;value&gt;value2&lt;/value&gt;
&lt;/propertyList&gt;
&lt;/ReturnCode&gt;
</fo:block>
 
</fo:block>
</fo:block>
<fo:block id="N20513"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">2.3.6.3. Sample Request:</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20518">
&lt;ws:runCommandWithSSH&gt;
&lt;host&gt;
&lt;hostname&gt;ssh.brutex.net&lt;/hostname&gt;
&lt;port&gt;22&lt;/port&gt;
&lt;user&gt;roger&lt;/user&gt;
&lt;password&gt;xxx&lt;/password&gt;
&lt;/host&gt;
&lt;command&gt;ls /etc/&lt;/command&gt;
&lt;timeout&gt;30000&lt;/timeout&gt;
&lt;/ws:runCommandWithSSH&gt;
</fo:block>
</fo:block>
</fo:block>
<fo:block id="N2051E"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">runCommandWithSSHKeyAuth</fo:marker><fo:block font-size="17.28pt">2.3.7. runCommandWithSSHKeyAuth</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Executes a command through a SSH session.</fo:block>
</fo:block>
<fo:block id="N20528"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">runJavaScript</fo:marker><fo:block font-size="17.28pt">2.3.8. runJavaScript</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Execute a JavaScript and or Java program using Mozilla Rhino JIT-Compiler.</fo:block>
</fo:block>
<fo:block id="N20532"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">telnet</fo:marker><fo:block font-size="17.28pt">2.3.9. telnet</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Runs a telnet session with an "expect shell" like behaviour.</fo:block>
<fo:block id="N2053B"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">2.3.9.1. Input parameters
</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
<fo:block xmlns:rx="http://www.renderx.com/XSL/Extensions" space-before.minimum="0.5em" space-before.optimum="1em" space-before.maximum="2em" space-after.minimum="0.5em" space-after.optimum="1em" space-after.maximum="2em" keep-together.within-column="auto" id="N20542"><fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" font-weight="bold" font-size="12pt" hyphenate="false" space-after.minimum="0.4em" space-after.optimum="0.6em" space-after.maximum="0.8em" keep-with-next.within-column="always">Table 2.4. telnet input parameters</fo:block><fo:table border-before-width.conditionality="retain" border-collapse="collapse" border-start-style="solid" border-end-style="solid" border-top-style="solid" border-bottom-style="solid" border-start-width="0.5pt" border-end-width="0.5pt" border-top-width="0.5pt" border-bottom-width="0.5pt" border-start-color="black" border-end-color="black" border-top-color="black" border-bottom-color="black" table-layout="fixed" width="100%"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-column column-number="4" column-width="proportional-column-width(1)"/><fo:table-header end-indent="0pt" start-indent="0pt"><fo:table-row keep-with-next.within-column="always"><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block font-weight="bold">parameter</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block font-weight="bold">type</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block font-weight="bold">required</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block font-weight="bold">description</fo:block></fo:table-cell></fo:table-row></fo:table-header><fo:table-body end-indent="0pt" start-indent="0pt"><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>host</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>HostConnection</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>Yes</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block>Host to connect to (see: <fo:basic-link internal-destination="hostconnection"><fo:inline>tns:HostConnection</fo:inline></fo:basic-link>)</fo:block></fo:table-cell></fo:table-row><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>prompt</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>String</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>No</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block>The prompt string to expect after login. This is used to recognize when
the session is open.</fo:block></fo:table-cell></fo:table-row><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>command</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>String</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>No</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block>The command to execute.</fo:block></fo:table-cell></fo:table-row><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>expect</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>String</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>No</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block>The prompt to expect after the command has been executed successfully.</fo:block></fo:table-cell></fo:table-row><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>timeout</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>Long</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>Yes</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt"><fo:block>Timeout in milliseconds. The command is forcefully terminated when timeout is reached.</fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N205C5"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">2.3.9.2. Output parameters</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block id="N205CA"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="12pt">2.3.9.2.1. ReturnCode type</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The ReturnCode type is used as the generic answer type for most of the
BruteXservices
operations.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The defining Java class is
<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/ReturnCode.html)">
<fo:inline font-family="monospace">net.brutex.xservices.types.ReturnCode</fo:inline>
</fo:basic-link><fo:inline hyphenate="false"> [<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/ReturnCode.html)">javadoc/net/brutex/xservices/types/ReturnCode.html</fo:basic-link>]</fo:inline>
.
</fo:block>
<fo:block id="N205E1"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Schema definition</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N205E5">
&lt;xs:complexType name="ReturnCodeType"&gt;
&lt;xs:sequence&gt;
&lt;xs:element name="returnCode" type="xs:int"/&gt;
&lt;xs:element minOccurs="0" name="stdOut" type="xs:string"/&gt;
&lt;xs:element minOccurs="0" name="stdErr" type="xs:string"/&gt;
&lt;xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="<fo:basic-link internal-destination="antproperty"><fo:inline>tns:antProperty</fo:inline></fo:basic-link>"/&gt;
&lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</fo:block>
 
<fo:block id="N205ED"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Example XML</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N205F1">
&lt;ReturnCode
xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;returnCode&gt;0&lt;/returnCode&gt;
&lt;stdOut/&gt;
&lt;stdErr/&gt;
&lt;propertyList&gt;
<fo:inline font-style="italic">
See
<fo:basic-link internal-destination="antproperty"><fo:inline>tns:antProperty</fo:inline></fo:basic-link>
for details about the &lt;propertyList&gt; elements.
</fo:inline>
&lt;name&gt;key1&lt;/name&gt;
&lt;value&gt;value1&lt;/value&gt;
&lt;/propertyList&gt;
&lt;propertyList&gt;
&lt;name&gt;key2&lt;/name&gt;
&lt;value&gt;value2&lt;/value&gt;
&lt;/propertyList&gt;
&lt;/ReturnCode&gt;
</fo:block>
 
</fo:block>
</fo:block>
<fo:block id="N205FE"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">2.3.9.3. Sample Request:</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20603">
&lt;ws:telnet&gt;
&lt;host&gt;
&lt;hostname&gt;localhost&lt;/hostname&gt;
&lt;port&gt;23&lt;/port&gt;
&lt;user&gt;brosenberger&lt;/user&gt;
&lt;password&gt;&lt;/password&gt;
&lt;/host&gt;
&lt;prompt&gt;C:\Users\brosenberger&amp;gt;&lt;/prompt&gt;
&lt;command&gt;dir c:\temp&lt;/command&gt;
&lt;expect&gt;enberger&amp;gt;&lt;/expect&gt;
&lt;timeout&gt;60000&lt;/timeout&gt;
&lt;/ws:telnet&gt;
</fo:block>
</fo:block>
</fo:block>
</fo:block>
<fo:block id="fileservices"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">FileServices</fo:marker><fo:block font-size="20.735999999999997pt">2.4. FileServices</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The FileServces bundles various file operations. Its WSDL is located at
http://server:port/XServices/FileService?wsdl</fo:block>
<fo:block id="N20614"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">downloadFile</fo:marker><fo:block font-size="17.28pt">2.4.1. downloadFile</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Downloads a file as base64 encoded.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2061C">
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net"&gt;
&lt;soapenv:Header/&gt;
&lt;soapenv:Body&gt;
&lt;!-- downloads a file from the XServices server as base64 encoded --&gt;
&lt;ws:downloadFile&gt;
&lt;file&gt;
&lt;type&gt;FILE&lt;/type&gt;
&lt;uri&gt;c:\temp\test.docx&lt;/uri&gt;
&lt;/file&gt;
&lt;/ws:downloadFile&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20620">
&lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns2:downloadFileResponse xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;return&gt;
&lt;content&gt;ADQBNA[... snipp ...]wAApzcAAAAA&lt;/content&gt;
&lt;filename&gt;test.docx&lt;/filename&gt;
&lt;/return&gt;
&lt;/ns2:downloadFileResponse&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Encoding files as base64 is very memory consuming!</fo:block>
</fo:block>
<fo:block id="N20629"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">encodeFile</fo:marker><fo:block font-size="17.28pt">2.4.2. encodeFile</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Encodes a file as base64.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20631">
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net"&gt;
&lt;soapenv:Header/&gt;
&lt;soapenv:Body&gt;
&lt;ws:encodeFile&gt;
&lt;file&gt;
&lt;type&gt;FILE&lt;/type&gt;
&lt;uri&gt;c:\temp\test.docx&lt;/uri&gt;
&lt;/file&gt;
&lt;/ws:encodeFile&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20634">
&lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns2:encodeFileResponse xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;return&gt;
&lt;content&gt;ADQBNA[... snipp ...]wAApzcAAAAA&lt;/content&gt;
&lt;filename&gt;test.docx&lt;/filename&gt;
&lt;/return&gt;
&lt;/ns2:encodeFileResponse&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">DEPRECATED: Encoding files as base64 is very memory consuming!</fo:block>
</fo:block>
</fo:block>
<fo:block id="jobservices"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">JobServices</fo:marker><fo:block font-size="20.735999999999997pt">2.5. JobServices</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The JobService bundles re-occuring or scheduled operations. Its WSDL is located at
http://server:port/XServices/JobService?wsdl</fo:block>
</fo:block>
<fo:block id="mailservices"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">MailServices</fo:marker><fo:block font-size="20.735999999999997pt">2.6. MailServices</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The MailService contains mail send and receive operations. Its WSDL is located at
http://server:port/XServices/MailService?wsdl</fo:block>
<fo:block id="N20655"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">sendMailSimple</fo:marker><fo:block font-size="17.28pt">2.6.1. sendMailSimple</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Send email.</fo:block>
</fo:block>
</fo:block>
<fo:block id="miscservices"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">MiscServices</fo:marker><fo:block font-size="20.735999999999997pt">2.7. MiscServices</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The MiscService bundles various operations. Its WSDL is located at
http://server:port/XServices/MiscService?wsdl</fo:block>
<fo:block id="N2066A"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">generateUUID</fo:marker><fo:block font-size="17.28pt">2.7.1. generateUUID</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Generates a UUID that represents a 128-bit value. This operation does not require any
input parameters. The output has the format:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20672">
0xFFFFFFFF00000000 time_low
0x00000000FFFF0000 time_mid
0x000000000000F000 version
0x0000000000000FFF time_hi
</fo:block>
The least significant long consists of the following unsigned fields:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20675">
0xC000000000000000 variant
0x3FFF000000000000 clock_seq
0x0000FFFFFFFFFFFF node
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20678">
&lt;soap:Envelope
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns1:generateUUIDResponse
xmlns:ns1="http://ws.xservices.brutex.net"&gt;
&lt;ns1:return&gt;<fo:inline font-style="italic">33b9e5c8-9102-423b-88af-bbee479ebea8</fo:inline>&lt;/ns1:return&gt;
&lt;/ns1:generateUUIDResponse&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;
</fo:block>
</fo:block>
</fo:block>
<fo:block id="N20680"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">getHostinfo</fo:marker><fo:block font-size="17.28pt">2.7.2. getHostinfo</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Collect information about a host address.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20688">
&lt;soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net"&gt;
&lt;soapenv:Header/&gt;
&lt;soapenv:Body&gt;
&lt;ws:getHostinfo&gt;
&lt;ws:hostname&gt;<fo:inline font-style="italic">google.com</fo:inline>&lt;/ws:hostname&gt;
&lt;/ws:getHostinfo&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2068E">
&lt;soap:Envelope
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns1:getHostinfoResponse
xmlns:ns1="http://ws.xservices.brutex.net"&gt;
&lt;ns1:return&gt;
&lt;ns1:domain&gt;<fo:inline font-style="italic">1e100.net</fo:inline>&lt;/ns1:domain&gt;
&lt;ns1:ip4&gt;<fo:inline font-style="italic">173.194.66.105</fo:inline>&lt;/ns1:ip4&gt;
&lt;ns1:ip6&gt;<fo:inline font-style="italic">::</fo:inline>&lt;/ns1:ip6&gt;
&lt;ns1:name&gt;<fo:inline font-style="italic">we-in-f105</fo:inline>&lt;/ns1:name&gt;
&lt;/ns1:return&gt;
&lt;/ns1:getHostinfoResponse&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;
</fo:block>
</fo:block>
</fo:block>
<fo:block id="N2069F"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">sleep</fo:marker><fo:block font-size="17.28pt">2.7.3. sleep</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Delays the response by the given minutes/ seconds. Please note,
that it may take more time to perform the server roundtrip (network
delays, parsing, etc.). Also you may have a network timeout set up in
Tomcat or your client that prevents this web service to respond
correctly.
</fo:block>
</fo:block>
</fo:block>
<fo:block id="storageservices"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">StorageServices</fo:marker><fo:block font-size="20.735999999999997pt">2.8. StorageServices</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The StorageService will provide get/ push operations to store and retrieve data from various backends.
This is currently under development and not yet released.
Its WSDL is located at
http://server:port/XServices/StorageService?wsdl</fo:block>
<fo:block id="N206B4"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker"> ...
</fo:marker><fo:block font-size="17.28pt">2.8.1.  ...
</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Description here</fo:block>
<fo:block id="N206BD"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">2.8.1.1. Input parameters
</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
<fo:block xmlns:rx="http://www.renderx.com/XSL/Extensions" space-before.minimum="0.5em" space-before.optimum="1em" space-before.maximum="2em" space-after.minimum="0.5em" space-after.optimum="1em" space-after.maximum="2em" keep-together.within-column="auto" id="N206C4"><fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em" font-weight="bold" font-size="12pt" hyphenate="false" space-after.minimum="0.4em" space-after.optimum="0.6em" space-after.maximum="0.8em" keep-with-next.within-column="always">Table 2.5. Input parameters
</fo:block><fo:table border-before-width.conditionality="retain" border-collapse="collapse" border-start-style="solid" border-end-style="solid" border-top-style="solid" border-bottom-style="solid" border-start-width="0.5pt" border-end-width="0.5pt" border-top-width="0.5pt" border-bottom-width="0.5pt" border-start-color="black" border-end-color="black" border-top-color="black" border-bottom-color="black" table-layout="fixed" width="100%"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-column column-number="4" column-width="proportional-column-width(1)"/><fo:table-header end-indent="0pt" start-indent="0pt"><fo:table-row keep-with-next.within-column="always"><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block font-weight="bold">parameter</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block font-weight="bold">type</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block font-weight="bold">required</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block font-weight="bold">description</fo:block></fo:table-cell></fo:table-row></fo:table-header><fo:table-body end-indent="0pt" start-indent="0pt"><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>host</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>HostConnection</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>Yes</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block>
Host where to execute the command. See
<fo:basic-link internal-destination="hostconnection"><fo:inline>HostConnection</fo:inline></fo:basic-link>
.
</fo:block></fo:table-cell></fo:table-row><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>command</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>String</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>No</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:block>Any command including arguments</fo:block></fo:table-cell></fo:table-row><fo:table-row><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>timeout</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>Long</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt" border-end-width="0.5pt" border-end-style="solid" border-end-color="black"><fo:block>Yes</fo:block></fo:table-cell><fo:table-cell padding-start="2pt" padding-end="2pt" padding-top="2pt" padding-bottom="2pt"><fo:block>Timeout in milliseconds. The command is forcefully terminated when timeout is reached.</fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em"/>
</fo:block>
<fo:block id="N20729"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">2.8.1.2. Output parameters
</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block id="N2072E"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="12pt">2.8.1.2.1. ReturnCode type</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The ReturnCode type is used as the generic answer type for most of the
BruteXservices
operations.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The defining Java class is
<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/ReturnCode.html)">
<fo:inline font-family="monospace">net.brutex.xservices.types.ReturnCode</fo:inline>
</fo:basic-link><fo:inline hyphenate="false"> [<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/ReturnCode.html)">javadoc/net/brutex/xservices/types/ReturnCode.html</fo:basic-link>]</fo:inline>
.
</fo:block>
<fo:block id="N20745"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Schema definition</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20749">
&lt;xs:complexType name="ReturnCodeType"&gt;
&lt;xs:sequence&gt;
&lt;xs:element name="returnCode" type="xs:int"/&gt;
&lt;xs:element minOccurs="0" name="stdOut" type="xs:string"/&gt;
&lt;xs:element minOccurs="0" name="stdErr" type="xs:string"/&gt;
&lt;xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="<fo:basic-link internal-destination="antproperty"><fo:inline>tns:antProperty</fo:inline></fo:basic-link>"/&gt;
&lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</fo:block>
 
<fo:block id="N20751"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Example XML</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20755">
&lt;ReturnCode
xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;returnCode&gt;0&lt;/returnCode&gt;
&lt;stdOut/&gt;
&lt;stdErr/&gt;
&lt;propertyList&gt;
<fo:inline font-style="italic">
See
<fo:basic-link internal-destination="antproperty"><fo:inline>tns:antProperty</fo:inline></fo:basic-link>
for details about the &lt;propertyList&gt; elements.
</fo:inline>
&lt;name&gt;key1&lt;/name&gt;
&lt;value&gt;value1&lt;/value&gt;
&lt;/propertyList&gt;
&lt;propertyList&gt;
&lt;name&gt;key2&lt;/name&gt;
&lt;value&gt;value2&lt;/value&gt;
&lt;/propertyList&gt;
&lt;/ReturnCode&gt;
</fo:block>
 
</fo:block>
</fo:block>
</fo:block>
</fo:block>
<fo:block id="stringservices"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">StringServices</fo:marker><fo:block font-size="20.735999999999997pt">2.9. StringServices</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The StringService provides String manipulation capabilities.
Its WSDL is located at
http://server:port/XServices/StringService?wsdl</fo:block>
<fo:block id="N2076E"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">replaceRegEx</fo:marker><fo:block font-size="17.28pt">2.9.1. replaceRegEx</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Search and Replace using regular expression.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20776">
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net"&gt;
&lt;soapenv:Header/&gt;
&lt;soapenv:Body&gt;
&lt;ws:replaceRegEx&gt;
&lt;string&gt;Hallo Welt&lt;/string&gt;
&lt;search&gt;W.*&lt;/search&gt;
&lt;replace&gt;Brian&lt;/replace&gt;
&lt;regexflags&gt;ig&lt;/regexflags&gt;
&lt;/ws:replaceRegEx&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20779">
&lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns2:replaceRegExResponse xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;return&gt;
&lt;string&gt;Hallo Brian&lt;/string&gt;
&lt;count&gt;1&lt;/count&gt;
&lt;/return&gt;
&lt;/ns2:replaceRegExResponse&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;</fo:block>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Allowed regexflags are case-insensitive (i) and global search (g).</fo:block>
</fo:block>
</fo:block>
<fo:block id="xmlservices"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">XmlServices</fo:marker><fo:block font-size="20.735999999999997pt">2.10. XmlServices</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The XmlService provides operations to manipulate XML structures.
Its WSDL is located at
http://server:port/XServices/XmlService?wsdl</fo:block>
<fo:block id="N2078D"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">insertNodes</fo:marker><fo:block font-size="17.28pt">2.10.1. insertNodes</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Insert an xml fragment into other elements specified by an XPath expression.
This operation is namespace aware.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20795">
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net"&gt;
&lt;soapenv:Header/&gt;
&lt;soapenv:Body&gt;
&lt;ws:insertNodes&gt;
&lt;sourcexml&gt;&lt;![CDATA[
&lt;books&gt;
&lt;author&gt;
&lt;name&gt;Mensiok&lt;/name&gt;
&lt;surname&gt;Bello&lt;/surname&gt;
&lt;/author&gt;
&lt;author&gt;
&lt;name&gt;Schwab&lt;/name&gt;
&lt;surname&gt;Rumsau&lt;/surname&gt;
&lt;/author&gt;
&lt;author&gt;
&lt;name&gt;Dollibert&lt;/name&gt;
&lt;surname&gt;Rach&lt;/surname&gt;
&lt;/author&gt;
&lt;/books&gt;
]]&gt;&lt;/sourcexml&gt;
&lt;encoding&gt;utf-8&lt;/encoding&gt;
&lt;namespaceList&gt;
&lt;!--Zero or more repetitions:--&gt;
&lt;namespace&gt;
&lt;prefix&gt;&lt;/prefix&gt;
&lt;uri&gt;&lt;/uri&gt;
&lt;/namespace&gt;
&lt;/namespaceList&gt;
&lt;xpath&gt;/books/author&lt;/xpath&gt;
&lt;!--Optional:--&gt;
&lt;xmldata&gt;&lt;![CDATA[&lt;age namespace="http://btx"/&gt;]]&gt;&lt;/xmldata&gt;
&lt;/ws:insertNodes&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20799">
&lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns2:insertNodesResponse xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;return&gt;&lt;![CDATA[&lt;?xml version='1.0' encoding='UTF-8'?&gt;
&lt;books&gt;
&lt;author&gt;
&lt;name&gt;Mensiok&lt;/name&gt;
&lt;surname&gt;Bello&lt;/surname&gt;
&lt;age namespace="http://btx"/&gt;&lt;/author&gt;
&lt;author&gt;
&lt;name&gt;Schwab&lt;/name&gt;
&lt;surname&gt;Rumsau&lt;/surname&gt;
&lt;age namespace="http://btx"/&gt;&lt;/author&gt;
&lt;author&gt;
&lt;name&gt;Dollibert&lt;/name&gt;
&lt;surname&gt;Rach&lt;/surname&gt;
&lt;age namespace="http://btx"/&gt;&lt;/author&gt;
&lt;/books&gt;]]&gt;&lt;/!&gt;&lt;/return&gt;
&lt;/ns2:insertNodesResponse&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;
</fo:block>
</fo:block>
</fo:block>
<fo:block id="N2079F"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">insertNodes2</fo:marker><fo:block font-size="17.28pt">2.10.2. insertNodes2</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Insert an xml fragment into xml resource (i.e. file, URL) specified by an XPath expression.
This operation is namespace aware.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N207A7">
...</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N207AB">
...</fo:block>
</fo:block>
</fo:block>
<fo:block id="N207B1"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">replaceNodes</fo:marker><fo:block font-size="17.28pt">2.10.3. replaceNodes</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Replace an xml fragment with another xml fragment. This operation is namespace aware.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N207B9">
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net"&gt;
&lt;soapenv:Header/&gt;
&lt;soapenv:Body&gt;
&lt;ws:replaceNodes&gt;
&lt;sourcexml&gt;&lt;![CDATA[
&lt;books&gt;
&lt;author&gt;
&lt;name&gt;Mensiok&lt;/name&gt;
&lt;surname&gt;Bello&lt;/surname&gt;
&lt;/author&gt;
&lt;author&gt;
&lt;name&gt;Schwab&lt;/name&gt;
&lt;surname&gt;Rumsau&lt;/surname&gt;
&lt;/author&gt;
&lt;author&gt;
&lt;name&gt;Dollibert&lt;/name&gt;
&lt;surname&gt;Rach&lt;/surname&gt;
&lt;/author&gt;
&lt;/books&gt;
]]&gt;
&lt;/sourcexml&gt;
&lt;encoding&gt;utf-8&lt;/encoding&gt;
&lt;namespaceList&gt;
&lt;!--Zero or more repetitions:--&gt;
&lt;namespace&gt;
&lt;prefix&gt;&lt;/prefix&gt;
&lt;uri&gt;&lt;/uri&gt;
&lt;/namespace&gt;
&lt;/namespaceList&gt;
&lt;xpath&gt;*/name[text()='Schwab']&lt;/xpath&gt;
&lt;!--Optional:--&gt;
&lt;xmldata&gt;&lt;![CDATA[&lt;name&gt;Meyer&lt;/name&gt;&lt;age&gt;45&lt;/age&gt;&lt;!--edited here--&gt;]]&gt;&lt;/xmldata&gt;
&lt;/ws:replaceNodes&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N207BD">
&lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns2:replaceNodesResponse xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;return&gt;&lt;![CDATA[&lt;?xml version='1.0' encoding='UTF-8'?&gt;
&lt;books&gt;
&lt;author&gt;
&lt;name&gt;Mensiok&lt;/name&gt;
&lt;surname&gt;Bello&lt;/surname&gt;
&lt;/author&gt;
&lt;author&gt;
&lt;name&gt;Meyer&lt;/name&gt;&lt;age&gt;45&lt;/age&gt;&lt;!--edited here--&gt;
&lt;surname&gt;Rumsau&lt;/surname&gt;
&lt;/author&gt;
&lt;author&gt;
&lt;name&gt;Dollibert&lt;/name&gt;
&lt;surname&gt;Rach&lt;/surname&gt;
&lt;/author&gt;
&lt;/books&gt;]]&gt;&lt;/return&gt;
&lt;/ns2:replaceNodesResponse&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;</fo:block>
</fo:block>
</fo:block>
<fo:block id="N207C3"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">replaceNodes2</fo:marker><fo:block font-size="17.28pt">2.10.4. replaceNodes2</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Replace an xml fragment with another xml fragment read from a resource (i.e. file, URL). This operation is namespace aware.
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N207CB">
...
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N207CF">
...</fo:block>
</fo:block>
</fo:block>
<fo:block id="N207D5"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">selectXPath</fo:marker><fo:block font-size="17.28pt">2.10.5. selectXPath</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Selects xmlfragements, nodes, attribute or text from xml data using an XPath expression.
This function requires namespaces to be declared correctly.</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N207E0">
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net"&gt;
&lt;soapenv:Header/&gt;
&lt;soapenv:Body&gt;
&lt;ws:selectXPath&gt;
&lt;sourcexml&gt;
&lt;![CDATA[&lt;notes xmlns="http://demo.brutex.net" xmlns:bx="http://bx.brutex.net"&gt;
&lt;bx:note&gt;
&lt;to&gt;Lena&lt;/to&gt;
&lt;from&gt;Jani&lt;/from&gt;
&lt;heading&gt;Reminder ABC&lt;/heading&gt;
&lt;body&gt;Don't forget me this weekend!&lt;/body&gt;
&lt;/bx:note&gt;
&lt;note&gt;
&lt;to&gt;John&lt;/to&gt;
&lt;from&gt;Lena&lt;/from&gt;
&lt;heading&gt;Call Mr. ABC&lt;/heading&gt;
&lt;body&gt;Please call back&lt;/body&gt;
&lt;/note&gt;
&lt;bx:note&gt;
&lt;to&gt;Brian&lt;/to&gt;
&lt;from&gt;JJohn&lt;/from&gt;
&lt;heading&gt;Reminder XServices&lt;/heading&gt;
&lt;body&gt;How to use selectXPath?&lt;/body&gt;
&lt;/bx:note&gt;
&lt;/notes&gt;
]]&gt;
&lt;/sourcexml&gt;
&lt;encoding&gt;utf-8&lt;/encoding&gt;
&lt;namespaceList&gt;
&lt;namespace&gt;
&lt;prefix&gt;ns&lt;/prefix&gt;
&lt;uri&gt;http://demo.brutex.net&lt;/uri&gt;
&lt;/namespace&gt;
&lt;namespace&gt;
&lt;prefix&gt;bx&lt;/prefix&gt;
&lt;uri&gt;http://bx.brutex.net&lt;/uri&gt;
&lt;/namespace&gt;
&lt;/namespaceList&gt;
&lt;xpath&gt;*/bx:note/ns:heading/text()&lt;/xpath&gt;
&lt;/ws:selectXPath&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N207E4">
&lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns2:selectXPathResponse xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;return&gt;
&lt;stringlist&gt;Reminder ABC&lt;/stringlist&gt;
&lt;stringlist&gt;Reminder XServices&lt;/stringlist&gt;
&lt;size&gt;2&lt;/size&gt;
&lt;/return&gt;
&lt;/ns2:selectXPathResponse&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;
</fo:block>
</fo:block>
</fo:block>
<fo:block id="N207EA"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">setAttribute</fo:marker><fo:block font-size="17.28pt">2.10.6. setAttribute</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Set an attribute into elements matched by an XPath expression.</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N207F5">
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net"&gt;
&lt;soapenv:Header/&gt;
&lt;soapenv:Body&gt;
&lt;ws:setAttribute&gt;
&lt;sourcexml&gt;
&lt;![CDATA[&lt;notes xmlns="http://demo.brutex.net"&gt;
&lt;note&gt;
&lt;to&gt;Lena&lt;/to&gt;
&lt;from&gt;Jani&lt;/from&gt;
&lt;heading&gt;Reminder ABC&lt;/heading&gt;
&lt;body&gt;Don't forget me this weekend!&lt;/body&gt;
&lt;/note&gt;
&lt;note&gt;
&lt;to&gt;John&lt;/to&gt;
&lt;from&gt;Lena&lt;/from&gt;
&lt;heading&gt;Call Mr. ABC&lt;/heading&gt;
&lt;body&gt;Please call back&lt;/body&gt;
&lt;/note&gt;
&lt;/notes&gt;
]]&gt;&lt;/sourcexml&gt;
&lt;encoding&gt;utf-8&lt;/encoding&gt;
&lt;!--Optional:--&gt;
&lt;namespaceList&gt;
&lt;!--Zero or more repetitions:--&gt;
&lt;namespace&gt;
&lt;prefix&gt;bx&lt;/prefix&gt;
&lt;uri&gt;http://demo.brutex.net&lt;/uri&gt;
&lt;/namespace&gt;
&lt;/namespaceList&gt;
&lt;xpath&gt;*/bx:note&lt;/xpath&gt;
&lt;attribute&gt;
&lt;name&gt;priority&lt;/name&gt;
&lt;!--Optional:--&gt;
&lt;value&gt;high&lt;/value&gt;
&lt;/attribute&gt;
&lt;/ws:setAttribute&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N207F9">
&lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns2:setAttributeResponse xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;return&gt;&lt;![CDATA[&lt;?xml version='1.0' encoding='UTF-8'?&gt;
&lt;notes xmlns="http://demo.brutex.net"&gt;
&lt;note xmlns:axis2ns16="http://demo.brutex.net" axis2ns16:priority="high"&gt;
&lt;to&gt;Lena&lt;/to&gt;
&lt;from&gt;Jani&lt;/from&gt;
&lt;heading&gt;Reminder ABC&lt;/heading&gt;
&lt;body&gt;Don't forget me this weekend!&lt;/body&gt;
&lt;/note&gt;
&lt;note xmlns:axis2ns17="http://demo.brutex.net" axis2ns17:priority="high"&gt;
&lt;to&gt;John&lt;/to&gt;
&lt;from&gt;Lena&lt;/from&gt;
&lt;heading&gt;Call Mr. ABC&lt;/heading&gt;
&lt;body&gt;Please call back&lt;/body&gt;
&lt;/note&gt;
&lt;/notes&gt;]]&gt;&lt;/return&gt;
&lt;/ns2:setAttributeResponse&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;
</fo:block>
</fo:block>
</fo:block>
<fo:block id="N207FF"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">wrapInCDATA</fo:marker><fo:block font-size="17.28pt">2.10.7. wrapInCDATA</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Simply wraps any data fragment into &lt;![CDATA[ ... ]]&gt; section. This can be useful if you
want to preserve indentation or line breaks.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
Sample request:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2080A">
&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net"&gt;
&lt;soapenv:Header/&gt;
&lt;soapenv:Body&gt;
&lt;ws:wrapInCDATA&gt;
&lt;data&gt;Hello World, here is some &amp;lt;xml&amp;gt; data&lt;/data&gt;
&lt;/ws:wrapInCDATA&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;
</fo:block>
Sample response:
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2080E">
&lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt;
&lt;soap:Body&gt;
&lt;ns2:wrapInCDATAResponse xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;return&gt;&amp;lt;![CDATA[Hello World, here is some &amp;lt;xml&gt; data]]&amp;gt;&lt;/return&gt;
&lt;/ns2:wrapInCDATAResponse&gt;
&lt;/soap:Body&gt;
&lt;/soap:Envelope&gt;
</fo:block>
</fo:block>
</fo:block>
</fo:block>
</fo:flow></fo:page-sequence>
 
<fo:page-sequence xmlns:axf="http://www.antennahouse.com/names/XSL/Extensions" master-reference="body" hyphenate="true" language="en" format="1" initial-page-number="auto" force-page-count="no-force" hyphenation-character="-" hyphenation-push-character-count="2" hyphenation-remain-character-count="2"><fo:static-content flow-name="xsl-region-before-first"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-odd"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block>Available RESTful Services</fo:block></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-even"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block>Available RESTful Services</fo:block></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-blank"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-footnote-separator"><fo:block><fo:leader color="black" leader-pattern="rule" leader-length="1in"/></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-inner-first"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-odd"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-even"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-blank"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-first"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-odd"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-even"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-blank"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-after-first"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-odd"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-even"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-blank"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:flow flow-name="xsl-region-body" start-indent="4pc" end-indent="0pt"><fo:block id="restservices"><fo:block font-family="sans-serif,Symbol,ZapfDingbats"><fo:block margin-left="0pt"><fo:block font-weight="bold" font-size="24.8832pt"><fo:block keep-with-next.within-column="always" space-before.optimum="10pt" space-before.minimum="10pt * 0.8" space-before.maximum="10pt * 1.2" hyphenate="false" text-align="start" start-indent="0pt" hyphenation-character="-" hyphenation-push-character-count="2" hyphenation-remain-character-count="2">Chapter 3. Available RESTful Services</fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">List of available web services and their operations.</fo:block>
<fo:block id="cvsinfoservices"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">CVSInfoService</fo:marker><fo:block font-size="20.735999999999997pt">3.1. CVSInfoService</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">RESTful service to query a CVS repository, search files and content. Includes caching mechanism.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Endpoint address: http://localhost:8080/XServices/cvsinfo</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">WADL : http://localhost:8080/XServices/cvsinfo?_wadl</fo:block>
 
 
 
</fo:block>
<fo:block id="fileinfoservices"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">FileInfoService</fo:marker><fo:block font-size="20.735999999999997pt">3.2. FileInfoService</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The FileInfoService allows listing/ searching/ browsing and download of files and directories. Includes caching mechanism.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Endpoint address: http://localhost:8080/XServices/fileinfo</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">WADL : http://localhost:8080/XServices/fileinfo?_wadl</fo:block>
</fo:block>
 
</fo:flow></fo:page-sequence>
<fo:page-sequence xmlns:axf="http://www.antennahouse.com/names/XSL/Extensions" master-reference="body" hyphenate="true" language="en" format="1" initial-page-number="auto" force-page-count="no-force" hyphenation-character="-" hyphenation-push-character-count="2" hyphenation-remain-character-count="2"><fo:static-content flow-name="xsl-region-before-first"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-odd"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block>XML Types</fo:block></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-even"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block>XML Types</fo:block></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-before-blank"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-bottom-width="0.5pt" border-bottom-style="solid" border-bottom-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="before" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="center" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="before" text-align="right" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-footnote-separator"><fo:block><fo:leader color="black" leader-pattern="rule" leader-length="1in"/></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-inner-first"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-odd"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-even"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-inner-blank"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-first"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-odd"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-even"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-outer-blank"><fo:block/></fo:static-content><fo:static-content flow-name="xsl-region-after-first"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-odd"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-even"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:static-content flow-name="xsl-region-after-blank"><fo:block font-family="serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:table table-layout="fixed" width="100%" border-top-width="0.5pt" border-top-style="solid" border-top-color="black"><fo:table-column column-number="1" column-width="proportional-column-width(1)"/><fo:table-column column-number="2" column-width="proportional-column-width(1)"/><fo:table-column column-number="3" column-width="proportional-column-width(1)"/><fo:table-body><fo:table-row block-progression-dimension.minimum="14pt"><fo:table-cell display-align="after" text-align="start" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="center" relative-align="baseline"><fo:block><fo:block><fo:page-number/></fo:block></fo:block></fo:table-cell><fo:table-cell display-align="after" text-align="end" relative-align="baseline"><fo:block><fo:block/></fo:block></fo:table-cell></fo:table-row></fo:table-body></fo:table></fo:block></fo:static-content><fo:flow flow-name="xsl-region-body" start-indent="4pc" end-indent="0pt"><fo:block id="xmltypes"><fo:block font-family="sans-serif,Symbol,ZapfDingbats"><fo:block margin-left="0pt"><fo:block font-weight="bold" font-size="24.8832pt"><fo:block keep-with-next.within-column="always" space-before.optimum="10pt" space-before.minimum="10pt * 0.8" space-before.maximum="10pt * 1.2" hyphenate="false" text-align="start" start-indent="0pt" hyphenation-character="-" hyphenation-push-character-count="2" hyphenation-remain-character-count="2">Chapter 4. XML Types</fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">This chapter bundles the documentation for common XML types used
by XServices web service.</fo:block>
<fo:block id="N20853"><fo:block/>
<fo:block id="antproperty"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">AntProperty type</fo:marker><fo:block font-size="17.28pt">4.1.1. AntProperty type</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
 
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The AntProperty type defines a list of key/value pairs.</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The defining Java class is
<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/AntProperty.html)">
<fo:inline font-family="monospace">net.brutex.xservices.types.AntProperty</fo:inline>
</fo:basic-link><fo:inline hyphenate="false"> [<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/AntProperty.html)">javadoc/net/brutex/xservices/types/AntProperty.html</fo:basic-link>]</fo:inline>
.
</fo:block>
 
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2086C">
&lt;xs:complexType name="antProperty"&gt;
&lt;xs:sequence&gt;
&lt;xs:element name="name" type="xs:string"/&gt;
&lt;xs:element name="value" type="xs:string"/&gt;
&lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20870">
&lt;AntProperty&gt;
&lt;name&gt;key2&lt;/name&gt;
&lt;value&gt;value2&lt;/value&gt;
&lt;/AntProperty&gt;
</fo:block>
</fo:block>
<fo:block id="N20875"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">DateInfoType type</fo:marker><fo:block font-size="17.28pt">4.1.2. DateInfoType type</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Different presentation of a date time value.</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The defining Java class is
<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/DateInfoType.html)">
<fo:inline font-family="monospace">net.brutex.xservices.types.DateInfoType</fo:inline>
</fo:basic-link><fo:inline hyphenate="false"> [<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/DateInfoType.html)">javadoc/net/brutex/xservices/types/DateInfoType.html</fo:basic-link>]</fo:inline>
.
</fo:block>
</fo:block>
<fo:block id="N20889"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">FileResource type</fo:marker><fo:block font-size="17.28pt">4.1.3. FileResource type</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
 
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The FileResource type defines an URI to a file with optional on-the-fly decompression.</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The defining Java class is
<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/FileResource.html)">
<fo:inline font-family="monospace">net.brutex.xservices.types.FileResource</fo:inline>
</fo:basic-link><fo:inline hyphenate="false"> [<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/FileResource.html)">javadoc/net/brutex/xservices/types/FileResource.html</fo:basic-link>]</fo:inline>
.
</fo:block>
 
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2089C">
&lt;xs:complexType name="FileResourceType"&gt;
&lt;xs:sequence&gt;
&lt;xs:element default="FILE" name="type" type="tns:type"/&gt;
&lt;xs:element name="uri" type="xs:string"/&gt;
&lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Available types:</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">FILE: URI points to a local file resource. Examples: c:\temp\something.txt, c:/dir/another.file, /home/brian/file</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">URL: File from URL (http, https, ftp, ...). Example: http://brutex.net/file.pdf</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">GZIP and BZIP2: File from a local file system with on-the-fly decompression.</fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N208AC">
&lt;resource&gt;
&lt;type&gt;FILE&lt;/type&gt;
&lt;uri&gt;c:\temp\xservices.war&lt;/uri&gt;
&lt;/resource&gt;
</fo:block>
</fo:block>
<fo:block id="hostconnection"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">HostConnection type</fo:marker><fo:block font-size="17.28pt">4.1.4. HostConnection type</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The HostConnection type identifies a server resource and login
credentials.</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The defining Java class is
<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/HostConnection.html)">
<fo:inline font-family="monospace">net.brutex.xservices.types.HostConnection</fo:inline>
</fo:basic-link><fo:inline hyphenate="false"> [<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/HostConnection.html)">javadoc/net/brutex/xservices/types/HostConnection.html</fo:basic-link>]</fo:inline>
.
</fo:block>
<fo:block id="N208C5"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Schema definition</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N208C9">
&lt;xs:complexType name="connection"&gt;
&lt;xs:sequence&gt;
&lt;xs:element name="hostname" type="xs:string"/&gt;
&lt;xs:element name="port" type="xs:int"/&gt;
&lt;xs:element minOccurs="0" name="user" type="xs:string"/&gt;
&lt;xs:element minOccurs="0" name="password" type="xs:string"/&gt;
&lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
 
</fo:block>
<fo:block id="N208CD"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Example XML</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N208D1">
&lt;host&gt;
&lt;hostname&gt;server.brutex.net&lt;/hostname&gt;
&lt;port&gt;512&lt;/port&gt; &lt;!-- default rExec port --&gt;
&lt;user&gt;brian&lt;/user&gt;
&lt;!--Optional:--&gt;
&lt;password&gt;somepass&lt;/password&gt;
&lt;/host&gt;
 
</fo:block>
</fo:block>
<fo:block id="patternelement"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">PatternElement type</fo:marker><fo:block font-size="17.28pt">4.1.5. PatternElement type</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The PatternElement type defines single string pattern for file/
directory matching.</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The defining Java class is
<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/PatternElement.html)">
<fo:inline font-family="monospace">net.brutex.xservices.types.PatternElement</fo:inline>
</fo:basic-link><fo:inline hyphenate="false"> [<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/PatternElement.html)">javadoc/net/brutex/xservices/types/PatternElement.html</fo:basic-link>]</fo:inline>
.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
These patterns look exactly like those used in Apache Ant
<fo:basic-link external-destination="url(http://ant.apache.org/manual/dirtasks.html#patterns)">Patterns</fo:basic-link><fo:inline hyphenate="false"> [<fo:basic-link external-destination="url(http://ant.apache.org/manual/dirtasks.html#patterns)">http://ant.apache.org/manual/dirtasks.html#patterns</fo:basic-link>]</fo:inline>.
The '*' matches zero or more characters and the
'?' will match a single character.
Both symbols can be combined in one pattern. The '**'
symbol can be used to match any directory deepth.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Some example patterns:</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
<fo:inline font-family="monospace" font-style="italic">**/mydir/**</fo:inline>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">Match all file that are located in any directory that has
"mydir" string in its pathname. Also applies to files with
"mydir" in their name.</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
<fo:inline font-family="monospace" font-style="italic">/mydir/</fo:inline>
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The
parser will automatically append an '**' symbol, thus the
resulting pattern is
<fo:inline font-family="monospace" font-style="italic">/mydir/**</fo:inline>.
All files below the "/mydir/" directory (including its
sub-directories will be chosen.
</fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" margin-left="0.25in" margin-right="0.25in" id="N20909"><fo:block font-size="14pt" font-weight="bold" hyphenate="false" keep-with-next.within-column="always">Note</fo:block><fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The pattern is OS independent. You should always use
"/" as path separator, even on windows based systems.
</fo:block>
</fo:block></fo:block>
<fo:block id="N2090F"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Schema definition</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20913">&lt;xs:simpleType name="patternElement"&gt;
&lt;xs:restriction base="xs:string"/&gt;
&lt;/xs:simpleType&gt;</fo:block>
 
<fo:block id="N20917"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Example XML</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2091B">&lt;PatternElement&gt;**/*&lt;/PatternElement&gt;</fo:block>
 
</fo:block>
<fo:block id="patternsettype"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">PatternSetType type</fo:marker><fo:block font-size="17.28pt">4.1.6. PatternSetType type</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The PatternSetType exposes various filters/ selectors for the
selection of resources (files).</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The defining Java class is
<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/PatternSetType.html)">
<fo:inline font-family="monospace">net.brutex.xservices.types.PatternSetType</fo:inline>
</fo:basic-link><fo:inline hyphenate="false"> [<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/PatternSetType.html)">javadoc/net/brutex/xservices/types/PatternSetType.html</fo:basic-link>]</fo:inline>
.
</fo:block>
<fo:block id="N20934"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Schema definition</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20938">
&lt;xs:complexType name="patternSetType"&gt;
&lt;xs:sequence&gt;
&lt;xs:element default="**/*" maxOccurs="unbounded" minOccurs="0" name="include" type="<fo:basic-link internal-destination="patternelement"><fo:inline>tns:patternElement</fo:inline></fo:basic-link>"/&gt;
&lt;xs:element maxOccurs="unbounded" minOccurs="0" name="exclude" type="<fo:basic-link internal-destination="patternelement"><fo:inline>tns:patternElement</fo:inline></fo:basic-link>"/&gt;
&lt;xs:element minOccurs="0" name="selector" nillable="true" type="<fo:basic-link internal-destination="selectortype"><fo:inline>tns:selectorType</fo:inline></fo:basic-link>"/&gt;
&lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</fo:block>
<fo:block id="N20948"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Example XML</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2094C">
tbd.
</fo:block>
</fo:block>
<fo:block id="N20951"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">ReturnCode type</fo:marker><fo:block font-size="17.28pt">4.1.7. ReturnCode type</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The ReturnCode type is used as the generic answer type for most of the
BruteXservices
operations.
</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">
The defining Java class is
<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/ReturnCode.html)">
<fo:inline font-family="monospace">net.brutex.xservices.types.ReturnCode</fo:inline>
</fo:basic-link><fo:inline hyphenate="false"> [<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/ReturnCode.html)">javadoc/net/brutex/xservices/types/ReturnCode.html</fo:basic-link>]</fo:inline>
.
</fo:block>
<fo:block id="N20968"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Schema definition</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2096C">
&lt;xs:complexType name="ReturnCodeType"&gt;
&lt;xs:sequence&gt;
&lt;xs:element name="returnCode" type="xs:int"/&gt;
&lt;xs:element minOccurs="0" name="stdOut" type="xs:string"/&gt;
&lt;xs:element minOccurs="0" name="stdErr" type="xs:string"/&gt;
&lt;xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="<fo:basic-link internal-destination="antproperty"><fo:inline>tns:antProperty</fo:inline></fo:basic-link>"/&gt;
&lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</fo:block>
 
<fo:block id="N20974"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Example XML</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N20978">
&lt;ReturnCode
xmlns:ns2="http://ws.xservices.brutex.net"&gt;
&lt;returnCode&gt;0&lt;/returnCode&gt;
&lt;stdOut/&gt;
&lt;stdErr/&gt;
&lt;propertyList&gt;
<fo:inline font-style="italic">
See
<fo:basic-link internal-destination="antproperty"><fo:inline>tns:antProperty</fo:inline></fo:basic-link>
for details about the &lt;propertyList&gt; elements.
</fo:inline>
&lt;name&gt;key1&lt;/name&gt;
&lt;value&gt;value1&lt;/value&gt;
&lt;/propertyList&gt;
&lt;propertyList&gt;
&lt;name&gt;key2&lt;/name&gt;
&lt;value&gt;value2&lt;/value&gt;
&lt;/propertyList&gt;
&lt;/ReturnCode&gt;
</fo:block>
 
</fo:block>
<fo:block id="selectortype"><fo:block><fo:block><fo:block keep-together.within-column="always" font-family="sans-serif,Symbol,ZapfDingbats" margin-left="0pt"><fo:block keep-with-next.within-column="always"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:marker marker-class-name="section.head.marker">SelectorType type</fo:marker><fo:block font-size="17.28pt">4.1.8. SelectorType type</fo:block></fo:block></fo:block></fo:block></fo:block></fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The SelectorType exposes various selectors for the selection of resources (files).</fo:block>
<fo:block space-before.optimum="1em" space-before.minimum="0.8em" space-before.maximum="1.2em">The defining Java class is
<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/SelectorType.html)">
<fo:inline font-family="monospace">net.brutex.xservices.types.SelectorType</fo:inline></fo:basic-link><fo:inline hyphenate="false"> [<fo:basic-link external-destination="url(javadoc/net/brutex/xservices/types/SelectorType.html)">javadoc/net/brutex/xservices/types/SelectorType.html</fo:basic-link>]</fo:inline>.</fo:block>
<fo:block id="N20997"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Schema definition</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N2099B">
&lt;xs:complexType abstract="true" name="selectorType"&gt;
&lt;xs:sequence&gt;
&lt;xs:element maxOccurs="unbounded" minOccurs="0" name="contains" nillable="true" type="tns:containsSelectorType"/&gt;
&lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</fo:block>
<fo:block id="N2099F"><fo:block font-family="sans-serif,Symbol,ZapfDingbats" font-weight="bold" keep-with-next.within-column="always" space-before.minimum="0.8em" space-before.optimum="1.0em" space-before.maximum="1.2em" text-align="start" start-indent="0pt"><fo:block font-size="14.399999999999999pt">Example XML</fo:block></fo:block></fo:block>
<fo:block space-before.minimum="0.8em" space-before.optimum="1em" space-before.maximum="1.2em" space-after.minimum="0.8em" space-after.optimum="1em" space-after.maximum="1.2em" hyphenate="false" wrap-option="no-wrap" white-space-collapse="false" white-space-treatment="preserve" linefeed-treatment="preserve" text-align="start" font-family="monospace" id="N209A3">
tbd.
</fo:block>
</fo:block>
</fo:block>
</fo:flow></fo:page-sequence>
</fo:root>
/xservices/branches/xservices-jre7/doc/html/BruteXServices_User_Guide.pdf
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/html/BruteXServices_User_Guide.html
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/html
Property changes:
Added: svn:ignore
+mailservices.html
+
+xmlservices.html
+
+xmltypes.html
+
+services.html
+
+fileservices.html
+
+index.html
+
+executeservices.html
+
+installation.html
+
+dateservices.html
+
+stringservices.html
+
+style.css
+
+jobservices.html
+
+storageservices.html
+
+miscservices.html
/xservices/branches/xservices-jre7/doc/ExecuteServices/ExecuteServices.xml
0,0 → 1,18
<?xml version='1.0' encoding="utf-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude"
id="executeservices">
<title>ExecuteServices</title>
<para>The ExecuteService bundles local and remote command
execution operations. Its WSDL is located at
http://server:port/XServices/ExecuteService?wsdl</para>
<xi:include href="./rExec.xml" />
<xi:include href="./runCommand.xml" />
<xi:include href="./runCommandAsync.xml" />
<xi:include href="./runCommandAsyncWithArgs.xml" />
<xi:include href="./runCommandWithArgs.xml" />
<xi:include href="./runCommandWithSSH.xml" />
<xi:include href="./runCommandWithSSHKeyAuth.xml" />
<xi:include href="./runJavaScript.xml" />
<xi:include href="./telnet.xml" />
</section>
/xservices/branches/xservices-jre7/doc/ExecuteServices/runCommandWithSSHKeyAuth.xml
0,0 → 1,11
<?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>runCommandWithSSHKeyAuth</title>
<para>Executes a command through a SSH session.</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ExecuteServices/runCommandAsyncWithArgs.xml
0,0 → 1,13
<?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>runCommandAsyncWithArgs</title>
<para>Run an executable with arguments on the server providing the web
service and don't wait for the executable to finish.
The command is run within the environment and under the user
privileges of the user who is running the Tomcat Server.</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ExecuteServices/runJavaScript.xml
0,0 → 1,10
<?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>runJavaScript</title>
<para>Execute a JavaScript and or Java program using Mozilla Rhino JIT-Compiler.</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ExecuteServices/runCommandWithArgs.xml
0,0 → 1,12
<?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>runCommandWithArgs</title>
<para>Run an executable with arguments on the server providing the web
service. The command is run within the environment and under the user
privileges of the user who is running the Tomcat Server.</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ExecuteServices/runCommandAsync.xml
0,0 → 1,13
<?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>runCommandAsync</title>
<para>Run an executable with arguments on the server providing the web
service and don't wait for the executable to finish.
The command is run within the environment and under the user
privileges of the user who is running the Tomcat Server.</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ExecuteServices/runCommand.xml
0,0 → 1,111
<?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>runCommand</title>
<para>Run an executable with arguments on the server providing the web
service. The command is run within the environment and under the user
privileges of the user who is running the Tomcat Server.</para>
<section>
<title>&inp;
</title>
<para />
<table frame="all">
<title>runCommand input parameters</title>
<tgroup cols="4">
<colspec colnum="1" colname="parameter" />
<colspec colnum="2" colname="type" />
<colspec colnum="3" colname="required" />
<colspec colnum="4" colname="description" />
<thead>
<row>
<entry>parameter</entry>
<entry>type</entry>
<entry>required</entry>
<entry>description</entry>
</row>
</thead>
<tbody>
<row>
<entry>executable</entry>
<entry>String</entry>
<entry>Yes</entry>
<entry>Command to be run. The command may be specified with full
path using forward slash &quot;/&quot; as path separator.</entry>
</row>
<row>
<entry>argline</entry>
<entry>String</entry>
<entry>No</entry>
<entry>Any command line arguments</entry>
</row>
&param-timeout;
</tbody>
</tgroup>
</table>
<para />
</section>
<section>
<title>&outp;
</title>
<xi:include href="../types/ReturnCode.xml" />
</section>
<section>
<para>
Sample request: Start Windows Command Interpreter and print "Hello World" to STDOUT.
<programlisting language="xml">
<![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:runCommand>
<executable>c:/windows/system32/cmd.exe</executable>
<argline>/C "echo Hallo Welt!"</argline>
<timeout>3000</timeout>
</ws:runCommand>
</soapenv:Body>
</soapenv:Envelope>]]>
</programlisting>
Sample response:
<programlisting language="xml">
<![CDATA[<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:runCommandResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return>
<returnCode>0</returnCode>
<stdOut/>
<stdErr/>
<propertyList>
<name>ExecuteService.result</name>
<value>0</value>
</propertyList>
<propertyList>
<name>ExecuteService.stdout</name>
<value>Hallo Welt!</value>
</propertyList>
<propertyList>
<name>ExecuteService.stderr</name>
<value/>
</propertyList>
</return>
</ns2:runCommandResponse>
</soap:Body>
</soap:Envelope>]]></programlisting></para></section>
<section>
<para>
Sample request: Start notepad.exe and close it after 15 seconds.
<programlisting language="xml">
<![CDATA[<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:runCommand>
<executable>c:/windows/system32/notepad.exe</executable>
<argline></argline>
<timeout>15000</timeout>
</ws:runCommand>
</soapenv:Body>
</soapenv:Envelope>]]></programlisting></para></section>
</section>
/xservices/branches/xservices-jre7/doc/ExecuteServices/rExec.xml
0,0 → 1,62
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE section [
<!ENTITY % myent SYSTEM "../entities.ent">
<!ENTITY rExec "rExec">
%myent;
]>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude">
<title>&rExec;
</title>
<para>provides remote execution facilities with authentication based on
user names and passwords.</para>
<section>
<title>&inp;
</title>
<para />
<table frame="all">
<title>&rExec;
input parameters
</title>
<tgroup cols="4">
<colspec colnum="1" colname="parameter" />
<colspec colnum="2" colname="type" />
<colspec colnum="3" colname="required" />
<colspec colnum="4" colname="description" />
<thead>
<row>
<entry>parameter</entry>
<entry>type</entry>
<entry>required</entry>
<entry>description</entry>
</row>
</thead>
<tbody>
<row>
<entry>host</entry>
<entry>HostConnection</entry>
<entry>Yes</entry>
<entry>
Host where to execute the command. See
<link linkend='hostconnection'>HostConnection</link>
.
</entry>
</row>
<row>
<entry>command</entry>
<entry>String</entry>
<entry>No</entry>
<entry>Any command including arguments</entry>
</row>
&param-timeout;
</tbody>
</tgroup>
</table>
<para />
</section>
<section>
<title>&outp;
</title>
<xi:include href="../types/ReturnCode.xml" />
</section>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ExecuteServices/telnet.xml
0,0 → 1,83
<?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>telnet</title>
<para>Runs a telnet session with an "expect shell" like behaviour.</para>
<section>
<title>&inp;
</title>
<para />
<table frame="all">
<title>telnet input parameters</title>
<tgroup cols="4">
<colspec colnum="1" colname="parameter" />
<colspec colnum="2" colname="type" />
<colspec colnum="3" colname="required" />
<colspec colnum="4" colname="description" />
<thead>
<row>
<entry>parameter</entry>
<entry>type</entry>
<entry>required</entry>
<entry>description</entry>
</row>
</thead>
<tbody>
<row>
<entry>host</entry>
<entry>HostConnection</entry>
<entry>Yes</entry>
<entry>Host to connect to (see: <link linkend="hostconnection">tns:HostConnection</link>)</entry>
</row>
<row>
<entry>prompt</entry>
<entry>String</entry>
<entry>No</entry>
<entry>The prompt string to expect after login. This is used to recognize when
the session is open.</entry>
</row>
<row>
<entry>command</entry>
<entry>String</entry>
<entry>No</entry>
<entry>The command to execute.</entry>
</row>
<row>
<entry>expect</entry>
<entry>String</entry>
<entry>No</entry>
<entry>The prompt to expect after the command has been executed successfully.</entry>
</row>
&param-timeout;
</tbody>
</tgroup>
</table>
<para />
</section>
<section>
<title>&outp;</title>
<xi:include href="../types/ReturnCode.xml" />
</section>
<section>
<title>Sample Request:</title>
<programlisting language="xml">
<![CDATA[
<ws:telnet>
<host>
<hostname>localhost</hostname>
<port>23</port>
<user>brosenberger</user>
<password></password>
</host>
<prompt>C:\Users\brosenberger&gt;</prompt>
<command>dir c:\temp</command>
<expect>enberger&gt;</expect>
<timeout>60000</timeout>
</ws:telnet>
]]></programlisting>
</section>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/ExecuteServices/runCommandWithSSH.xml
0,0 → 1,73
<?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>runCommandWithSSH</title>
<para>Executes a command through a SSH session.</para>
<section>
<title>&inp;
</title>
<para />
<table frame="all">
<title>runCommandWithSSH input parameters</title>
<tgroup cols="4">
<colspec colnum="1" colname="parameter" />
<colspec colnum="2" colname="type" />
<colspec colnum="3" colname="required" />
<colspec colnum="4" colname="description" />
<thead>
<row>
<entry>parameter</entry>
<entry>type</entry>
<entry>required</entry>
<entry>description</entry>
</row>
</thead>
<tbody>
<row>
<entry>host</entry>
<entry>HostConnection</entry>
<entry>Yes</entry>
<entry>
Host to connect to (see:
<link linkend="hostconnection">tns:HostConnection</link>
)
</entry>
</row>
<row>
<entry>command</entry>
<entry>String</entry>
<entry>No</entry>
<entry>The command to execute.</entry>
</row>
&param-timeout;
</tbody>
</tgroup>
</table>
<para />
</section>
<section>
<title>&outp;
</title>
<xi:include href="../types/ReturnCode.xml" />
</section>
<section>
<title>Sample Request:</title>
<programlisting language="xml">
<![CDATA[
<ws:runCommandWithSSH>
<host>
<hostname>ssh.brutex.net</hostname>
<port>22</port>
<user>roger</user>
<password>xxx</password>
</host>
<command>ls /etc/</command>
<timeout>30000</timeout>
</ws:runCommandWithSSH>
]]></programlisting>
</section>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/_template/_template.xml
0,0 → 1,20
<?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>_template</title>
<para>Description here
Sample request:
<screen><![CDATA[
...
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
...
]]></programlisting>
</para>
<para>Hints here</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/_template/_templateServices.xml
0,0 → 1,11
<?xml version='1.0' encoding="utf-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude"
id="templateservices">
<title>TemplateServices</title>
<para>The TemplateService bundles ...
Its WSDL is located at
http://server:port/XServices/TemplateService?wsdl</para>
<xi:include href="./operationName.xml" />
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/_template/operationName.xml
0,0 → 1,59
<?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> ...
</title>
<para>Description here</para>
<section>
<title>&inp;
</title>
<para />
<table frame="all">
<title>Input parameters
</title>
<tgroup cols="4">
<colspec colnum="1" colname="parameter" />
<colspec colnum="2" colname="type" />
<colspec colnum="3" colname="required" />
<colspec colnum="4" colname="description" />
<thead>
<row>
<entry>parameter</entry>
<entry>type</entry>
<entry>required</entry>
<entry>description</entry>
</row>
</thead>
<tbody>
<row>
<entry>host</entry>
<entry>HostConnection</entry>
<entry>Yes</entry>
<entry>
Host where to execute the command. See
<link linkend='hostconnection'>HostConnection</link>
.
</entry>
</row>
<row>
<entry>command</entry>
<entry>String</entry>
<entry>No</entry>
<entry>Any command including arguments</entry>
</row>
&param-timeout;
</tbody>
</tgroup>
</table>
<para />
</section>
<section>
<title>&outp;
</title>
<xi:include href="../types/ReturnCode.xml" />
</section>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/FileInfoService/FileInfoService.xml
0,0 → 1,13
<?xml version="1.0" encoding="utf-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude" id="fileinfoservices">
<title>FileInfoService</title>
<para>The FileInfoService allows listing/ searching/ browsing and download of files and directories. Includes caching mechanism.
</para>
<para>Endpoint address: http://localhost:8080/XServices/fileinfo</para>
<para>WADL : http://localhost:8080/XServices/fileinfo?_wadl</para>
<!--
<xi:include href="./dateAdd.xml" />
 
-->
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/FileServices/downloadFile.xml
0,0 → 1,39
<?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>downloadFile</title>
<para>Downloads a file as base64 encoded.
Sample request:
<programlisting language="xml"><![CDATA[
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<!-- downloads a file from the XServices server as base64 encoded -->
<ws:downloadFile>
<file>
<type>FILE</type>
<uri>c:\temp\test.docx</uri>
</file>
</ws:downloadFile>
</soapenv:Body>
</soapenv:Envelope>
]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:downloadFileResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return>
<content>ADQBNA[... snipp ...]wAApzcAAAAA</content>
<filename>test.docx</filename>
</return>
</ns2:downloadFileResponse>
</soap:Body>
</soap:Envelope>]]></programlisting>
</para>
<para>Encoding files as base64 is very memory consuming!</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/FileServices/FileServices.xml
0,0 → 1,10
<?xml version="1.0" encoding="utf-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude"
id="fileservices">
<title>FileServices</title>
<para>The FileServces bundles various file operations. Its WSDL is located at
http://server:port/XServices/FileService?wsdl</para>
<xi:include href="./downloadFile.xml" />
<xi:include href="./encodeFile.xml" />
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/FileServices/encodeFile.xml
0,0 → 1,38
<?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>encodeFile</title>
<para>Encodes a file as base64.
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:encodeFile>
<file>
<type>FILE</type>
<uri>c:\temp\test.docx</uri>
</file>
</ws:encodeFile>
</soapenv:Body>
</soapenv:Envelope>
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:encodeFileResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return>
<content>ADQBNA[... snipp ...]wAApzcAAAAA</content>
<filename>test.docx</filename>
</return>
</ns2:encodeFileResponse>
</soap:Body>
</soap:Envelope>]]></programlisting>
</para>
<para>DEPRECATED: Encoding files as base64 is very memory consuming!</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/XmlServices/XmlServices.xml
0,0 → 1,17
<?xml version='1.0' encoding="utf-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude"
id="xmlservices">
<title>XmlServices</title>
<para>The XmlService provides operations to manipulate XML structures.
Its WSDL is located at
http://server:port/XServices/XmlService?wsdl</para>
<xi:include href="./insertNodes.xml" />
<xi:include href="./insertNodes2.xml" />
<xi:include href="./replaceNodes.xml" />
<xi:include href="./replaceNodes2.xml" />
<xi:include href="./selectXPath.xml" />
<xi:include href="./setAttribute.xml" />
<xi:include href="./wrapInCDATA.xml" />
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/XmlServices/replaceNodes2.xml
0,0 → 1,19
<?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>replaceNodes2</title>
<para>Replace an xml fragment with another xml fragment read from a resource (i.e. file, URL). This operation is namespace aware.
Sample request:
<programlisting language="xml">
...
</programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
...]]></programlisting>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/XmlServices/insertNodes2.xml
0,0 → 1,19
<?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>insertNodes2</title>
<para>Insert an xml fragment into xml resource (i.e. file, URL) specified by an XPath expression.
This operation is namespace aware.
Sample request:
<programlisting language="xml"><![CDATA[
...]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
...]]></programlisting>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/XmlServices/setAttribute.xml
0,0 → 1,77
<?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>setAttribute</title>
<para>Set an attribute into elements matched by an XPath expression.</para>
<para>
Sample request:
<programlisting language="xml"><![CDATA[
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:setAttribute>
<sourcexml>
<![CDATA[<notes xmlns="http://demo.brutex.net">
<note>
<to>Lena</to>
<from>Jani</from>
<heading>Reminder ABC</heading>
<body>Don't forget me this weekend!</body>
</note>
<note>
<to>John</to>
<from>Lena</from>
<heading>Call Mr. ABC</heading>
<body>Please call back</body>
</note>
</notes>
]]]]><![CDATA[></sourcexml>
<encoding>utf-8</encoding>
<!--Optional:-->
<namespaceList>
<!--Zero or more repetitions:-->
<namespace>
<prefix>bx</prefix>
<uri>http://demo.brutex.net</uri>
</namespace>
</namespaceList>
<xpath>*/bx:note</xpath>
<attribute>
<name>priority</name>
<!--Optional:-->
<value>high</value>
</attribute>
</ws:setAttribute>
</soapenv:Body>
</soapenv:Envelope>
]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:setAttributeResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return><![CDATA[<?xml version='1.0' encoding='UTF-8'?>
<notes xmlns="http://demo.brutex.net">
<note xmlns:axis2ns16="http://demo.brutex.net" axis2ns16:priority="high">
<to>Lena</to>
<from>Jani</from>
<heading>Reminder ABC</heading>
<body>Don't forget me this weekend!</body>
</note>
<note xmlns:axis2ns17="http://demo.brutex.net" axis2ns17:priority="high">
<to>John</to>
<from>Lena</from>
<heading>Call Mr. ABC</heading>
<body>Please call back</body>
</note>
</notes>]]]]><![CDATA[></return>
</ns2:setAttributeResponse>
</soap:Body>
</soap:Envelope>
]]></programlisting>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/XmlServices/selectXPath.xml
0,0 → 1,73
<?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>selectXPath</title>
<para>Selects xmlfragements, nodes, attribute or text from xml data using an XPath expression.
This function requires namespaces to be declared correctly.</para>
<para>
Sample request:
<programlisting language="xml"><![CDATA[
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:selectXPath>
<sourcexml>
<![CDATA[<notes xmlns="http://demo.brutex.net" xmlns:bx="http://bx.brutex.net">
<bx:note>
<to>Lena</to>
<from>Jani</from>
<heading>Reminder ABC</heading>
<body>Don't forget me this weekend!</body>
</bx:note>
<note>
<to>John</to>
<from>Lena</from>
<heading>Call Mr. ABC</heading>
<body>Please call back</body>
</note>
<bx:note>
<to>Brian</to>
<from>JJohn</from>
<heading>Reminder XServices</heading>
<body>How to use selectXPath?</body>
</bx:note>
</notes>
]]]]><![CDATA[>
</sourcexml>
<encoding>utf-8</encoding>
<namespaceList>
<namespace>
<prefix>ns</prefix>
<uri>http://demo.brutex.net</uri>
</namespace>
<namespace>
<prefix>bx</prefix>
<uri>http://bx.brutex.net</uri>
</namespace>
</namespaceList>
<xpath>*/bx:note/ns:heading/text()</xpath>
</ws:selectXPath>
</soapenv:Body>
</soapenv:Envelope>
]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:selectXPathResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return>
<stringlist>Reminder ABC</stringlist>
<stringlist>Reminder XServices</stringlist>
<size>2</size>
</return>
</ns2:selectXPathResponse>
</soap:Body>
</soap:Envelope>
]]></programlisting>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/XmlServices/insertNodes.xml
0,0 → 1,74
<?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>insertNodes</title>
<para>Insert an xml fragment into other elements specified by an XPath expression.
This operation is namespace aware.
Sample request:
<programlisting language="xml"><![CDATA[
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:insertNodes>
<sourcexml><![CDATA[
<books>
<author>
<name>Mensiok</name>
<surname>Bello</surname>
</author>
<author>
<name>Schwab</name>
<surname>Rumsau</surname>
</author>
<author>
<name>Dollibert</name>
<surname>Rach</surname>
</author>
</books>
]]]]><![CDATA[></sourcexml>
<encoding>utf-8</encoding>
<namespaceList>
<!--Zero or more repetitions:-->
<namespace>
<prefix></prefix>
<uri></uri>
</namespace>
</namespaceList>
<xpath>/books/author</xpath>
<!--Optional:-->
<xmldata><![CDATA[<age namespace="http://btx"/>]]]]><![CDATA[></xmldata>
</ws:insertNodes>
</soapenv:Body>
</soapenv:Envelope>
]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:insertNodesResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return><![CDATA[<?xml version='1.0' encoding='UTF-8'?>
<books>
<author>
<name>Mensiok</name>
<surname>Bello</surname>
<age namespace="http://btx"/></author>
<author>
<name>Schwab</name>
<surname>Rumsau</surname>
<age namespace="http://btx"/></author>
<author>
<name>Dollibert</name>
<surname>Rach</surname>
<age namespace="http://btx"/></author>
</books>]]]]><![CDATA[></!></return>
</ns2:insertNodesResponse>
</soap:Body>
</soap:Envelope>
]]></programlisting>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/XmlServices/wrapInCDATA.xml
0,0 → 1,36
<?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>wrapInCDATA</title>
<para>Simply wraps any data fragment into &lt;![CDATA[ ... ]]&gt; section. This can be useful if you
want to preserve indentation or line breaks.
</para>
<para>
Sample request:
<programlisting language="xml"><![CDATA[
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:wrapInCDATA>
<data>Hello World, here is some &lt;xml&gt; data</data>
</ws:wrapInCDATA>
</soapenv:Body>
</soapenv:Envelope>
]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:wrapInCDATAResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return>&lt;![CDATA[Hello World, here is some &lt;xml> data]]&gt;</return>
</ns2:wrapInCDATAResponse>
</soap:Body>
</soap:Envelope>
]]></programlisting>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/XmlServices/replaceNodes.xml
0,0 → 1,74
<?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>replaceNodes</title>
<para>Replace an xml fragment with another xml fragment. This operation is namespace aware.
Sample request:
<programlisting language="xml"><![CDATA[
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ws="http://ws.xservices.brutex.net">
<soapenv:Header/>
<soapenv:Body>
<ws:replaceNodes>
<sourcexml><![CDATA[
<books>
<author>
<name>Mensiok</name>
<surname>Bello</surname>
</author>
<author>
<name>Schwab</name>
<surname>Rumsau</surname>
</author>
<author>
<name>Dollibert</name>
<surname>Rach</surname>
</author>
</books>
]]]]><![CDATA[>
</sourcexml>
<encoding>utf-8</encoding>
<namespaceList>
<!--Zero or more repetitions:-->
<namespace>
<prefix></prefix>
<uri></uri>
</namespace>
</namespaceList>
<xpath>*/name[text()='Schwab']</xpath>
<!--Optional:-->
<xmldata><![CDATA[<name>Meyer</name><age>45</age><!--edited here-->]]]]><![CDATA[></xmldata>
</ws:replaceNodes>
</soapenv:Body>
</soapenv:Envelope>
]]></programlisting>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:replaceNodesResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return><![CDATA[<?xml version='1.0' encoding='UTF-8'?>
<books>
<author>
<name>Mensiok</name>
<surname>Bello</surname>
</author>
<author>
<name>Meyer</name><age>45</age><!--edited here-->
<surname>Rumsau</surname>
</author>
<author>
<name>Dollibert</name>
<surname>Rach</surname>
</author>
</books>]]]]><![CDATA[></return>
</ns2:replaceNodesResponse>
</soap:Body>
</soap:Envelope>]]></programlisting>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/style.css
0,0 → 1,13
 
pre.programlisting {
background-color: #FFFF99 ;
border: 1px solid #006600 ;
}
 
/*Section headings*/
div.chapter div.titlepage h2 {
font-size: 180%;
font-family: Helvetica;
font-weight: Bold;
color: #444444
}
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/types/Types.xml
0,0 → 1,13
<?xml version='1.0' encoding='UTF-8'?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude">
<!-- Sort alphabetically -->
<xi:include href="./AntProperty.xml" />
<xi:include href="./DateInfoType.xml" />
<xi:include href="./FileResource.xml" />
<xi:include href="./HostConnection.xml" />
<xi:include href="./PatternElement.xml" />
<xi:include href="./PatternSetType.xml" />
<xi:include href="./ReturnCode.xml" />
<xi:include href="./SelectorType.xml" />
</section>
/xservices/branches/xservices-jre7/doc/types/AntProperty.xml
0,0 → 1,31
<?xml version="1.0" encoding="UTF-8"?>
<section id="antproperty">
<title>AntProperty type</title>
<para>The AntProperty type defines a list of key/value pairs.</para>
<para>
The defining Java class is
<ulink
url="javadoc/net/brutex/xservices/types/AntProperty.html">
<classname>net.brutex.xservices.types.AntProperty</classname>
</ulink>
.
</para>
 
<programlisting
language="xml"><![CDATA[
<xs:complexType name="antProperty">
<xs:sequence>
<xs:element name="name" type="xs:string"/>
<xs:element name="value" type="xs:string"/>
</xs:sequence>
</xs:complexType>]]>
</programlisting>
<programlisting
language="xml"><![CDATA[
<AntProperty>
<name>key2</name>
<value>value2</value>
</AntProperty>]]>
</programlisting>
</section>
/xservices/branches/xservices-jre7/doc/types/DateInfoType.xml
0,0 → 1,14
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude">
<title>DateInfoType type</title>
<para>Different presentation of a date time value.</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/DateInfoType.html">
<classname>net.brutex.xservices.types.DateInfoType</classname>
</ulink>
.
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/types/SelectorType.xml
0,0 → 1,22
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook"
version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude" id="selectortype">
<title>SelectorType type</title>
<para>The SelectorType exposes various selectors for the selection of resources (files).</para>
<para>The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/SelectorType.html">
<classname>net.brutex.xservices.types.SelectorType</classname></ulink>.</para>
<bridgehead renderas='sect3'>Schema definition</bridgehead>
<programlisting language="xml"><![CDATA[
<xs:complexType abstract="true" name="selectorType">
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="contains" nillable="true" type="tns:containsSelectorType"/>
</xs:sequence>
</xs:complexType>]]>
</programlisting>
<bridgehead renderas='sect3'>Example XML</bridgehead>
<programlisting language="xml"><![CDATA[
tbd.]]>
</programlisting>
</section>
/xservices/branches/xservices-jre7/doc/types/PatternElement.xml
0,0 → 1,52
<?xml version='1.0' encoding='UTF-8'?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude" id="patternelement">
<title>PatternElement type</title>
<para>The PatternElement type defines single string pattern for file/
directory matching.</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/PatternElement.html">
<classname>net.brutex.xservices.types.PatternElement</classname>
</ulink>
.
</para>
<para>
These patterns look exactly like those used in Apache Ant
<ulink url="http://ant.apache.org/manual/dirtasks.html#patterns">Patterns</ulink>.
The &apos;*&apos; matches zero or more characters and the
&apos;?&apos; will match a single character.
Both symbols can be combined in one pattern. The &apos;**&apos;
symbol can be used to match any directory deepth.
</para>
<para>Some example patterns:</para>
<para>
<parameter>**/mydir/**</parameter>
</para>
<para>Match all file that are located in any directory that has
&quot;mydir&quot; string in its pathname. Also applies to files with
&quot;mydir&quot; in their name.</para>
<para>
<parameter>/mydir/</parameter>
</para>
<para>The
parser will automatically append an &apos;**&apos; symbol, thus the
resulting pattern is
<parameter>/mydir/**</parameter>.
All files below the &quot;/mydir/&quot; directory (including its
sub-directories will be chosen.
</para>
<note>
<para>The pattern is OS independent. You should always use
&quot;/&quot; as path separator, even on windows based systems.
</para>
</note>
<bridgehead renderas='sect3'>Schema definition</bridgehead>
<programlisting language="xml"><![CDATA[<xs:simpleType name="patternElement">
<xs:restriction base="xs:string"/>
</xs:simpleType>]]></programlisting>
 
<bridgehead renderas='sect3'>Example XML</bridgehead>
<programlisting language="xml"><![CDATA[<PatternElement>**/*</PatternElement>]]></programlisting>
 
</section>
/xservices/branches/xservices-jre7/doc/types/FileResource.xml
0,0 → 1,34
<?xml version="1.0" encoding="UTF-8"?>
<section>
<title>FileResource type</title>
<para>The FileResource type defines an URI to a file with optional on-the-fly decompression.</para>
<para>
The defining Java class is
<ulink
url="javadoc/net/brutex/xservices/types/FileResource.html">
<classname>net.brutex.xservices.types.FileResource</classname>
</ulink>
.
</para>
 
<programlisting
language="xml"><![CDATA[
<xs:complexType name="FileResourceType">
<xs:sequence>
<xs:element default="FILE" name="type" type="tns:type"/>
<xs:element name="uri" type="xs:string"/>
</xs:sequence>
</xs:complexType>]]>
</programlisting>
<para>Available types:</para>
<para>FILE: URI points to a local file resource. Examples: c:\temp\something.txt, c:/dir/another.file, /home/brian/file</para>
<para>URL: File from URL (http, https, ftp, ...). Example: http://brutex.net/file.pdf</para>
<para>GZIP and BZIP2: File from a local file system with on-the-fly decompression.</para>
<programlisting
language="xml"><![CDATA[
<resource>
<type>FILE</type>
<uri>c:\temp\xservices.war</uri>
</resource>]]>
</programlisting>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/types/ReturnCode.xml
0,0 → 1,53
<?xml version='1.0' encoding='UTF-8'?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude">
<title>ReturnCode type</title>
<para>
The ReturnCode type is used as the generic answer type for most of the
<application class='software'>BruteXservices</application>
operations.
</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/ReturnCode.html">
<classname>net.brutex.xservices.types.ReturnCode</classname>
</ulink>
.
</para>
<bridgehead renderas='sect3'>Schema definition</bridgehead>
<programlisting language="xml"><![CDATA[
<xs:complexType name="ReturnCodeType">
<xs:sequence>
<xs:element name="returnCode" type="xs:int"/>
<xs:element minOccurs="0" name="stdOut" type="xs:string"/>
<xs:element minOccurs="0" name="stdErr" type="xs:string"/>
<xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="]]><link
linkend="antproperty">tns:antProperty</link><![CDATA["/>
</xs:sequence>
</xs:complexType>]]>
</programlisting>
 
<bridgehead renderas='sect3'>Example XML</bridgehead>
<programlisting language="xml">
&lt;ReturnCode
xmlns:ns2=&quot;http://ws.xservices.brutex.net&quot;&gt;
&lt;returnCode&gt;0&lt;/returnCode&gt;
&lt;stdOut/&gt;
&lt;stdErr/&gt;
&lt;propertyList&gt;
<lineannotation>
See
<link linkend="antproperty">tns:antProperty</link>
for details about the &lt;propertyList&gt; elements.
</lineannotation>
&lt;name&gt;key1&lt;/name&gt;
&lt;value&gt;value1&lt;/value&gt;
&lt;/propertyList&gt;
&lt;propertyList&gt;
&lt;name&gt;key2&lt;/name&gt;
&lt;value&gt;value2&lt;/value&gt;
&lt;/propertyList&gt;
&lt;/ReturnCode&gt;
</programlisting>
 
</section>
/xservices/branches/xservices-jre7/doc/types/PatternSetType.xml
0,0 → 1,32
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude" id="patternsettype">
<title>PatternSetType type</title>
<para>The PatternSetType exposes various filters/ selectors for the
selection of resources (files).</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/PatternSetType.html">
<classname>net.brutex.xservices.types.PatternSetType</classname>
</ulink>
.
</para>
<bridgehead renderas='sect3'>Schema definition</bridgehead>
<programlisting language="xml"><![CDATA[
<xs:complexType name="patternSetType">
<xs:sequence>
<xs:element default="**/*" maxOccurs="unbounded" minOccurs="0" name="include" type="]]><link
linkend="patternelement">tns:patternElement</link><![CDATA["/>
<xs:element maxOccurs="unbounded" minOccurs="0" name="exclude" type="]]><link
linkend="patternelement">tns:patternElement</link><![CDATA["/>
<xs:element minOccurs="0" name="selector" nillable="true" type="]]><link
linkend="selectortype">tns:selectorType</link><![CDATA["/>
</xs:sequence>
</xs:complexType>]]>
</programlisting>
<bridgehead renderas='sect3'>Example XML</bridgehead>
<programlisting language="xml"><![CDATA[
tbd.]]>
</programlisting>
</section>
 
/xservices/branches/xservices-jre7/doc/types/HostConnection.xml
0,0 → 1,37
<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude" id="hostconnection">
<title>HostConnection type</title>
<para>The HostConnection type identifies a server resource and login
credentials.</para>
<para>
The defining Java class is
<ulink url="javadoc/net/brutex/xservices/types/HostConnection.html">
<classname>net.brutex.xservices.types.HostConnection</classname>
</ulink>
.
</para>
<bridgehead renderas='sect3'>Schema definition</bridgehead>
<programlisting language="xml"><![CDATA[
<xs:complexType name="connection">
<xs:sequence>
<xs:element name="hostname" type="xs:string"/>
<xs:element name="port" type="xs:int"/>
<xs:element minOccurs="0" name="user" type="xs:string"/>
<xs:element minOccurs="0" name="password" type="xs:string"/>
</xs:sequence>
</xs:complexType>
]]>
</programlisting>
<bridgehead renderas='sect3'>Example XML</bridgehead>
<programlisting language="xml"><![CDATA[
<host>
<hostname>server.brutex.net</hostname>
<port>512</port> <!-- default rExec port -->
<user>brian</user>
<!--Optional:-->
<password>somepass</password>
</host>
]]>
</programlisting>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/StorageServices/StorageServices.xml
0,0 → 1,12
<?xml version='1.0' encoding="utf-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude"
id="storageservices">
<title>StorageServices</title>
<para>The StorageService will provide get/ push operations to store and retrieve data from various backends.
This is currently under development and not yet released.
Its WSDL is located at
http://server:port/XServices/StorageService?wsdl</para>
<xi:include href="./operationName.xml" />
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/StorageServices/operationName.xml
0,0 → 1,59
<?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> ...
</title>
<para>Description here</para>
<section>
<title>&inp;
</title>
<para />
<table frame="all">
<title>Input parameters
</title>
<tgroup cols="4">
<colspec colnum="1" colname="parameter" />
<colspec colnum="2" colname="type" />
<colspec colnum="3" colname="required" />
<colspec colnum="4" colname="description" />
<thead>
<row>
<entry>parameter</entry>
<entry>type</entry>
<entry>required</entry>
<entry>description</entry>
</row>
</thead>
<tbody>
<row>
<entry>host</entry>
<entry>HostConnection</entry>
<entry>Yes</entry>
<entry>
Host where to execute the command. See
<link linkend='hostconnection'>HostConnection</link>
.
</entry>
</row>
<row>
<entry>command</entry>
<entry>String</entry>
<entry>No</entry>
<entry>Any command including arguments</entry>
</row>
&param-timeout;
</tbody>
</tgroup>
</table>
<para />
</section>
<section>
<title>&outp;
</title>
<xi:include href="../types/ReturnCode.xml" />
</section>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/StringServices/StringServices.xml
0,0 → 1,11
<?xml version='1.0' encoding="utf-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude"
id="stringservices">
<title>StringServices</title>
<para>The StringService provides String manipulation capabilities.
Its WSDL is located at
http://server:port/XServices/StringService?wsdl</para>
<xi:include href="./replaceRegEx.xml" />
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/StringServices/replaceRegEx.xml
0,0 → 1,39
<?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>replaceRegEx</title>
<para>Search and Replace using regular expression.
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:replaceRegEx>
<string>Hallo Welt</string>
<search>W.*</search>
<replace>Brian</replace>
<regexflags>ig</regexflags>
</ws:replaceRegEx>
</soapenv:Body>
</soapenv:Envelope>
]]></screen>
Sample response:
<programlisting language="xml"><![CDATA[
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:replaceRegExResponse xmlns:ns2="http://ws.xservices.brutex.net">
<return>
<string>Hallo Brian</string>
<count>1</count>
</return>
</ns2:replaceRegExResponse>
</soap:Body>
</soap:Envelope>]]></programlisting>
</para>
<para>Allowed regexflags are case-insensitive (i) and global search (g).</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/JobServices/JobServices.xml
0,0 → 1,13
<?xml version="1.0" encoding="utf-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude"
id="jobservices">
<title>JobServices</title>
<para>The JobService bundles re-occuring or scheduled operations. Its WSDL is located at
http://server:port/XServices/JobService?wsdl</para>
<!--
<xi:include href="MiscServices/generateUUID.xml" />
<xi:include href="MiscServices/getHostinfo.xml" />
<xi:include href="MiscServices/sleep.xml" />
-->
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/MailServices/MailServices.xml
0,0 → 1,9
<?xml version="1.0" encoding="utf-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude"
id="mailservices">
<title>MailServices</title>
<para>The MailService contains mail send and receive operations. Its WSDL is located at
http://server:port/XServices/MailService?wsdl</para>
<xi:include href="./sendMailSimple.xml" />
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/MailServices/sendMailSimple.xml
0,0 → 1,10
<?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>sendMailSimple</title>
<para>Send email.</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/MiscServices/MiscServices.xml
0,0 → 1,11
<?xml version="1.0" encoding="utf-8"?>
<section xmlns="http://docbook.org/ns/docbook" version="5.0"
xmlns:xi="http://www.w3.org/2001/XInclude"
id="miscservices">
<title>MiscServices</title>
<para>The MiscService bundles various operations. Its WSDL is located at
http://server:port/XServices/MiscService?wsdl</para>
<xi:include href="./generateUUID.xml" />
<xi:include href="./getHostinfo.xml" />
<xi:include href="./sleep.xml" />
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/MiscServices/sleep.xml
0,0 → 1,15
<?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>sleep</title>
<para>Delays the response by the given minutes/ seconds. Please note,
that it may take more time to perform the server roundtrip (network
delays, parsing, etc.). Also you may have a network timeout set up in
Tomcat or your client that prevents this web service to respond
correctly.
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/MiscServices/generateUUID.xml
0,0 → 1,37
<?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>generateUUID</title>
<para>Generates a UUID that represents a 128-bit value. This operation does not require any
input parameters. The output has the format:
<screen>
0xFFFFFFFF00000000 time_low
0x00000000FFFF0000 time_mid
0x000000000000F000 version
0x0000000000000FFF time_hi
</screen>
The least significant long consists of the following unsigned fields:
<screen>
0xC000000000000000 variant
0x3FFF000000000000 clock_seq
0x0000FFFFFFFFFFFF node
</screen>
Sample response:
<screen><![CDATA[
<soap:Envelope
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns1:generateUUIDResponse
xmlns:ns1="http://ws.xservices.brutex.net">
<ns1:return>]]><emphasis>33b9e5c8-9102-423b-88af-bbee479ebea8</emphasis><![CDATA[</ns1:return>
</ns1:generateUUIDResponse>
</soap:Body>
</soap:Envelope>
]]></screen>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/MiscServices/getHostinfo.xml
0,0 → 1,41
<?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>getHostinfo</title>
<para>Collect information about a host address.
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:getHostinfo>
<ws:hostname>]]><emphasis>google.com</emphasis><![CDATA[</ws:hostname>
</ws:getHostinfo>
</soapenv:Body>
</soapenv:Envelope>
]]></screen>
Sample response:
<screen><![CDATA[
<soap:Envelope
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns1:getHostinfoResponse
xmlns:ns1="http://ws.xservices.brutex.net">
<ns1:return>
<ns1:domain>]]><emphasis>1e100.net</emphasis><![CDATA[</ns1:domain>
<ns1:ip4>]]><emphasis>173.194.66.105</emphasis><![CDATA[</ns1:ip4>
<ns1:ip6>]]><emphasis>::</emphasis><![CDATA[</ns1:ip6>
<ns1:name>]]><emphasis>we-in-f105</emphasis><![CDATA[</ns1:name>
</ns1:return>
</ns1:getHostinfoResponse>
</soap:Body>
</soap:Envelope>
]]></screen>
</para>
</section>
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property
/xservices/branches/xservices-jre7/doc/entities.ent
0,0 → 1,15
<!ENTITY inp "Input parameters">
<!ENTITY outp "Output parameters">
<!ENTITY brs "">
<!ENTITY param-timeout "<row>
<entry>timeout</entry>
<entry>Long</entry>
<entry>Yes</entry>
<entry>Timeout in milliseconds. The command is forcefully terminated when timeout is reached.</entry>
</row>">
<!ENTITY javadoc-base "file:///home/brian/NetBeansProjects/XServices/dist/">
<!ENTITY examplexml "<bridgehead renderas='sect3'>Example XML</bridgehead>">
<!ENTITY schemadefinition "<bridgehead renderas='sect3'>Schema definition</bridgehead>">
 
 
 
/xservices/branches/xservices-jre7/doc/.
Property changes:
Added: svn:ignore
+.~lock.XServices_V1.0-User_Guide.odt#
+
+api