473,320 Members | 1,820 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

Reading non-standard XML file?

Hello, I have this non-standard XML file that I have to manually sort thru
each day and verify whether various jobs finish successfully or not.

This file isn't a real XML file, so I cannot appear to read it using XML
classes.

I was wondernig if this is something I can/should read into memory using
StreamReader class and then somehow create an XML file in memory with the
outter tags???

Does anyone have any sampel code for this?

It would be be nice if I could create a service to run this each day from
previous day and e-mail the results (StatusDesc messages) to me.

Any help or comments would be appreciated.

<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-24T05:00:08.333-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group ATMT</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-24T05:10:12.067-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE1</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-24T05:23:49.396-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE2</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-24T05:30:55.614-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE3</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-24T05:50:45.239-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE4</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-24T05:53:21.474-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE5</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-24T06:15:33.536-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE6</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-24T06:23:53.099-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE7</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-24T06:40:27.927-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE8</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-24T06:49:15.630-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE9</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-24T07:11:19.364-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Refresh Completed for 10 Group(s).
Successful=10
Failed=0
Skipped=0
</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-25T05:00:02.021-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group ATMT</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-25T05:09:45.583-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE1</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-25T05:22:43.052-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE2</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-25T05:29:28.255-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE3</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-25T05:48:48.021-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE4</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-25T05:51:23.099-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE5</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-25T06:12:36.224-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE6</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-25T06:20:22.583-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE7</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-25T06:35:49.208-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE8</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-25T06:44:03.474-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE9</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-25T07:05:31.333-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Refresh Completed for 10 Group(s).
Successful=10
Failed=0
Skipped=0
</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-26T05:00:11.380-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group ATMT</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-26T05:09:48.942-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE1</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-26T05:22:23.177-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE2</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-26T05:29:12.692-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE3</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-26T05:47:51.396-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE4</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-26T05:50:19.692-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE5</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-26T06:11:39.786-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE6</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-26T06:19:45.817-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE7</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-26T06:35:09.817-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE8</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-26T06:43:29.208-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE9</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-26T07:04:51.067-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Refresh Completed for 10 Group(s).
Successful=10
Failed=0
Skipped=0
</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T05:00:11.146-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group ATMT</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T05:09:49.083-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE1</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T05:22:30.880-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE2</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T05:29:31.614-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE3</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T05:48:27.021-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE4</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T05:50:55.521-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE5</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T06:12:20.411-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE6</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T06:20:33.755-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE7</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T06:36:34.052-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE8</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T06:45:30.114-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE9</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T07:07:31.489-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Refresh Completed for 10 Group(s).
Successful=10
Failed=0
Skipped=0
</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T15:30:53.875-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>PRM Data Replication Service Started at 5/27/2008 3:30:53
PM</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T15:30:54.203-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Started using RefreshTime=05:00; TimeOut = 300; and
Group(s)=ATMT,BASE1,BASE2,BASE3,BASE4,BASE5,BASE6, BASE7,BASE8,BASE9,INST112,INST114,INST115,INST116, INST118,INST121,INST123,INST137,INST143,INST146,IN ST148,INST151,INST179,INST185,INST189,INST191,INST 200,INST204,INST206,INST253,INST264,INST274,INST30 0,INST303,INST317,INST319,INST324,INST332,INST338, INST344,INST347,INST350,INST358,INST369,INST371,IN ST377,INST466,INST515,INST526,INST528,INST530,INST 533,INST555,INST562,INST566,INST586,INST587,INST60 5,INST607,INST609,INST611,INST622,INST634,INST635, INST640,INST651,INST683,INST728,INST749,INST754,IN ST773,INST775,INST776,INST778,INST780,INST781,INST 782,INST784,INST790,INST797,INST820,INST825,INST83 5,INST859,INST863,INST868,INST872,INST892,INST910, INST956,ITI1,ITI2,ITI3,ITI5,ITI6,ITI7,ITI8,RELXX</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T15:31:14.265-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group ATMT</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T15:45:06.859-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE1</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T16:00:55.046-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE2</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T16:09:49.609-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE3</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T16:32:55.765-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE4</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T16:36:01.265-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE5</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T17:01:50.640-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE6</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T17:11:40.765-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE7</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T17:34:27.843-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE8</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T17:46:09.187-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE9</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-27T18:09:17.531-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Refresh Completed for 10 Group(s).
Successful=10
Failed=0
Skipped=0
</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-28T05:00:17.609-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group ATMT</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-28T05:10:28.812-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE1</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-28T05:23:42.515-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE2</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-28T05:31:17.750-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE3</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-28T05:51:29.296-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE4</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-28T05:54:06.453-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE5</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-28T06:16:18.875-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE6</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-28T06:24:41.437-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE7</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-28T06:41:57.421-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE8</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-28T06:50:52.500-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE9</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-28T07:15:59.953-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Refresh Completed for 10 Group(s).
Successful=10
Failed=0
Skipped=0
</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-29T05:00:16.625-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group ATMT</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-29T05:09:40.218-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE1</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-29T05:22:37.796-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE2</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-29T05:29:18.765-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE3</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-29T05:48:41.218-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE4</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-29T05:51:13.125-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE5</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-29T06:12:39.593-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE6</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-29T06:20:58.125-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE7</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-29T06:37:07.781-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE8</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-29T06:45:55.109-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE9</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-29T07:08:40.078-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Refresh Completed for 10 Group(s).
Successful=10
Failed=0
Skipped=0
</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-30T05:00:13.734-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group ATMT</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-30T05:10:09.812-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE1</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-30T05:23:07.265-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE2</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-30T05:30:08.781-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE3</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-30T05:49:22.140-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE4</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-30T05:51:53.437-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE5</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-30T06:13:29.468-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE6</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-30T06:21:27.984-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE7</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-30T06:37:55.250-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE8</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-30T06:46:28.812-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE9</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-30T07:09:40.218-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Refresh Completed for 10 Group(s).
Successful=10
Failed=0
Skipped=0
</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T05:00:20.140-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group ATMT</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T05:09:52.343-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE1</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T05:22:57.625-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE2</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T05:30:06.296-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE3</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T05:49:13.875-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE4</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T05:51:44.031-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE5</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T06:13:13.734-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE6</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T06:21:05.328-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE7</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T06:36:33.937-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE8</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T06:44:49.515-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE9</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T07:05:41.375-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Refresh Completed for 10 Group(s).
Successful=10
Failed=0
Skipped=0
</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T12:36:09.453-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>PRM Data Replication Service Started at 5/31/2008 12:36:09
PM</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T12:36:09.734-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Started using RefreshTime=05:00; TimeOut = 300; and
Group(s)=ATMT,BASE1,BASE2,BASE3,BASE4,BASE5,BASE6, BASE7,BASE8,BASE9,INST112,INST114,INST115,INST116, INST118,INST121,INST123,INST137,INST143,INST146,IN ST148,INST151,INST179,INST185,INST189,INST191,INST 200,INST204,INST206,INST253,INST264,INST274,INST30 0,INST303,INST317,INST319,INST324,INST332,INST338, INST344,INST347,INST350,INST358,INST369,INST371,IN ST377,INST466,INST515,INST526,INST528,INST530,INST 533,INST555,INST562,INST566,INST586,INST587,INST60 5,INST607,INST609,INST611,INST622,INST634,INST635, INST640,INST651,INST683,INST728,INST749,INST754,IN ST773,INST775,INST776,INST778,INST780,INST781,INST 782,INST784,INST790,INST797,INST820,INST825,INST83 5,INST859,INST863,INST868,INST872,INST892,INST910, INST956,ITI1,ITI2,ITI3,ITI5,ITI6,ITI7,ITI8,RELXX</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T12:36:29.781-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group ATMT</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T12:47:34.765-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE1</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T13:01:28.859-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE2</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T13:09:22.890-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE3</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T13:30:48.953-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE4</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T13:33:41.125-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE5</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T13:58:04.796-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE6</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T14:07:58.250-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE7</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T14:28:06.078-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE8</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T14:36:49.093-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE9</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-05-31T14:58:38.234-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Refresh Completed for 10 Group(s).
Successful=10
Failed=0
Skipped=0
</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-06-01T05:00:19.203-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group ATMT</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-06-01T05:10:51.953-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE1</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-06-01T05:24:05.140-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE2</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-06-01T05:31:23.890-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE3</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-06-01T05:50:41.828-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Starting Replication for Group BASE4</StatusDesc>
<Severity>Warning</Severity>
</LogEntry>
<LogEntry Version="1.1" PackageName="PRM1460" PackageVersion="19.60.0.10"
xmlns="http://integration.company1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://integration.company1.com LogEntry.xsd">
<DateTime>2008-06-01T05:53:06.859-04:00</DateTime>
<AppID Version="19.60.0.7">PRM1360</AppID>
<Module>PRM1360</Module>
<Function>a</Function>
<StatusType>Message</StatusType>
<StatusDesc>Star

