View Single Post
Posts: 128 | Thanked: 0 times | Joined on Dec 2005
#1
I tinkered around with this idea over the weekend, and created a solution that extracts all the basic Outlook items, including Journals, and saves them into XML. I wanted to put it out for beta Monday, but I haven't been able to give it a good test at work. I mean, sure, it runs on my PC at home, but a good test is to install it at work and see how it runs. But I have been busy at work, dang it, and haven't had time.

So when I get it tested, I will let you all see what is up. It is configurable, to allow you to only extract one part of Outlook, i.e., the Journal only, or the Tasks only, or both, or any Outlook items or all of them, in one XML file or individual XML files. Or, I might just put it out tonight, if I have time.

It produces something like this:

Code:
<?xml version="1.0"?> 
<outlink>
  <inbox count="12">
    <inbox number="1" subject=.../>
    <inbox number="2" subject=.../>
  </inbox>
  <contacts>
    <contact number="1" first_name="Michael" .../>
    <contact number="2" first_name="Karen" .../>
  </contacts>
  <tasks>
    <task number="1" status="1" ../>
    <task number="2" status="0" ../>
  </tasks>
</outlink>
Or, it produces something like this:

Code:
<?xml version="1.0"?> 
<inbox count=12>
  <inbox number="1" subject=.../>
  <inbox number="2" subject=.../>
</inbox>