TaskTracer events as of 2.3.0 in raw XML
- TaskTracer events flow within Tasktracer as a socket message that is in nexted xml form. That is, there is a Body, which is context specific, which is xml-escaped and put into the outer message envelope, which is also xml. First follows an example of that, but the remaining xml samples have the Body in xml, and the outer envelope fields (the fields common to all TT events) broken out above.
- TaskTracer events that are pulled in by the TT event plugin in calo are deserialized into a Java object that maps to the xml structure pretty cleanly.
========================================
EventTime : 3/15/2007 9:07:31 AM
Listener Id : IExplorer
BodyType : TaskEvents.IEWebpageEventArgs
EventType : Navigate
<?xml version="1.0" encoding="utf-16"?>
<IEWebpageEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Webpage>
<LocationURL>http://engr.oregonstate.edu/</LocationURL>
<Path>C:\Program Files\Internet Explorer\</Path>
<Name>College of Engineering - Oregon State University</Name>
<ContentWords>xxx</ContentWords>
</Webpage>
<HWND>2427124</HWND>
<LinkCount>0</LinkCount>
<Referrer> </Referrer>
</IEWebpageEventArgs>
========================================
Tasktracer event Bodies in xml, sorted by Listener which generates the events.
- Events which have been disabled for this release are not included.
- The reference numbers map entries in this table to tables of previous versions, they don't mean anything in the context of a particular release.
FileOpenListener (TT must be installed with admin privilege to get FileOpenListener events)
| ListenerId |
EventType |
Changed since 2.2.2 | XML dump |
|---|---|---|---|
| FileOpenListener | Open | None | ======================================== EventTime : 3/15/2007 9:25:44 AM Listener Id : FileOpenListener BodyType : TaskEvents.CommonFileOpenSaveInfo EventType : Open <?xml version="1.0" encoding="utf-16"?> <CommonFileOpenSaveInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <ApplicationName>notepad.exe</ApplicationName> <UsingFileDialog>true</UsingFileDialog> <Path>c:\temp\test\sample.txt</Path> </CommonFileOpenSaveInfo> ======================================== |
| FileOpenListener | SaveAs | ProvenanceInfo added, contains source pathname and destination pathname |
========================================
EventTime : 3/15/2007 9:24:18 AM
Listener Id : FileOpenListener
BodyType : TaskEvents.CommonFileOpenSaveInfo
EventType : SaveAs
<?xml version="1.0" encoding="utf-16"?>
<CommonFileOpenSaveInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<ApplicationName>notepad.exe</ApplicationName>
<UsingFileDialog>true</UsingFileDialog>
<Path>c:\temp\test\sample.txt</Path>
<ProvenanceInfo>
<Version>200</Version>
<SourcePathname>c:\program files\tasktracer\readme.txt</SourcePathname>
<DestinationPathname>c:\temp\test\sample.txt</DestinationPathname>
</ProvenanceInfo>
</CommonFileOpenSaveInfo>
========================================
|
| FileOpenListener | FolderPredictorTest | None | ======================================== EventTime : 3/15/2007 9:25:44 AM Listener Id : FileOpenListener BodyType : TaskEvents.FolderPredictionResult EventType : FolderPredictorTest <?xml version="1.0" encoding="utf-16"?> <FolderPredictionResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <ApplicationName>notepad.exe</ApplicationName> <Type>Open</Type> <OriginalFolder>c:\temp\test</OriginalFolder> <FirstPrediction>c:\program files\tasktracer\</FirstPrediction> <SecondPrediction>c:\temp\test\</SecondPrediction> <ThirdPrediction>c:\tttemp\tasktracer-head\java\</ThirdPrediction> <Result>c:\temp\test\</Result> </FolderPredictionResult> ======================================== |
IExplorer
| ListenerId | EventType | Changed since 2.2.2 | XML Dump |
|---|---|---|---|
| IExplorer | Close | None | ========================================
EventTime : 3/15/2007 9:59:06 AM
Listener Id : IExplorer
BodyType : TaskEvents.IEWebpageEventArgs
EventType : Close
<?xml version="1.0" encoding="utf-16"?>
<IEWebpageEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Webpage>
<LocationURL>http://www.google.com/</LocationURL>
<Path>C:\Program Files\Internet Explorer\</Path>
<Name>Google</Name>
</Webpage>
<HWND>1117702</HWND>
<LinkCount>0</LinkCount>
</IEWebpageEventArgs>
========================================
|
| IExplorer | DownloadFile | Completely new event | ======================================== EventTime : 3/15/2007 10:04:16 AM Listener Id : IExplorer BodyType : TaskEvents.ProvenanceInfo EventType : DownloadFile <?xml version="1.0" encoding="utf-16"?> <ProvenanceInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <SourcePathname>http://files6.majorgeeks.com/files/d37124c4c79f357cb02c655671a432fa/spyware/WindowsDefender.msi</SourcePathname> <DestinationPathname>C:\Program Files\TaskTracer\WindowsDefender.msi</DestinationPathname> </ProvenanceInfo> ======================================== |
| IExplorer | Navigate | None | ========================================
EventTime : 3/15/2007 9:07:31 AM
Listener Id : IExplorer
BodyType : TaskEvents.IEWebpageEventArgs
EventType : Navigate
<?xml version="1.0" encoding="utf-16"?>
<IEWebpageEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Webpage>
<LocationURL>http://engr.oregonstate.edu/</LocationURL>
<Path>C:\Program Files\Internet Explorer\</Path>
<Name>College of Engineering - Oregon State University</Name>
<ContentWords>xxx</ContentWords>
</Webpage>
<HWND>2427124</HWND>
<LinkCount>0</LinkCount>
<Referrer> </Referrer>
</IEWebpageEventArgs>
========================================
|
| IExplorer | Quit | None | ========================================
EventTime : 3/15/2007 10:02:10 AM
Listener Id : IExplorer
BodyType : TaskEvents.IEWebpageEventArgs
EventType : Quit
<?xml version="1.0" encoding="utf-16"?>
<IEWebpageEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Webpage>
<LocationURL>http://www.google.com/webhp?ie=UTF-8&oe=UTF-8&hl=en&q=&tab=iw</LocationURL>
<Path>C:\Program Files\Internet Explorer\</Path>
<Name>Google</Name>
<ContentWords />
</Webpage>
<HWND>1117702</HWND>
<LinkCount>0</LinkCount>
<Referrer />
</IEWebpageEventArgs>
========================================
|
WExplorer
| ListenerId | EventType | Changed since 2.2.2 | XML Dump |
|---|---|---|---|
| WExplorer | Close | None | ========================================
EventTime : 3/15/2007 10:11:35 AM
Listener Id : WExplorer
BodyType : TaskEvents.IEWebpageEventArgs
EventType : Close
<?xml version="1.0" encoding="utf-16"?>
<IEWebpageEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Webpage>
<LocationURL>C:\Documents%20and%20Settings</LocationURL>
<Path>C:\WINDOWS\</Path>
<Name>Documents and Settings</Name>
</Webpage>
<HWND>1377832</HWND>
<LinkCount>0</LinkCount>
</IEWebpageEventArgs>
========================================
|
| WExplorer | Navigate | None | ========================================
EventTime : 3/15/2007 10:12:58 AM
Listener Id : WExplorer
BodyType : TaskEvents.IEWebpageEventArgs
EventType : Navigate
<?xml version="1.0" encoding="utf-16"?>
<IEWebpageEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Webpage>
<LocationURL>C:\</LocationURL>
<Path>C:\WINDOWS\</Path>
<Name>Local Disk (C:)</Name>
<ContentWords>xxx</ContentWords>
</Webpage>
<HWND>460444</HWND>
<LinkCount>0</LinkCount>
<Referrer> </Referrer>
</IEWebpageEventArgs>
========================================
|
User
| ListenerId | EventType | Changed since 2.2.2 | XML Dump |
|---|---|---|---|
| User | EventSystemStop | None | ======================================== EventTime : 3/14/2007 10:18:33 AM Listener Id : User BodyType : TaskEvents.TaskEvent EventType : EventSystemStop <?xml version="1.0" encoding="utf-16"?> <TaskEvent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Event System Stop</Name> <Description /> <Type>SystemStop</Type> <UserId>TaskTracer</UserId> </TaskEvent> ======================================== |
| User | KeyPresses | None | ========================================
EventTime : 3/22/2007 12:27:49 PM
Listener Id : User
BodyType : TaskEvents.KeyPresses
EventType : KeyPress
<?xml version="1.0" encoding="utf-16"?>
<KeyPresses xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<KeysList>
<KeyPress>
<Version>200</Version>
<Modifiers>None</Modifiers>
<Key>None</Key>
<Timestamp>2007-03-22T12:27:48.09375-07:00</Timestamp>
</KeyPress>
<KeyPress>
<Version>200</Version>
<Modifiers>None</Modifiers>
<Key>None</Key>
<Timestamp>2007-03-22T12:27:48.640625-07:00</Timestamp>
</KeyPress>
<KeyPress>
<Version>200</Version>
<Modifiers>None</Modifiers>
<Key>None</Key>
<Timestamp>2007-03-22T12:27:48.78125-07:00</Timestamp>
</KeyPress>
<KeyPress>
<Version>200</Version>
<Modifiers>None</Modifiers>
<Key>None</Key>
<Timestamp>2007-03-22T12:27:48.890625-07:00</Timestamp>
</KeyPress>
<KeyPress>
<Version>200</Version>
<Modifiers>None</Modifiers>
<Key>None</Key>
<Timestamp>2007-03-22T12:27:49.171875-07:00</Timestamp>
</KeyPress>
</KeysList>
</KeyPresses>
========================================
|
| User | MouseClick | None | ======================================== EventTime : 3/15/2007 10:17:45 AM Listener Id : User BodyType : TaskEvents.MouseClick EventType : MouseClick <?xml version="1.0" encoding="utf-16"?> <MouseClick xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Modifiers>None</Modifiers> <Button>LButton</Button> <X>450</X> <Y>729</Y> <Hwnd>1771664</Hwnd> <ClassName>WindowsForms10.RichEdit20W.app.0.378734a</ClassName> <Caption /> </MouseClick> ======================================== |
| User | PublisherPause | None | ======================================== EventTime : 3/15/2007 10:18:33 AM Listener Id : User BodyType : TaskEvents.TaskEvent EventType : PublisherPause <?xml version="1.0" encoding="utf-16"?> <TaskEvent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Publisher Pause Event</Name> <Description /> <Type>SystemPause</Type> <UserId>TaskSelector</UserId> </TaskEvent> ======================================== |
| User | PublisherResume | None | ======================================== EventTime : 3/15/2007 10:18:36 AM Listener Id : User BodyType : TaskEvents.TaskEvent EventType : PublisherResume <?xml version="1.0" encoding="utf-16"?> <TaskEvent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Publisher Resume Event</Name> <Description /> <Type>SystemResume</Type> <UserId>TaskSelector</UserId> </TaskEvent> ======================================== |
| User | RefreshSettings | None | ======================================== EventTime : 3/15/2007 12:56:57 PM Listener Id : User BodyType : TaskEvents.TaskEvent EventType : RefreshSettings <?xml version="1.0" encoding="utf-16"?> <TaskEvent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Refresh Settings</Name> <Description /> <Type>RefreshSettings</Type> <UserId>TaskSelector</UserId> </TaskEvent> ======================================== |
| User | TaskBegin | None | ======================================== EventTime : 3/15/2007 10:20:07 AM Listener Id : User BodyType : TaskEvents.TaskEvent EventType : TaskBegin <?xml version="1.0" encoding="utf-16"?> <TaskEvent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>New item</Name> <Description /> <Type>Begin</Type> <UserId>TaskExplorer</UserId> </TaskEvent> ======================================== |
| User | TaskChosen | None | ======================================== EventTime : 3/15/2007 10:20:06 AM Listener Id : User BodyType : TaskEvents.TaskPath EventType : TaskChosen <?xml version="1.0" encoding="utf-16"?> <TaskPath xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Path>New item</Path> <Key>4</Key> <Hidden>false</Hidden> <Timestamp>0001-01-01T00:00:00</Timestamp> </TaskPath> ======================================== |
| User | TaskCreated | None | ======================================== EventTime : 3/15/2007 1:10:53 PM Listener Id : User BodyType : TaskEvents.TaskPath EventType : TaskCreated <?xml version="1.0" encoding="utf-16"?> <TaskPath xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Path>Create Task</Path> <Key>7</Key> <Hidden>false</Hidden> <Timestamp>0001-01-01T00:00:00</Timestamp> </TaskPath> ======================================== |
| User | TaskHidden | None | ======================================== EventTime : 3/15/2007 10:21:48 AM Listener Id : User BodyType : TaskEvents.TaskPath EventType : TaskHidden <?xml version="1.0" encoding="utf-16"?> <TaskPath xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Path>New item</Path> <Key>4</Key> <Hidden>false</Hidden> <Timestamp>0001-01-01T00:00:00</Timestamp> </TaskPath> ======================================== |
| User | TaskRevealed | None | ======================================== EventTime : 3/15/2007 10:24:37 AM Listener Id : User BodyType : TaskEvents.TaskPath EventType : TaskRevealed <?xml version="1.0" encoding="utf-16"?> <TaskPath xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Path>New item</Path> <Key>4</Key> <Hidden>false</Hidden> <Timestamp>0001-01-01T00:00:00</Timestamp> </TaskPath> ======================================== |
| User | TaskResourceChosen | None | ========================================
EventTime : 3/15/2007 10:25:25 AM
Listener Id : User
BodyType : TaskEvents.TaskResource
EventType : TaskResourceChosen
<?xml version="1.0" encoding="utf-16"?>
<TaskResource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<TaskPath>
<Version>200</Version>
<Path>Unknown</Path>
<Key>1</Key>
<Hidden>false</Hidden>
<Timestamp>0001-01-01T00:00:00</Timestamp>
</TaskPath>
<Key>94</Key>
<Name>eventflow+v2.3.0+test</Name>
<Path>http://wiki.library.oregonstate.edu/confluence/display/tt/eventflow+v2.3.0+tes</Path>
<Type>IExplorer</Type>
</TaskResource>
========================================
|
| User | TaskResourceCreated | None | ========================================
EventTime : 3/15/2007 10:25:26 AM
Listener Id : User
BodyType : TaskEvents.TaskResource
EventType : TaskResourceCreated
<?xml version="1.0" encoding="utf-16"?>
<TaskResource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<TaskPath>
<Version>200</Version>
<Path>Unknown</Path>
<Key>1</Key>
<Hidden>false</Hidden>
<Timestamp>0001-01-01T00:00:00</Timestamp>
</TaskPath>
<Key>125</Key>
<Name>http://wiki.library.oregonstate.edu/confluence/display/tt/eventflow+v2.3.0+tes</Name>
<Path>http://wiki.library.oregonstate.edu/confluence/display/tt/eventflow+v2.3.0+tes</Path>
<Type>IExplorer</Type>
</TaskResource>
========================================
|
| User | TaskResourceDeleted | None | ========================================
EventTime : 3/15/2007 10:26:44 AM
Listener Id : User
BodyType : TaskEvents.TaskResource
EventType : TaskResourceDeleted
<?xml version="1.0" encoding="utf-16"?>
<TaskResource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<TaskPath>
<Version>200</Version>
<Path>Unknown</Path>
<Key>1</Key>
<Hidden>false</Hidden>
<Timestamp>0001-01-01T00:00:00</Timestamp>
</TaskPath>
<Key>94</Key>
<Name>eventflow+v2.3.0+test</Name>
<Path>http://wiki.library.oregonstate.edu/confluence/display/tt/eventflow+v2.3.0+tes</Path>
<Type>IExplorer</Type>
</TaskResource>
========================================
|
| User | TaskResourceMoved | None | ========================================
EventTime : 3/15/2007 12:26:27 PM
Listener Id : User
BodyType : TaskEvents.TaskResourceMove
EventType : TaskResourceMoved
<?xml version="1.0" encoding="utf-16"?>
<TaskResourceMove xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<TaskPath>
<Version>200</Version>
<Path>Unknown</Path>
<Key>1</Key>
<Hidden>false</Hidden>
<Timestamp>0001-01-01T00:00:00</Timestamp>
</TaskPath>
<Key>32</Key>
<Name>Comcast.net</Name>
<Path>http://www.comcast.net</Path>
<Type>IExplorer</Type>
<FromTaskPath>
<Version>200</Version>
<Path>New task</Path>
<Key>2</Key>
<Hidden>false</Hidden>
<Timestamp>0001-01-01T00:00:00</Timestamp>
</FromTaskPath>
</TaskResourceMove>
========================================
|
| User | TaskResourceCopy | None | ========================================
EventTime : 3/15/2007 12:27:03 PM
Listener Id : User
BodyType : TaskEvents.TaskResourceCopy
EventType : TaskResourceCopy
<?xml version="1.0" encoding="utf-16"?>
<TaskResourceCopy xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<TaskPath>
<Version>200</Version>
<Path>New task</Path>
<Key>2</Key>
<Hidden>false</Hidden>
<Timestamp>0001-01-01T00:00:00</Timestamp>
</TaskPath>
<Key>149</Key>
<Name>Comcast.net</Name>
<Path>http://www.comcast.net</Path>
<Type>IExplorer</Type>
<FromTaskPath>
<Version>200</Version>
<Path>Unknown</Path>
<Key>1</Key>
<Hidden>false</Hidden>
<Timestamp>0001-01-01T00:00:00</Timestamp>
</FromTaskPath>
</TaskResourceCopy>
========================================
|
| User | PrototypeAssociated | None | ========================================
EventTime : 3/15/2007 12:28:13 PM
Listener Id : User
BodyType : TaskEvents.PrototypeAssociationAction
EventType : PrototypeAssociated
<?xml version="1.0" encoding="utf-16"?>
<PrototypeAssociationAction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<TaskId>5</TaskId>
<PrototypeIds>
<long>4</long>
</PrototypeIds>
</PrototypeAssociationAction>
========================================
|
| User | PrototypeUnassociated | None | ========================================
EventTime : 3/15/2007 12:29:12 PM
Listener Id : User
BodyType : TaskEvents.PrototypeAssociationAction
EventType : PrototypeUnassociated
<?xml version="1.0" encoding="utf-16"?>
<PrototypeAssociationAction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<TaskId>5</TaskId>
<PrototypeIds>
<long>4</long>
</PrototypeIds>
</PrototypeAssociationAction>
========================================
|
| User | PrototypeResourceOpened | None | ========================================
EventTime : 3/15/2007 12:37:29 PM
Listener Id : User
BodyType : TaskEvents.PrototypeResource
EventType : PrototypeResourceOpened
<?xml version="1.0" encoding="utf-16"?>
<PrototypeResource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<TaskPath>
<Version>200</Version>
<Path>Other new item</Path>
<Key>5</Key>
<Hidden>false</Hidden>
<Timestamp>0001-01-01T00:00:00</Timestamp>
</TaskPath>
<Key>111</Key>
<Name>sample.txt</Name>
<Path>c:\temp\test\</Path>
<Type>Text</Type>
<PrototypeId>6</PrototypeId>
<OriginalProtoResourceName />
</PrototypeResource>
========================================
|
| User | PrototypeResourceSavedAs | None | ========================================
EventTime : 3/15/2007 12:38:39 PM
Listener Id : User
BodyType : TaskEvents.PrototypeResource
EventType : PrototypeResourceSavedAs
<?xml version="1.0" encoding="utf-16"?>
<PrototypeResource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<TaskPath>
<Version>200</Version>
<Path> </Path>
<Key>0</Key>
<Hidden>false</Hidden>
<Timestamp>0001-01-01T00:00:00</Timestamp>
</TaskPath>
<Key>0</Key>
<Name>sample_saved_again.txt</Name>
<Path>c:\documents and settings\fredric\application data\tasktracer\prototypecopies</Path>
<Type>Text</Type>
<PrototypeId>0</PrototypeId>
<OriginalProtoResourceName>sample_4d2a1f0b-2ccd-4a8e-a74c-5db68923c2db.txt</OriginalProtoResourceName>
</PrototypeResource>
========================================
|
| User | StickTask | Completely new event | ========================================
EventTime : 3/15/2007 2:14:03 PM
Listener Id : User
BodyType : TaskEvents.StickTask
EventType : StickTask
<?xml version="1.0" encoding="utf-16"?>
<StickTask xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<TaskPath>
<Version>200</Version>
<Path>New task</Path>
<Key>2</Key>
<Hidden>false</Hidden>
<Timestamp>0001-01-01T00:00:00</Timestamp>
</TaskPath>
</StickTask>
========================================
|
| User | UnstickTask | Completely new event | ========================================
EventTime : 3/15/2007 2:14:01 PM
Listener Id : User
BodyType : TaskEvents.UnstickTask
EventType : UnstickTask
<?xml version="1.0" encoding="utf-16"?>
<UnstickTask xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<TaskPath>
<Version>200</Version>
<Path>New task</Path>
<Key>2</Key>
<Hidden>false</Hidden>
<Timestamp>0001-01-01T00:00:00</Timestamp>
</TaskPath>
</UnstickTask>
========================================
|
Os
| ListenerId | EventType | Changed since 2.2.2 | XML Dump |
|---|---|---|---|
| Os | FileRename | Not in 2.2.2 | ========================================
EventTime : 3/15/2007 12:43:32 PM
Listener Id : Os
BodyType : TaskEvents.FileRenameEventArgs
EventType : FileRename
<?xml version="1.0" encoding="utf-16"?>
<FileRenameEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<ChangeType>Renamed</ChangeType>
<FullPath>C:\Temp\Test\sample_renamed.txt</FullPath>
<Name>Temp\Test\sample_renamed.txt</Name>
<OldFullPath>C:\Temp\Test\sample.txt</OldFullPath>
<OldName>Temp\Test\sample.txt</OldName>
<ProvenanceInfo>
<Version>200</Version>
<SourcePathname>C:\Temp\Test\sample.txt</SourcePathname>
<DestinationPathname>C:\Temp\Test\sample_renamed.txt</DestinationPathname>
</ProvenanceInfo>
</FileRenameEventArgs>
========================================
|
| Os | OsWindowCreated | None | ========================================
EventTime : 3/15/2007 12:40:21 PM
Listener Id : Os
BodyType : TaskEvents.WindowsPath
EventType : OsWindowCreated
<?xml version="1.0" encoding="utf-16"?>
<WindowsPath xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<WinEventArgs>
<WindowEventArgs>
<HWND>4260562</HWND>
<ClassName>#43</ClassName>
<Caption>IEXPLORE: MCI command handling window</Caption>
<Rectangle>
<left>0</left>
<top>0</top>
<right>0</right>
<bottom>0</bottom>
</Rectangle>
</WindowEventArgs>
</WinEventArgs>
</WindowsPath>
========================================
|
| Os | OsWindowDestroyed | None | ========================================
EventTime : 3/15/2007 12:40:22 PM
Listener Id : Os
BodyType : TaskEvents.WindowsPath
EventType : OsWindowDestroyed
<?xml version="1.0" encoding="utf-16"?>
<WindowsPath xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<WinEventArgs>
<WindowEventArgs>
<HWND>6422858</HWND>
<ClassName>IEFrame</ClassName>
<Caption>IEXPLORE: HOME - Comcast.net - Microsoft Internet Explorer</Caption>
<Rectangle>
<left>0</left>
<top>0</top>
<right>0</right>
<bottom>0</bottom>
</Rectangle>
</WindowEventArgs>
</WinEventArgs>
</WindowsPath>
========================================
|
| Os | OsWindowFocus | None | ========================================
EventTime : 3/15/2007 12:40:22 PM
Listener Id : Os
BodyType : TaskEvents.WindowsPath
EventType : OsWindowFocus
<?xml version="1.0" encoding="utf-16"?>
<WindowsPath xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<WinEventArgs>
<WindowEventArgs>
<HWND>6422858</HWND>
<ClassName>IEFrame</ClassName>
<Caption>IEXPLORE: HOME - Comcast.net - Microsoft Internet Explorer</Caption>
<Rectangle>
<left>10000</left>
<top>10000</top>
<right>11084</right>
<bottom>10948</bottom>
</Rectangle>
</WindowEventArgs>
</WinEventArgs>
</WindowsPath>
========================================
|
MsPowerPoint
| ListenerId | EventType | Changed since 2.2.2 | XML Dump |
|---|---|---|---|
| MsPowerPoint | Close | None | ======================================== EventTime : 3/15/2007 1:06:58 PM Listener Id : MsPowerPoint BodyType : TaskEvents.PowerPointPresentation EventType : Close <?xml version="1.0" encoding="utf-16"?> <PowerPointPresentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Presentation.ppt</Name> <Path>C:\Temp\Test</Path> <ReadOnly>msoFalse</ReadOnly> <Saved>msoTrue</Saved> <FullName>C:\Temp\Test\Presentation.ppt</FullName> <ContentWords /> </PowerPointPresentation> ======================================== |
| MsPowerPoint | Copy | Not in 2.2.2 | ======================================== EventTime : 3/15/2007 1:03:07 PM Listener Id : MsPowerPoint BodyType : TaskEvents.ClipboardEventArgs EventType : Copy <?xml version="1.0" encoding="utf-16"?> <ClipboardEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SourceWnd>4194694</SourceWnd> <WindowTitle>Microsoft PowerPoint - [Presentation1]</WindowTitle> <MainWindowTitle>Microsoft PowerPoint - [Presentation1]</MainWindowTitle> <MainModuleName>POWERPNT.EXE</MainModuleName> <MainModuleFileName>C:\Program Files\Microsoft Office\OFFICE11\POWERPNT.EXE</MainModuleFileName> <DocumentName>Presentation1</DocumentName> <DocumentPath /> <DataString>Copy text</DataString> <DataCRC>160544256</DataCRC> <DataFormatsAvailable /> </ClipboardEventArgs> ======================================== |
| MsPowerPoint | Cut | Not in 2.2.2 | ======================================== EventTime : 3/15/2007 1:04:41 PM Listener Id : MsPowerPoint BodyType : TaskEvents.ClipboardEventArgs EventType : Cut <?xml version="1.0" encoding="utf-16"?> <ClipboardEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SourceWnd>4194694</SourceWnd> <WindowTitle>Microsoft PowerPoint - [Presentation1]</WindowTitle> <MainWindowTitle>Microsoft PowerPoint - [Presentation1]</MainWindowTitle> <MainModuleName>POWERPNT.EXE</MainModuleName> <MainModuleFileName>C:\Program Files\Microsoft Office\OFFICE11\POWERPNT.EXE</MainModuleFileName> <DocumentName>Presentation1</DocumentName> <DocumentPath /> <DataString /> <DataCRC>0</DataCRC> <DataFormatsAvailable /> </ClipboardEventArgs> ======================================== |
| MsPowerPoint | FolderPredictorTest | None | ======================================== EventTime : 3/15/2007 1:08:50 PM Listener Id : MsPowerPoint BodyType : TaskEvents.FolderPredictionResult EventType : FolderPredictorTest <?xml version="1.0" encoding="utf-16"?> <FolderPredictionResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <ApplicationName>MsPowerPoint</ApplicationName> <Type>SaveAs</Type> <OriginalFolder>C:\Temp\Test</OriginalFolder> <FirstPrediction>C:\Temp\Test\</FirstPrediction> <SecondPrediction>c:\program files\tasktracer\</SecondPrediction> <ThirdPrediction>c:\documents and settings\fredric\application data\tasktracer\prototypecopies\</ThirdPrediction> <Result>C:\Temp\Test</Result> </FolderPredictionResult> ======================================== |
| MsPowerPoint | New | None | ======================================== EventTime : 3/15/2007 1:05:08 PM Listener Id : MsPowerPoint BodyType : TaskEvents.PowerPointPresentation EventType : New <?xml version="1.0" encoding="utf-16"?> <PowerPointPresentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Presentation2</Name> <Path /> <ReadOnly>msoFalse</ReadOnly> <Saved>msoTrue</Saved> <FullName>Presentation2</FullName> <ContentWords /> </PowerPointPresentation> ======================================== |
| MsPowerPoint | Open | None | ======================================== EventTime : 3/15/2007 1:07:39 PM Listener Id : MsPowerPoint BodyType : TaskEvents.PowerPointPresentation EventType : Open <?xml version="1.0" encoding="utf-16"?> <PowerPointPresentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Presentation.ppt</Name> <Path>C:\Temp\Test</Path> <ReadOnly>msoFalse</ReadOnly> <Saved>msoTrue</Saved> <FullName>C:\Temp\Test\Presentation.ppt</FullName> <ContentWords /> </PowerPointPresentation> ======================================== |
| MsPowerPoint | Paste | Not in 2.2.2 | ======================================== EventTime : 3/15/2007 1:03:14 PM Listener Id : MsPowerPoint BodyType : TaskEvents.ClipboardEventArgs EventType : Paste <?xml version="1.0" encoding="utf-16"?> <ClipboardEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SourceWnd>4194694</SourceWnd> <WindowTitle>Microsoft PowerPoint - [Presentation1]</WindowTitle> <MainWindowTitle>Microsoft PowerPoint - [Presentation1]</MainWindowTitle> <MainModuleName>POWERPNT.EXE</MainModuleName> <MainModuleFileName>C:\Program Files\Microsoft Office\OFFICE11\POWERPNT.EXE</MainModuleFileName> <DocumentName>Presentation1</DocumentName> <DocumentPath /> <DataString /> <DataCRC>0</DataCRC> <DataFormatsAvailable /> </ClipboardEventArgs> ======================================== |
| MsPowerPoint | None | ======================================== EventTime : 3/15/2007 1:06:22 PM Listener Id : MsPowerPoint BodyType : TaskEvents.PowerPointPresentation EventType : Print <?xml version="1.0" encoding="utf-16"?> <PowerPointPresentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Presentation.ppt</Name> <Path>C:\Temp\Test</Path> <ReadOnly>msoFalse</ReadOnly> <Saved>msoTrue</Saved> <FullName>C:\Temp\Test\Presentation.ppt</FullName> <ContentWords /> </PowerPointPresentation> ======================================== |
|
| MsPowerPoint | Quit | None | ======================================== EventTime : 3/15/2007 1:09:37 PM Listener Id : MsPowerPoint BodyType : TaskEvents.ApplicationEvent EventType : Quit <?xml version="1.0" encoding="utf-16"?> <ApplicationEvent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> </ApplicationEvent> ======================================== |
| MsPowerPoint | Save | None | ======================================== EventTime : 3/15/2007 1:05:53 PM Listener Id : MsPowerPoint BodyType : TaskEvents.PowerPointPresentation EventType : Save <?xml version="1.0" encoding="utf-16"?> <PowerPointPresentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Presentation.ppt</Name> <Path>C:\Temp\Test</Path> <ReadOnly>msoFalse</ReadOnly> <Saved>msoTrue</Saved> <FullName>C:\Temp\Test\Presentation.ppt</FullName> <ContentWords /> </PowerPointPresentation> ======================================== |
MsOutlook
NOTE: Fields recieved from Outlook as "null" may appear as missing in XML below
| ListenerId | EventType | Changed since 2.2.2 | XML Dump |
|---|---|---|---|
| MsOutlook | AttachmentAdd | None | ========================================
EventTime : 3/15/2007 1:17:05 PM
Listener Id : MsOutlook
BodyType : TaskEvents.AttachmentEventArgs
EventType : AttachmentAdd
<?xml version="1.0" encoding="utf-16"?>
<AttachmentEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<Attachment>
<Version>200</Version>
<Name>sample.txt</Name>
</Attachment>
<MailItem>
<Version>200</Version>
<Body>This is a test e-mail for XML documentation purposes. </Body>
<From>
<Recipient>
<Version>200</Version>
<Name>Freddy</Name>
<Email>carlf@onid.orst.edu</Email>
</Recipient>
</From>
<Importance>Normal</Importance>
<ReceivedTime>2007-03-15T13:17:05.75-07:00</ReceivedTime>
<SentByUser>true</SentByUser>
<SentTime>2007-03-15T13:17:05.75-07:00</SentTime>
<StoreID>0000000038A1BB1005E5101AA1BB08002B2A56C200006D737073742E646C6C00000000004E495441F9BFB80100AA0037D96E0000000043003A005C0044006F00630075006D0065006E0074007300200061006E0064002000530065007400740069006E00670073005C0046007200650064007200690063005C004C006F00630061006C002000530065007400740069006E00670073005C004100700070006C00690063006100740069006F006E00200044006100740061005C004D006900630072006F0073006F00660074005C004F00750074006C006F006F006B005C004F00750074006C006F006F006B002E007000730074000000</StoreID>
<Subject>Test e-mail</Subject>
<To>
<Recipient>
<Version>200</Version>
<Name>Anne.Tracer@oregonstate.edu</Name>
<Email>Anne.Tracer@oregonstate.edu</Email>
</Recipient>
</To>
<Categories>Create Task</Categories>
<Attachments>
<Attachment>
<Version>200</Version>
<Name>sample.txt</Name>
</Attachment>
</Attachments>
<Unread>true</Unread>
<Description>No Description</Description>
</MailItem>
<ProvenanceInfo>
<Version>200</Version>
<SourcePathname>C:\Temp\Test\sample.txt</SourcePathname>
<DestinationPathname>sample.txt</DestinationPathname>
</ProvenanceInfo>
</AttachmentEventArgs>
========================================
|
| MsOutlook | AttachmentOpen | None | ========================================
EventTime : 3/15/2007 1:24:08 PM
Listener Id : MsOutlook
BodyType : TaskEvents.AttachmentEventArgs
EventType : AttachmentOpen
<?xml version="1.0" encoding="utf-16"?>
<AttachmentEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<Attachment>
<Version>200</Version>
<Name>sample.txt</Name>
</Attachment>
<MailItem>
<Version>200</Version>
<Body>This is another test e-mail for XML documentation purposes. -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.446 / Virus Database: 268.18.11/723 - Release Date: 3/15/2007 11:27 AM <<...>> -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.5.446 / Virus Database: 268.18.11/723 - Release Date: 3/15/2007 11:27 AM </Body>
<From>
<Recipient>
<Version>200</Version>
<Name>Freddy</Name>
<Email>carlf@onid.orst.edu</Email>
</Recipient>
</From>
<ID>00000000F31CF8A4134A704F9DD4FA2D924E4A8C84032000</ID>
<Importance>Normal</Importance>
<ReceivedTime>2007-03-15T13:20:28</ReceivedTime>
<SentByUser>false</SentByUser>
<SentTime>2007-03-15T13:20:04</SentTime>
<StoreID>0000000038A1BB1005E5101AA1BB08002B2A56C200007073747072782E646C6C00000000000000004E495441F9BFB80100AA0037D96E000000433A5C446F63756D656E747320616E642053657474696E67735C467265647269635C4C6F63616C2053657474696E67735C4170706C69636174696F6E20446174615C4D6963726F736F66745C4F75746C6F6F6B5C4F75746C6F6F6B6D61696C2E656563732E6F7265676F6E73746174652E6564752D30303030303031302E70737400</StoreID>
<Subject>This is another test e-mail</Subject>
<To>
<Recipient>
<Version>200</Version>
<Name>carlf@eecs.oregonstate.edu</Name>
<Email>carlf@eecs.oregonstate.edu</Email>
</Recipient>
</To>
<Attachments>
<Attachment>
<Version>200</Version>
<Name>sample.txt</Name>
</Attachment>
</Attachments>
<Unread>false</Unread>
<Description>No Description</Description>
</MailItem>
</AttachmentEventArgs>
========================================
|
| MsOutlook | AttachmentSave | None | ========================================
EventTime : 3/15/2007 1:25:32 PM
Listener Id : MsOutlook
BodyType : TaskEvents.AttachmentEventArgs
EventType : AttachmentSave
<?xml version="1.0" encoding="utf-16"?>
<AttachmentEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<Attachment>
<Version>200</Version>
<Name>sample.txt</Name>
</Attachment>
<MailItem>
<Version>200</Version>
<Body>This is another test e-mail for XML documentation purposes. -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.446 / Virus Database: 268.18.11/723 - Release Date: 3/15/2007 11:27 AM <<...>> -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.5.446 / Virus Database: 268.18.11/723 - Release Date: 3/15/2007 11:27 AM </Body>
<From>
<Recipient>
<Version>200</Version>
<Name>Freddy</Name>
<Email>carlf@onid.orst.edu</Email>
</Recipient>
</From>
<ID>00000000F31CF8A4134A704F9DD4FA2D924E4A8C84032000</ID>
<Importance>Normal</Importance>
<ReceivedTime>2007-03-15T13:20:28</ReceivedTime>
<SentByUser>false</SentByUser>
<SentTime>2007-03-15T13:20:04</SentTime>
<StoreID>0000000038A1BB1005E5101AA1BB08002B2A56C200007073747072782E646C6C00000000000000004E495441F9BFB80100AA0037D96E000000433A5C446F63756D656E747320616E642053657474696E67735C467265647269635C4C6F63616C2053657474696E67735C4170706C69636174696F6E20446174615C4D6963726F736F66745C4F75746C6F6F6B5C4F75746C6F6F6B6D61696C2E656563732E6F7265676F6E73746174652E6564752D30303030303031302E70737400</StoreID>
<Subject>This is another test e-mail</Subject>
<To>
<Recipient>
<Version>200</Version>
<Name>carlf@eecs.oregonstate.edu</Name>
<Email>carlf@eecs.oregonstate.edu</Email>
</Recipient>
</To>
<Attachments>
<Attachment>
<Version>200</Version>
<Name>sample.txt</Name>
</Attachment>
</Attachments>
<Unread>false</Unread>
<Description>No Description</Description>
</MailItem>
<ProvenanceInfo>
<Version>200</Version>
<SourcePathname>sample.txt</SourcePathname>
<DestinationPathname>C:\Temp\Test\sample.txt</DestinationPathname>
</ProvenanceInfo>
</AttachmentEventArgs>
========================================
|
| MsOutlook | MailArrived | None | ========================================
EventTime : 3/15/2007 1:20:28 PM
Listener Id : MsOutlook
BodyType : TaskEvents.MailItem
EventType : MailArrived
<?xml version="1.0" encoding="utf-16"?>
<MailItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<Body>This is another test e-mail for XML documentation purposes. -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.446 / Virus Database: 268.18.11/723 - Release Date: 3/15/2007 11:27 AM <<...>> -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.5.446 / Virus Database: 268.18.11/723 - Release Date: 3/15/2007 11:27 AM </Body>
<From>
<Recipient>
<Version>200</Version>
<Name>Freddy</Name>
<Email>carlf@onid.orst.edu</Email>
</Recipient>
</From>
<ID>00000000F31CF8A4134A704F9DD4FA2D924E4A8C84032000</ID>
<Importance>Normal</Importance>
<ReceivedTime>2007-03-15T13:20:28</ReceivedTime>
<SentByUser>false</SentByUser>
<SentTime>2007-03-15T13:20:04</SentTime>
<StoreID>0000000038A1BB1005E5101AA1BB08002B2A56C200007073747072782E646C6C00000000000000004E495441F9BFB80100AA0037D96E000000433A5C446F63756D656E747320616E642053657474696E67735C467265647269635C4C6F63616C2053657474696E67735C4170706C69636174696F6E20446174615C4D6963726F736F66745C4F75746C6F6F6B5C4F75746C6F6F6B6D61696C2E656563732E6F7265676F6E73746174652E6564752D30303030303031302E70737400</StoreID>
<Subject>This is another test e-mail</Subject>
<To>
<Recipient>
<Version>200</Version>
<Name>carlf@eecs.oregonstate.edu</Name>
<Email>carlf@eecs.oregonstate.edu</Email>
</Recipient>
</To>
<Attachments>
<Attachment>
<Version>200</Version>
<Name>sample.txt</Name>
</Attachment>
</Attachments>
<Unread>true</Unread>
<Description>No Description</Description>
</MailItem>
========================================
|
| MsOutlook | MailLabeled | None | ========================================
EventTime : 3/15/2007 1:20:03 PM
Listener Id : MsOutlook
BodyType : TaskEvents.EmailPrediction
EventType : MailLabeled
<?xml version="1.0" encoding="utf-16"?>
<EmailPrediction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<Predictions>
<Prediction>
<Version>200</Version>
<ID>7</ID>
<Name>Create Task</Name>
<Probability>0</Probability>
</Prediction>
</Predictions>
<PredictEmail>
<Version>200</Version>
<Body>This is another test e-mail for XML documentation purposes. </Body>
<From>
<Recipient>
<Version>200</Version>
</Recipient>
</From>
<Importance>Normal</Importance>
<ReceivedTime>2007-03-15T13:20:00</ReceivedTime>
<SentByUser>false</SentByUser>
<SentTime>4501-01-01T00:00:00</SentTime>
<StoreID>0000000038A1BB1005E5101AA1BB08002B2A56C200006D737073742E646C6C00000000004E495441F9BFB80100AA0037D96E0000000043003A005C0044006F00630075006D0065006E0074007300200061006E0064002000530065007400740069006E00670073005C0046007200650064007200690063005C004C006F00630061006C002000530065007400740069006E00670073005C004100700070006C00690063006100740069006F006E00200044006100740061005C004D006900630072006F0073006F00660074005C004F00750074006C006F006F006B005C004F00750074006C006F006F006B002E007000730074000000</StoreID>
<Subject>This is another test e-mail</Subject>
<To>
<Recipient>
<Version>200</Version>
<Name>carlf@eecs.oregonstate.edu</Name>
<Email>carlf@eecs.oregonstate.edu</Email>
</Recipient>
</To>
<Categories>Create Task</Categories>
<Attachments>
<Attachment>
<Version>200</Version>
<Name>sample.txt</Name>
</Attachment>
</Attachments>
<Unread>true</Unread>
<Description>No Description</Description>
</PredictEmail>
</EmailPrediction>
========================================
|
| MsOutlook | MailPredicted | None | ======================================== EventTime : 3/15/2007 1:20:28 PM Listener Id : MsOutlook BodyType : TaskEvents.EmailPrediction EventType : MailPredicted <?xml version="1.0" encoding="utf-16"?><EmailPrediction xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Version>103</Version> <Predictions><Prediction> <ID>1</ID> <Name>Unknown</Name> <Probability>0.9999999919615044</Probability> </Prediction> <Prediction> <ID>2</ID> <Name>New task</Name> <Probability>8.038494060200485E-9</Probability> </Prediction> <Prediction> <ID>2</ID> <Name>New task</Name> <Probability>1.554003317167417E-15</Probability> </Prediction> </Predictions> <PredictEmail> <Body>This is another test e-mail for XML documentation purposes. -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.446 / Virus Database: 268.18.11/723 - Release Date: 3/15/2007 11:27 AM <<...>> -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.5.446 / Virus Database: 268.18.11/723 - Release Date: 3/15/2007 11:27 AM </Body> <From><Recipient> <Name>Freddy</Name> <Email>carlf@onid.orst.edu</Email> </Recipient> </From><ID>00000000F31CF8A4134A704F9DD4FA2D924E4A8C84032000</ID> <Importance>Normal</Importance> <ReceivedTime>2007-03-15T13:20:28</ReceivedTime> <SentByUser>false</SentByUser> <SentTime>2007-03-15T13:20:04</SentTime> <StoreID>0000000038A1BB1005E5101AA1BB08002B2A56C200007073747072782E646C6C00000000000000004E495441F9BFB80100AA0037D96E000000433A5C446F63756D656E747320616E642053657474696E67735C467265647269635C4C6F63616C2053657474696E67735C4170706C69636174696F6E20446174615C4D6963726F736F66745C4F75746C6F6F6B5C4F75746C6F6F6B6D61696C2E656563732E6F7265676F6E73746174652E6564752D30303030303031302E70737400</StoreID> <Unread>true</Unread> <Subject>This is another test e-mail</Subject> <To><Recipient> <Name>carlf@eecs.oregonstate.edu</Name> <Email>carlf@eecs.oregonstate.edu</Email> </Recipient> </To><Bcc>-?-</Bcc> <Cc>-?-</Cc> <Categories>No Category</Categories> <Description>No Description</Description> <Attachment> <Name>sample.txt</Name> <Hash>unknown</Hash> <Location></Location> <Source></Source> </Attachment> </PredictEmail></EmailPrediction> ======================================== |
| MsOutlook | New | Completely new event | ========================================
EventTime : 3/15/2007 1:13:09 PM
Listener Id : MsOutlook
BodyType : TaskEvents.MailItem
EventType : New
<?xml version="1.0" encoding="utf-16"?>
<MailItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<Body> </Body>
<From>
<Recipient>
<Version>200</Version>
</Recipient>
</From>
<Importance>Normal</Importance>
<ReceivedTime>4501-01-01T00:00:00</ReceivedTime>
<SentByUser>false</SentByUser>
<SentTime>4501-01-01T00:00:00</SentTime>
<StoreID>0000000038A1BB1005E5101AA1BB08002B2A56C200006D737073742E646C6C00000000004E495441F9BFB80100AA0037D96E0000000043003A005C0044006F00630075006D0065006E0074007300200061006E0064002000530065007400740069006E00670073005C0046007200650064007200690063005C004C006F00630061006C002000530065007400740069006E00670073005C004100700070006C00690063006100740069006F006E00200044006100740061005C004D006900630072006F0073006F00660074005C004F00750074006C006F006F006B005C004F00750074006C006F006F006B002E007000730074000000</StoreID>
<Subject> </Subject>
<Categories>Create Task</Categories>
<Attachments />
<Unread>true</Unread>
<Description>No Description</Description>
</MailItem>
========================================
|
| MsOutlook | Open | None | ========================================
EventTime : 3/15/2007 1:20:29 PM
Listener Id : MsOutlook
BodyType : TaskEvents.MailItem
EventType : Open
<?xml version="1.0" encoding="utf-16"?>
<MailItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<Body>This is another test e-mail for XML documentation purposes. -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.446 / Virus Database: 268.18.11/723 - Release Date: 3/15/2007 11:27 AM <<...>> -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.5.446 / Virus Database: 268.18.11/723 - Release Date: 3/15/2007 11:27 AM </Body>
<From>
<Recipient>
<Version>200</Version>
<Name>Freddy</Name>
<Email>carlf@onid.orst.edu</Email>
</Recipient>
</From>
<ID>00000000F31CF8A4134A704F9DD4FA2D924E4A8C84032000</ID>
<Importance>Normal</Importance>
<ReceivedTime>2007-03-15T13:20:28</ReceivedTime>
<SentByUser>false</SentByUser>
<SentTime>2007-03-15T13:20:04</SentTime>
<StoreID>0000000038A1BB1005E5101AA1BB08002B2A56C200007073747072782E646C6C00000000000000004E495441F9BFB80100AA0037D96E000000433A5C446F63756D656E747320616E642053657474696E67735C467265647269635C4C6F63616C2053657474696E67735C4170706C69636174696F6E20446174615C4D6963726F736F66745C4F75746C6F6F6B5C4F75746C6F6F6B6D61696C2E656563732E6F7265676F6E73746174652E6564752D30303030303031302E70737400</StoreID>
<Subject>This is another test e-mail</Subject>
<To>
<Recipient>
<Version>200</Version>
<Name>carlf@eecs.oregonstate.edu</Name>
<Email>carlf@eecs.oregonstate.edu</Email>
</Recipient>
</To>
<Attachments>
<Attachment>
<Version>200</Version>
<Name>sample.txt</Name>
</Attachment>
</Attachments>
<Unread>true</Unread>
<Description>No Description</Description>
</MailItem>
========================================
|
| MsOutlook | Quit | None | ======================================== EventTime : 3/15/2007 1:28:21 PM Listener Id : MsOutlook BodyType : TaskEvents.ApplicationEvent EventType : Quit <?xml version="1.0" encoding="utf-16"?> <ApplicationEvent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> </ApplicationEvent> ======================================== |
| MsOutlook | Read | ========================================
EventTime : 3/15/2007 1:20:30 PM
Listener Id : MsOutlook
BodyType : TaskEvents.MailItem
EventType : Read
<?xml version="1.0" encoding="utf-16"?>
<MailItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<Body>This is another test e-mail for XML documentation purposes. -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.446 / Virus Database: 268.18.11/723 - Release Date: 3/15/2007 11:27 AM <<...>> -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.5.446 / Virus Database: 268.18.11/723 - Release Date: 3/15/2007 11:27 AM </Body>
<From>
<Recipient>
<Version>200</Version>
<Name>Freddy</Name>
<Email>carlf@onid.orst.edu</Email>
</Recipient>
</From>
<ID>00000000F31CF8A4134A704F9DD4FA2D924E4A8C84032000</ID>
<Importance>Normal</Importance>
<ReceivedTime>2007-03-15T13:20:28</ReceivedTime>
<SentByUser>false</SentByUser>
<SentTime>2007-03-15T13:20:04</SentTime>
<StoreID>0000000038A1BB1005E5101AA1BB08002B2A56C200007073747072782E646C6C00000000000000004E495441F9BFB80100AA0037D96E000000433A5C446F63756D656E747320616E642053657474696E67735C467265647269635C4C6F63616C2053657474696E67735C4170706C69636174696F6E20446174615C4D6963726F736F66745C4F75746C6F6F6B5C4F75746C6F6F6B6D61696C2E656563732E6F7265676F6E73746174652E6564752D30303030303031302E70737400</StoreID>
<Subject>This is another test e-mail</Subject>
<To>
<Recipient>
<Version>200</Version>
<Name>carlf@eecs.oregonstate.edu</Name>
<Email>carlf@eecs.oregonstate.edu</Email>
</Recipient>
</To>
<Attachments>
<Attachment>
<Version>200</Version>
<Name>sample.txt</Name>
</Attachment>
</Attachments>
<Unread>true</Unread>
<Description>No Description</Description>
</MailItem>
========================================
|
|
| MsOutlook | Send | None | ========================================
EventTime : 3/15/2007 1:17:05 PM
Listener Id : MsOutlook
BodyType : TaskEvents.MailItem
EventType : Send
<?xml version="1.0" encoding="utf-16"?>
<MailItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<Body>This is a test e-mail for XML documentation purposes. </Body>
<From>
<Recipient>
<Version>200</Version>
<Name>Freddy</Name>
<Email>carlf@onid.orst.edu</Email>
</Recipient>
</From>
<Importance>Normal</Importance>
<ReceivedTime>2007-03-15T13:17:05.75-07:00</ReceivedTime>
<SentByUser>true</SentByUser>
<SentTime>2007-03-15T13:17:05.75-07:00</SentTime>
<StoreID>0000000038A1BB1005E5101AA1BB08002B2A56C200006D737073742E646C6C00000000004E495441F9BFB80100AA0037D96E0000000043003A005C0044006F00630075006D0065006E0074007300200061006E0064002000530065007400740069006E00670073005C0046007200650064007200690063005C004C006F00630061006C002000530065007400740069006E00670073005C004100700070006C00690063006100740069006F006E00200044006100740061005C004D006900630072006F0073006F00660074005C004F00750074006C006F006F006B005C004F00750074006C006F006F006B002E007000730074000000</StoreID>
<Subject>Test e-mail</Subject>
<To>
<Recipient>
<Version>200</Version>
<Name>Anne.Tracer@oregonstate.edu</Name>
<Email>Anne.Tracer@oregonstate.edu</Email>
</Recipient>
</To>
<Categories>Create Task</Categories>
<Attachments>
<Attachment>
<Version>200</Version>
<Name>sample.txt</Name>
</Attachment>
</Attachments>
<Unread>true</Unread>
<Description>No Description</Description>
</MailItem>
========================================
|
MsWord
| ListenerId | EventType | Changed since 2.2.2 | XML Dump |
|---|---|---|---|
| MsWord | Close | None | ======================================== EventTime : 3/15/2007 1:44:48 PM Listener Id : MsWord BodyType : TaskEvents.WordDocument EventType : Close <?xml version="1.0" encoding="utf-16"?> <WordDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Document.doc</Name> <Path>C:\Temp\Test</Path> <ReadOnly>false</ReadOnly> <Saved>true</Saved> <Text> </Text> <FullName>C:\Temp\Test\Document.doc</FullName> </WordDocument> ======================================== |
| MsWord | Copy | Not in 2.2.2 | ======================================== EventTime : 3/15/2007 1:45:19 PM Listener Id : MsWord BodyType : TaskEvents.ClipboardEventArgs EventType : Copy <?xml version="1.0" encoding="utf-16"?> <ClipboardEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SourceWnd>2818896</SourceWnd> <WindowTitle>TaskTracer Developer Demonstration</WindowTitle> <MainWindowTitle>Document1 - Microsoft Word</MainWindowTitle> <MainModuleName>WINWORD.EXE</MainModuleName> <MainModuleFileName>C:\Program Files\Microsoft Office\OFFICE11\WINWORD.EXE</MainModuleFileName> <DocumentName>Document1</DocumentName> <DocumentPath /> <DataString>Copy event </DataString> <DataCRC>3191179704</DataCRC> <DataFormatsAvailable /> </ClipboardEventArgs> ======================================== |
| MsWord | Cut | Not in 2.2.2 | ======================================== EventTime : 3/15/2007 1:45:29 PM Listener Id : MsWord BodyType : TaskEvents.ClipboardEventArgs EventType : Cut <?xml version="1.0" encoding="utf-16"?> <ClipboardEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SourceWnd>2818896</SourceWnd> <WindowTitle>TaskTracer Developer Demonstration</WindowTitle> <MainWindowTitle>Document1 - Microsoft Word</MainWindowTitle> <MainModuleName>WINWORD.EXE</MainModuleName> <MainModuleFileName>C:\Program Files\Microsoft Office\OFFICE11\WINWORD.EXE</MainModuleFileName> <DocumentName>Document1</DocumentName> <DocumentPath /> <DataString>Cut event </DataString> <DataCRC>3464848140</DataCRC> <DataFormatsAvailable /> </ClipboardEventArgs> ======================================== |
| MsWord | FolderPredictorTest | None | ======================================== EventTime : 3/15/2007 1:43:46 PM Listener Id : MsWord BodyType : TaskEvents.FolderPredictionResult EventType : FolderPredictorTest <?xml version="1.0" encoding="utf-16"?> <FolderPredictionResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <ApplicationName>MsWord</ApplicationName> <Type>SaveAs</Type> <OriginalFolder>c:\documents and settings\fredric\my documents</OriginalFolder> <FirstPrediction>C:\Temp\Test\</FirstPrediction> <SecondPrediction>C:\Temp\</SecondPrediction> <ThirdPrediction>C:\</ThirdPrediction> <Result>C:\Temp\Test</Result> </FolderPredictionResult> ======================================== |
| MsWord | New | None | ======================================== EventTime : 3/15/2007 1:43:05 PM Listener Id : MsWord BodyType : TaskEvents.WordDocument EventType : New <?xml version="1.0" encoding="utf-16"?> <WordDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Document2</Name> <Path /> <ReadOnly>false</ReadOnly> <Saved>true</Saved> <Text> </Text> <FullName>Document2</FullName> </WordDocument> ======================================== |
| MsWord | Open | None | ======================================== EventTime : 3/15/2007 1:48:53 PM Listener Id : MsWord BodyType : TaskEvents.WordDocument EventType : Open <?xml version="1.0" encoding="utf-16"?> <WordDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Document.doc</Name> <Path>C:\Temp\Test</Path> <ReadOnly>false</ReadOnly> <Saved>true</Saved> <Text>Copy event Copy event </Text> <FullName>C:\Temp\Test\Document.doc</FullName> </WordDocument> ======================================== |
| MsWord | Paste | Not in 2.2.2 | ======================================== EventTime : 3/15/2007 1:45:22 PM Listener Id : MsWord BodyType : TaskEvents.ClipboardEventArgs EventType : Paste <?xml version="1.0" encoding="utf-16"?> <ClipboardEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SourceWnd>2818896</SourceWnd> <WindowTitle>TaskTracer Developer Demonstration</WindowTitle> <MainWindowTitle>Document1 - Microsoft Word</MainWindowTitle> <MainModuleName>WINWORD.EXE</MainModuleName> <MainModuleFileName>C:\Program Files\Microsoft Office\OFFICE11\WINWORD.EXE</MainModuleFileName> <DocumentName>Document1</DocumentName> <DocumentPath /> <DataString /> <DataCRC>0</DataCRC> <DataFormatsAvailable /> </ClipboardEventArgs> ======================================== |
| MsWord | None | ======================================== EventTime : 3/15/2007 1:48:09 PM Listener Id : MsWord BodyType : TaskEvents.WordDocument EventType : Print <?xml version="1.0" encoding="utf-16"?> <WordDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Document.doc</Name> <Path>C:\Temp\Test</Path> <ReadOnly>false</ReadOnly> <Saved>true</Saved> <Text>Copy event Copy event </Text> <FullName>C:\Temp\Test\Document.doc</FullName> </WordDocument> ======================================== |
|
| MsWord | Quit | None | ======================================== EventTime : 3/15/2007 1:49:32 PM Listener Id : MsWord BodyType : TaskEvents.ApplicationEvent EventType : Quit <?xml version="1.0" encoding="utf-16"?> <ApplicationEvent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> </ApplicationEvent> ======================================== |
| MsWord | Save | None | ======================================== EventTime : 3/15/2007 1:47:43 PM Listener Id : MsWord BodyType : TaskEvents.WordDocument EventType : Save <?xml version="1.0" encoding="utf-16"?> <WordDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Document.doc</Name> <Path>C:\Temp\Test</Path> <ReadOnly>false</ReadOnly> <Saved>true</Saved> <Text>Copy event Copy event </Text> <FullName>C:\Temp\Test\Document.doc</FullName> </WordDocument> ======================================== |
| MsWord | SaveAs | None | ======================================== EventTime : 3/15/2007 1:43:45 PM Listener Id : MsWord BodyType : TaskEvents.WordDocument EventType : SaveAs <?xml version="1.0" encoding="utf-16"?> <WordDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Document.doc</Name> <Path>C:\Temp\Test</Path> <ReadOnly>false</ReadOnly> <Saved>true</Saved> <Text> </Text> <FullName>C:\Temp\Test\Document.doc</FullName> </WordDocument> ======================================== |
| MsWord | TextSelectionChange | Not in 2.2.2 | ======================================== EventTime : 3/15/2007 1:45:28 PM Listener Id : MsWord BodyType : TaskEvents.TextSelection EventType : TextSelectionChange <?xml version="1.0" encoding="utf-16"?> <TextSelection xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Name>Document1</Name> <FullName>Document1</FullName> <Path /> <Text>Cut event </Text> <StartIndex>24</StartIndex> <EndIndex>34</EndIndex> <Type>selText</Type> </TextSelection> ======================================== |
MsExcel
| ListenerId | EventType | Changed since 2.2.2 | XML Dump |
|---|---|---|---|
| MsExcel | Close | None | ======================================== EventTime : 3/15/2007 2:02:47 PM Listener Id : MsExcel BodyType : TaskEvents.ExcelWorkbook EventType : Close <?xml version="1.0" encoding="utf-16"?> <ExcelWorkbook xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <FullName>C:\Temp\Test\Book.xls</FullName> <Name>Book.xls</Name> <Path>C:\Temp\Test</Path> <ReadOnly>false</ReadOnly> <Saved>true</Saved> <ContentWords /> </ExcelWorkbook> ======================================== |
| MsExcel | Copy | Not in 2.2.2 | ======================================== EventTime : 3/15/2007 2:04:09 PM Listener Id : MsExcel BodyType : TaskEvents.ClipboardEventArgs EventType : Copy <?xml version="1.0" encoding="utf-16"?> <ClipboardEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SourceWnd>14811294</SourceWnd> <WindowTitle>Microsoft Excel - Book.xls</WindowTitle> <MainWindowTitle>Microsoft Excel - Book.xls</MainWindowTitle> <MainModuleName>EXCEL.EXE</MainModuleName> <MainModuleFileName>C:\Program Files\Microsoft Office\OFFICE11\EXCEL.EXE</MainModuleFileName> <DocumentName>Book.xls</DocumentName> <DocumentPath>C:\Temp\Test</DocumentPath> <DataString>some text here</DataString> <DataCRC>1193329877</DataCRC> <DataFormatsAvailable /> </ClipboardEventArgs> ======================================== |
| MsExcel | Cut | Not in 2.2.2 | ======================================== EventTime : 3/15/2007 2:04:14 PM Listener Id : MsExcel BodyType : TaskEvents.ClipboardEventArgs EventType : Cut <?xml version="1.0" encoding="utf-16"?> <ClipboardEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SourceWnd>14811294</SourceWnd> <WindowTitle>Microsoft Excel - Book.xls</WindowTitle> <MainWindowTitle>Microsoft Excel - Book.xls</MainWindowTitle> <MainModuleName>EXCEL.EXE</MainModuleName> <MainModuleFileName>C:\Program Files\Microsoft Office\OFFICE11\EXCEL.EXE</MainModuleFileName> <DocumentName>Book.xls</DocumentName> <DocumentPath>C:\Temp\Test</DocumentPath> <DataString>some text here</DataString> <DataCRC>1193329877</DataCRC> <DataFormatsAvailable /> </ClipboardEventArgs> ======================================== |
| MsExcel | FolderPredictorTest | None | ======================================== EventTime : 3/15/2007 2:00:41 PM Listener Id : MsExcel BodyType : TaskEvents.FolderPredictionResult EventType : FolderPredictorTest <?xml version="1.0" encoding="utf-16"?> <FolderPredictionResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <ApplicationName>MsExcel</ApplicationName> <Type>SaveAs</Type> <OriginalFolder>C:\Documents and Settings\Fredric\My Documents</OriginalFolder> <FirstPrediction>C:\Temp\Test\</FirstPrediction> <SecondPrediction>C:\Temp\</SecondPrediction> <ThirdPrediction>C:\</ThirdPrediction> <Result>C:\Temp\Test</Result> </FolderPredictionResult> ======================================== |
| MsExcel | New | None | ======================================== EventTime : 3/15/2007 2:00:33 PM Listener Id : MsExcel BodyType : TaskEvents.ExcelWorkbook EventType : New <?xml version="1.0" encoding="utf-16"?> <ExcelWorkbook xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <FullName>Book2</FullName> <Name>Book2</Name> <Path /> <ReadOnly>false</ReadOnly> <Saved>true</Saved> <ContentWords /> </ExcelWorkbook> ======================================== |
| MsExcel | Open | None | ======================================== EventTime : 3/15/2007 2:03:28 PM Listener Id : MsExcel BodyType : TaskEvents.ExcelWorkbook EventType : Open <?xml version="1.0" encoding="utf-16"?> <ExcelWorkbook xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <FullName>C:\Temp\Test\Book.xls</FullName> <Name>Book.xls</Name> <Path>C:\Temp\Test</Path> <ReadOnly>false</ReadOnly> <Saved>true</Saved> <ContentWords /> </ExcelWorkbook> ======================================== |
| MsExcel | Paste | Not in 2.2.2 | ======================================== EventTime : 3/15/2007 2:04:10 PM Listener Id : MsExcel BodyType : TaskEvents.ClipboardEventArgs EventType : Paste <?xml version="1.0" encoding="utf-16"?> <ClipboardEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SourceWnd>14811294</SourceWnd> <WindowTitle>Microsoft Excel - Book.xls</WindowTitle> <MainWindowTitle>Microsoft Excel - Book.xls</MainWindowTitle> <MainModuleName>EXCEL.EXE</MainModuleName> <MainModuleFileName>C:\Program Files\Microsoft Office\OFFICE11\EXCEL.EXE</MainModuleFileName> <DocumentName>Book.xls</DocumentName> <DocumentPath>C:\Temp\Test</DocumentPath> <DataString /> <DataCRC>0</DataCRC> <DataFormatsAvailable /> </ClipboardEventArgs> ======================================== |
| MsExcel | None | ======================================== EventTime : 3/15/2007 2:05:35 PM Listener Id : MsExcel BodyType : TaskEvents.ExcelWorkbook EventType : Print <?xml version="1.0" encoding="utf-16"?> <ExcelWorkbook xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <FullName>C:\Temp\Test\Book.xls</FullName> <Name>Book.xls</Name> <Path>C:\Temp\Test</Path> <ReadOnly>false</ReadOnly> <Saved>false</Saved> <ContentWords>some text here some text here </ContentWords> </ExcelWorkbook> ======================================== |
|
| MsExcel | Quit | None | ======================================== EventTime : 3/15/2007 2:06:16 PM Listener Id : MsExcel BodyType : TaskEvents.ApplicationEvent EventType : Quit <?xml version="1.0" encoding="utf-16"?> <ApplicationEvent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> </ApplicationEvent> ======================================== |
| MsExcel | Save | None | ======================================== EventTime : 3/15/2007 2:02:06 PM Listener Id : MsExcel BodyType : TaskEvents.ExcelWorkbook EventType : Save <?xml version="1.0" encoding="utf-16"?> <ExcelWorkbook xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <FullName>C:\Temp\Test\Book.xls</FullName> <Name>Book.xls</Name> <Path>C:\Temp\Test</Path> <ReadOnly>false</ReadOnly> <Saved>true</Saved> <ContentWords /> </ExcelWorkbook> ======================================== |
| MsExcel | SaveAs | None | ========================================
EventTime : 3/15/2007 2:00:41 PM
Listener Id : MsExcel
BodyType : TaskEvents.ExcelWorkbook
EventType : SaveAs
<?xml version="1.0" encoding="utf-16"?>
<ExcelWorkbook xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<FullName>C:\Temp\Test\Book.xls</FullName>
<Name>Book.xls</Name>
<Path>C:\Temp\Test</Path>
<ReadOnly>false</ReadOnly>
<Saved>true</Saved>
<ContentWords />
<ProvenanceInfo>
<Version>200</Version>
<SourcePathname>C:\Documents and Settings\Fredric\My Documents\Book2</SourcePathname>
<DestinationPathname>C:\Temp\Test\Book.xls</DestinationPathname>
</ProvenanceInfo>
</ExcelWorkbook>
========================================
|
TaskPredictor
| ListenerId | EventType | Changed since 2.2.2 | XML Dump |
|---|---|---|---|
| TaskPredictor | ExplicitUserFeedBack | None | ======================================== EventTime : 3/15/2007 2:09:07 PM Listener Id : TaskPredictor BodyType : TaskEvents.ExplicitUserFeedBack EventType : ExplicitUserFeedBack <?xml version="1.0" encoding="utf-16"?> <ExplicitUserFeedBack xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <WindowID>788180</WindowID> <Title>2.3.0 Events - XML - TaskTracer pub - OSU Libraries Wiki</Title> <URI> </URI> <TaskID>6</TaskID> <EventID>1</EventID> </ExplicitUserFeedBack> ======================================== |
| TaskPredictor | TaskBegin | None | ======================================== EventTime : 3/15/2007 2:09:07 PM Listener Id : TaskPredictor BodyType : TaskEvents.TaskEvent EventType : TaskBegin <?xml version="1.0" encoding="utf-16"?> <TaskEvent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Name>Newest item</Name> <Description /> <Type>Begin</Type> <UserId>TaskPredictor</UserId> </TaskEvent> ======================================== |
| TaskPredictor | TrainTaskPredictor | None | ======================================== EventTime : 3/15/2007 2:08:08 PM Listener Id : TaskPredictor BodyType : TaskEvents.UserInitiativeTraining EventType : TrainTaskPredictor <?xml version="1.0" encoding="utf-16"?> <UserInitiativeTraining xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <TrainingTime>2007-03-15T14:08:08.15625-07:00</TrainingTime> </UserInitiativeTraining> ======================================== |
| TaskPredictor | WDSObserved | None | ======================================== EventTime : 3/15/2007 2:08:07 PM Listener Id : TaskPredictor BodyType : TaskEvents.WDSInfo EventType : WDSObserved <?xml version="1.0" encoding="utf-16"?> <WDSInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <TID>7</TID> <URI> </URI> <Title>2.3.0 events - xml - tasktracer pub - osu libraries wiki</Title> <WindowID>788180</WindowID> <Content> </Content> <Duration>43</Duration> </WDSInfo> ======================================== |
| TaskPredictor | WDSPredict | None | EventTime : 3/15/2007 2:07:31 PM
Listener Id : TaskPredictor
BodyType : TaskEvents.PredictionResult
EventType : WDSPredict
<?xml version="1.0" encoding="utf-16"?>
<PredictionResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<SerialID>168</SerialID>
<Predictions>
<Prediction>
<Version>200</Version>
<ID>7</ID>
<Name>Create Task</Name>
<Probability>0.66818484324187954</Probability>
</Prediction>
<Prediction>
<Version>200</Version>
<ID>6</ID>
<Name>Newest item</Name>
<Probability>0.098537145672872084</Probability>
</Prediction>
<Prediction>
<Version>200</Version>
<ID>5</ID>
<Name>Other new item</Name>
<Probability>0.0753906922895852</Probability>
</Prediction>
<Prediction>
<Version>200</Version>
<ID>4</ID>
<Name>New item</Name>
<Probability>0.14213622975097867</Probability>
</Prediction>
<Prediction>
<Version>200</Version>
<ID>3</ID>
<Name>New task\New task 3</Name>
<Probability>0.00314485870157243</Probability>
</Prediction>
<Prediction>
<Version>200</Version>
<ID>2</ID>
<Name>New task</Name>
<Probability>0.01260623034311207</Probability>
</Prediction>
</Predictions>
<PredictWDS>
<Version>200</Version>
<TID>0</TID>
<URI> </URI>
<Title>2.3.0 events - xml - tasktracer pub - osu libraries wiki</Title>
<WindowID>788180</WindowID>
<Content> </Content>
<Duration>0</Duration>
</PredictWDS>
</PredictionResult>
========================================
|
Misc.
| ListenerId | EventType | Changed since 2.2.2 | XML Dump |
|---|---|---|---|
| Clipboard | CopyPaste | Completely new event | ========================================
EventTime : 3/15/2007 2:15:40 PM
Listener Id : Clipboard
BodyType : TaskEvents.CopyPaste
EventType : CopyPaste
<?xml version="1.0" encoding="utf-16"?>
<CopyPaste xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Version>200</Version>
<CopyEventArgs>
<SourceWnd>3080970</SourceWnd>
<WindowTitle>Document1 - Microsoft Word</WindowTitle>
<MainWindowTitle>Document1 - Microsoft Word</MainWindowTitle>
<MainModuleName>WINWORD.EXE</MainModuleName>
<MainModuleFileName>C:\Program Files\Microsoft Office\OFFICE11\WINWORD.EXE</MainModuleFileName>
<DocumentName>Document1</DocumentName>
<DocumentPath />
<DataString>Copy/paste event
</DataString>
<DataCRC>131692957</DataCRC>
<DataFormatsAvailable />
</CopyEventArgs>
<CopiedFromResource>
<Version>200</Version>
<Id>0</Id>
<Name>Document1</Name>
<Path />
<Type>File</Type>
<Hidden>false</Hidden>
<Event_Id>0</Event_Id>
<Event_Time>2007-03-15T14:15:39.078125-07:00</Event_Time>
<Deleted_From_File_System>false</Deleted_From_File_System>
<SentTime>0001-01-01T00:00:00</SentTime>
</CopiedFromResource>
<PastedToResource>
<Version>200</Version>
<Id>0</Id>
<Name>Document1</Name>
<Path />
<Type>File</Type>
<Hidden>false</Hidden>
<Event_Id>0</Event_Id>
<Event_Time>2007-03-15T14:15:40.40625-07:00</Event_Time>
<Deleted_From_File_System>false</Deleted_From_File_System>
<SentTime>0001-01-01T00:00:00</SentTime>
</PastedToResource>
<TimeCopied>2007-03-15T14:15:39.078125-07:00</TimeCopied>
<TimePasted>2007-03-15T14:15:40.40625-07:00</TimePasted>
</CopyPaste>
========================================
|
| FolderPredictor | FolderPrediction | None | ======================================== EventTime : 3/15/2007 2:19:04 PM Listener Id : FolderPredictor BodyType : TaskEvents.FolderPrediction EventType : FolderPrediction <?xml version="1.0" encoding="utf-16"?> <FolderPrediction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <FirstFolder>None</FirstFolder> <SecondFolder>None</SecondFolder> <ThirdFolder>None</ThirdFolder> </FolderPrediction> ======================================== |
| Publisher | SubsciberIdentify | None | ======================================== EventTime : 3/19/2007 11:49:20 AM Listener Id : Publisher BodyType : TaskEvents.SubscriberIdentifyEventArgs EventType : SubscriberIdentify <?xml version="1.0" encoding="utf-16"?> <SubscriberIdentifyEventArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SubscriberID>1684263968</SubscriberID> </SubscriberIdentifyEventArgs> ======================================== |
| SubscribeDemo | EventFlowTest | Completely new event | ======================================== EventTime : 3/15/2007 2:16:57 PM Listener Id : SubscribeDemo BodyType : TaskEvents.EventFlowTestMessage EventType : EventFlowTest <?xml version="1.0" encoding="utf-16"?> <EventFlowTestMessage xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <Sender>SubscribeDemo</Sender> </EventFlowTestMessage> ======================================== |
| TaskExplorer | TaskListUpdate | None | ========================================
EventTime : 3/15/2007 10:21:48 AM
Listener Id : TaskExplorer
BodyType : TaskEvents.TaskList
EventType : TaskListUpdate
<?xml version="1.0" encoding="utf-16"?>
<TaskList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<TaskPath>
<Version>200</Version>
<Path>Unknown</Path>
<Key>1</Key>
<Hidden>false</Hidden>
<Timestamp>2007-03-14T14:15:35</Timestamp>
</TaskPath>
<TaskPath>
<Version>200</Version>
<Path>New task</Path>
<Key>2</Key>
<Hidden>false</Hidden>
<Timestamp>2007-03-14T14:12:10</Timestamp>
</TaskPath>
<TaskPath>
<Version>200</Version>
<Path>New task\New task 3</Path>
<Key>3</Key>
<Hidden>false</Hidden>
<Timestamp>2007-03-14T12:37:34</Timestamp>
</TaskPath>
<TaskPath>
<Version>200</Version>
<Path>New item</Path>
<Key>4</Key>
<Hidden>true</Hidden>
<Timestamp>2007-03-15T10:21:48</Timestamp>
</TaskPath>
<TaskPath>
<Version>200</Version>
<Path>Other new item</Path>
<Key>5</Key>
<Hidden>false</Hidden>
<Timestamp>2007-03-14T13:55:48</Timestamp>
</TaskPath>
<TaskPath>
<Version>200</Version>
<Path>Newest item</Path>
<Key>6</Key>
<Hidden>false</Hidden>
<Timestamp>2007-03-15T10:11:32</Timestamp>
</TaskPath>
</TaskList>
========================================
|
| TaskTracer | OsResumed | None | ======================================== EventTime : 3/15/2007 12:56:56 PM Listener Id : TaskTracer BodyType : TaskEvents.EmptyBodyArgs EventType : OsResumed <?xml version="1.0" encoding="utf-16"?> <EmptyBodyArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <EmptyMessage>Empty</EmptyMessage> </EmptyBodyArgs> ======================================== |
| TaskTracer | OsSuspended | None None | ======================================== EventTime : 3/16/2007 12:54:24 PM Listener Id : TaskTracer BodyType : TaskEvents.EmptyBodyArgs EventType : OsSuspended <?xml version="1.0" encoding="utf-16"?> <EmptyBodyArgs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Version>200</Version> <EmptyMessage>Empty</EmptyMessage> </EmptyBodyArgs> ======================================== |