Jun 27 '08 #1
7 1786
On Jun 20, 4:50*pm, "dm3281" <dm3...@nospam.netwrote:
Hello, I have this non-standard XML file that I have to manually sort thru
each day and verify whether various jobs finish successfully or not.

This file isn't a real XML file, so I cannot appear to read it using XML
classes.

I was wondernig if this is something I can/should read into memory using
StreamReader class and then somehow create an XML file in memory with the
outter tags???

Does anyone have any sampel code for this?

It would be be nice if I could create a service to run this each day from
previous day and e-mail the results (StatusDesc messages) to me.

Any help or comments would be appreciated.
<snip>

How big are these in practice? If you're happy to have them in memory,
then the easiest thing to do is read the whole lot into memory as a
string (TextReader.ReadToEnd), prepend/append the start/end tags, and
then use the normal XML APIs by providing them with a StringReader.

If the files are too big to realistically load them into memory, you
could write a TextReader (or Stream) which effectively concatenated
other TextReaders/Streams - then just build up the data from the
start, middle and end.

Jon
Jun 27 '08 #2
dm3281 wrote:
Hello, I have this non-standard XML file that I have to manually sort
thru each day and verify whether various jobs finish successfully or not.

This file isn't a real XML file, so I cannot appear to read it using XML
classes.

