Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

I have an xml document with the following structure:

<Tasks>
  <Task>
    <DateTime>11/01/2012</DateTime>
    <detail>Do something</detail>
  </Task>
</Tasks>

this is a file that i have in sharepoint, is updated using a different process... is there a way to have this document linked to outlook calendar, to have the "Do Something" detail added to 11/01/2012 day in the outlook calendar ?

share|improve this question
It is hard to figure out what you're asking here. If this is SharePoint related, I would recommend including some screenshots so that people can help you easier. – Kit Menke Nov 13 '12 at 19:51

closed as off topic by Kit Menke Nov 13 '12 at 19:50

Questions on SharePoint Stack Exchange are expected to relate to SharePoint within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

There are a lot of missing pieces to this problem. Outlook doesn't directly interface with SharePoint aside from synchronizing list items to an offline list.

I think you may be looking at this the wrong way. Your XML document isn't an application - it can "connect" to the calendar however you want to, depending on the application consuming it. It sounds to me like you want the connection to go the other way - you want the calendar to connect to your document and update based on the contents of the XML file.

An event receiver on ItemAdded/ItemUpdated can parse your XML file, check for matching events, and add/update those events to a SharePoint calendar appropriately, and then one or more users of Outlook can import that calendar.

I don't see any way this can be done without code, I'm afraid.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.