I was wondernig if this is something I can/should read into memory using
StreamReader class and then somehow create an XML file in memory with
the outter tags???

Does anyone have any sampel code for this?
You can try to read it with XmlReader in fragment mode e.g.
XmlReaderSettings settings = new XmlReaderSettings();
settings.ConformanceLevel = ConformanceLevel.Fragment;
using (XmlReader reader = XmlReader.Create("file.xml", settings))
{
while (reader.Read())
{
//extract contents here
}
}
You can even use XPath on that fragment if you pass an XmlReader like
the one created above to new XPathDocument().

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Jun 27 '08 #3
Thanks fot the feedback. The file basically gets appended to each day. So
there could be a few hundred rows a day until I delete the file.

Do you know of a way I can read the file and save the EOF location. So next
time I read it I can continue where it left off?

"Jon Skeet [C# MVP]" <sk***@pobox.comwrote in message
news:60**********************************@79g2000h sk.googlegroups.com...
On Jun 20, 4:50 pm, "dm3281" <dm3...@nospam.netwrote:
Hello, I have this non-standard XML file that I have to manually sort thru
each day and verify whether various jobs finish successfully or not.

This file isn't a real XML file, so I cannot appear to read it using XML
classes.

I was wondernig if this is something I can/should read into memory using
StreamReader class and then somehow create an XML file in memory with the
outter tags???

Does anyone have any sampel code for this?

It would be be nice if I could create a service to run this each day from
previous day and e-mail the results (StatusDesc messages) to me.

Any help or comments would be appreciated.
<snip>

How big are these in practice? If you're happy to have them in memory,
then the easiest thing to do is read the whole lot into memory as a
string (TextReader.ReadToEnd), prepend/append the start/end tags, and
then use the normal XML APIs by providing them with a StringReader.

If the files are too big to realistically load them into memory, you
could write a TextReader (or Stream) which effectively concatenated
other TextReaders/Streams - then just build up the data from the
start, middle and end.

Jon

Jun 27 '08 #4
dm3281 <dm****@nospam.netwrote:
Thanks fot the feedback. The file basically gets appended to each day. So
there could be a few hundred rows a day until I delete the file.

Do you know of a way I can read the file and save the EOF location. So next
time I read it I can continue where it left off?
If you read it all into a byte array to start with (e.g. with
File.ReadAllBytes) you could just remember the length that you've read
- quite where you'll remember it is up to the rest of the system, of
course. You might put it in the database, or in a different file.

--
Jon Skeet - <sk***@pobox.com>
Web site: http://www.pobox.com/~skeet
Blog: http://www.msmvps.com/jon.skeet
C# in Depth: http://csharpindepth.com
Jun 27 '08 #5
Thanks.

I seem to remember back in my TRS-80 days that in LDOS I could do a #1.EOF
or something and it would give me the position. Later when I OPENed the
file, I could #1.SEEK or something to the saved position. Oh well --

"Jon Skeet [C# MVP]" <sk***@pobox.comwrote in message
news:MP*********************@msnews.microsoft.com. ..
dm3281 <dm****@nospam.netwrote:
>Thanks fot the feedback. The file basically gets appended to each day.
So
there could be a few hundred rows a day until I delete the file.

Do you know of a way I can read the file and save the EOF location. So
next
time I read it I can continue where it left off?

If you read it all into a byte array to start with (e.g. with
File.ReadAllBytes) you could just remember the length that you've read
- quite where you'll remember it is up to the rest of the system, of
course. You might put it in the database, or in a different file.

--
Jon Skeet - <sk***@pobox.com>
Web site: http://www.pobox.com/~skeet
Blog: http://www.msmvps.com/jon.skeet
C# in Depth: http://csharpindepth.com
Jun 27 '08 #6

All --

I wrote the following code, however there appears to be a problem with
SelectNodes("Log/LogEntry") as I'm not getting any nodes? Is there another
problem with the file format that I'm not seeing?

class Program
{
static void Main(string[] args)
{
ReadFile(@"C:\TEMP\PRM1360.trc");
}

static void ReadFile(string filename)
{
StreamReader sr = new StreamReader(@"C:\TEMP\PRM1360.trc");

string myfile = sr.ReadToEnd();

StringReader sreader = new StringReader("<?xml version='1.0' ?>"
+ System.Environment.NewLine +
"<!-- This file was generated from another
program -->" + System.Environment.NewLine +
"<Log>" + System.Environment.NewLine +
myfile +
"</Log>" + System.Environment.NewLine);

XmlDocument xd = new XmlDocument();
xd.Load(sreader);

XmlNodeList nodelist = xd.SelectNodes("/Log/LogEntry");

foreach (XmlNode node in nodelist)
{
Console.WriteLine(node.Name);
}
}
}
}

Jun 27 '08 #7
dm3281 wrote:
I wrote the following code, however there appears to be a problem with
SelectNodes("Log/LogEntry") as I'm not getting any nodes? Is there
another problem with the file format that I'm not seeing?
The LogEntry elements are in the namespace
http://integration.company1.com/ so you need to use an
XmlNamespaceManager and bind a prefix to the namespace URI and use that
prefix in your XPath expressions to qualify names:
XmlNamespaceManager mgr = new XmlNamespaceManager(xd.NameTable);
mgr.AddNamespace("ic", "http://integration.company1.com/");
xd.SelectNodes("/Log/ic:LogEntry", mgr)

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Jun 27 '08 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Eddie | last post by:
When I use JavaScript to read an element's textDecoration style, I only get one value even if there are more than one in the sytle sheet. For example if the text-decoration is defined as:...
1
by: Roger Godefroy | last post by:
Hi there... I want to read fieldvalues from out of a dynamicaly created table (php). But this has to be done by JavaScript. Every row of the table has a select-box, inputbox and a order-button....
5
by: Abyss | last post by:
My view. anyone that doesn't like it tough, click off and stop reading it. I have spent the last 45 minutes reading through all the posts, and I believe that you have all missed the mark of...
4
by: Mark Stijnman | last post by:
A while ago I posted a question about how to get operator behave differently for reading and writing. I basically wanted to make a vector that can be queried about whether it is modified recently...
9
by: Worker | last post by:
Hi , i`ve been wondering how many days do you guys need to read an average asp.net programming book, answer honestly please, for example 800 pages big, how many pages a day? I just wanna see if i...
16
by: Ali | last post by:
Hi I want to write (or read) to a stream, but the data is not byte array I converted the data to byte array manually, but it is very slow, (becuse the data is very large) Is another way for this...
6
by: Peter | last post by:
I'm interested to know what ideas are out there for reading a parallel port at a constant sample rate while still allowing the user to interact with the GUI. That is, reading it every 10ms for...
9
by: Hal Vaughan | last post by:
I've done a fair amount of Googling for information on reading the serial port in C++ (and in Linux). Unfortunately, out of every 4 hits, 1 seems to be an unanswered question, 1 is someone saying,...
24
by: arnuld | last post by:
I have a function named getword that read every single input from std. input. WHAT I WANTED: I want it read the word if it has less than or equal to 30 characters. Anything else beyond that...
5
by: Justin | last post by:
Here's my XML: <?xml version="1.0" ?> <AppMode Type="Network"> <CurrentFolder Path="c:\tabs"> <Tabs> <FilePath>tabs\Justin.tab</FilePath> <FilePath>tabs\Julie.tab</FilePath> *****There could...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.