<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx</link><description>Introduction One of the challenges of accessing SharePoint calendars via the object model is that there are so many different types of events – normal events, all-day events, recurring events, recurrence exceptions, and deleted instances – and they all</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>" + title + "</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#2666254</link><pubDate>Wed, 16 May 2007 09:30:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2666254</guid><dc:creator>" + title + "</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://www.virtual-generations.com/2007/05/16/sharepoint-link-love-05-16-2007/"&gt;http://www.virtual-generations.com/2007/05/16/sharepoint-link-love-05-16-2007/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#2686635</link><pubDate>Thu, 17 May 2007 06:40:41 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2686635</guid><dc:creator>Jack Jones</dc:creator><description>&lt;p&gt;Matt,&lt;/p&gt;
&lt;p&gt;Having this information a few years ago for WSSv2 would have saved me much frustration. &amp;nbsp;There is something that I am struggling with now though - WSSv3 has added recurrence patterns that use the Nth day, weekday, and weekend day of the month in addition to the normal days (Monday, Tuesday, etc.) that were there before. &amp;nbsp;When retrieving the RecurrenceData field for patterns that use these new additions, the only data in the field is &amp;lt;V3RecurrencePattern /&amp;gt;. &amp;nbsp;Before I drive myself batty, could you explain how this works, and how I can get the recurrence data? &amp;nbsp;Also, is there a way to use the ExpandRecurrence property when getting list data via the web services? &amp;nbsp;If this were possible I could retire my in-house parser and use the real SharePoint logic that does this.&lt;/p&gt;
&lt;p&gt;TIA to anyone that can help me.&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#2687678</link><pubDate>Thu, 17 May 2007 07:44:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2687678</guid><dc:creator>Matt Swann</dc:creator><description>&lt;p&gt;Jack,&lt;/p&gt;
&lt;p&gt;Are these recurring items that were created through Outlook, or through the WSS UI? &amp;nbsp;I'll take a look first thing tomorrow morning and get back to you on this and the web services question.&lt;/p&gt;
&lt;p&gt;(I'm pretty sure you can use the QueryOptions string as given in the code sample in the web service call, but I want to try it first.)&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#2698823</link><pubDate>Thu, 17 May 2007 20:09:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2698823</guid><dc:creator>Jack Jones</dc:creator><description>&lt;p&gt;Matt,&lt;/p&gt;
&lt;p&gt;I am creating them using the UI. &amp;nbsp;It only happens when using those three new options in the Monthly by Day or Yearly by Day pattern are used.&lt;/p&gt;
&lt;p&gt;Thanks for your help.&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#2698949</link><pubDate>Thu, 17 May 2007 20:19:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2698949</guid><dc:creator>Matt Swann</dc:creator><description>&lt;p&gt;Jack,&lt;/p&gt;
&lt;p&gt;I did a little research and found the answer for you. &amp;nbsp;We ran into a problem during the development of WSSv3 where clients who parsed our recurrence XML would get tripped up by our new day/weekday/weekend day pattern data. &amp;nbsp;To resolve this, we hide the recurrence XML for those patterns unless the client sets a flag in the queryOptions parameter of the SOAP request.&lt;/p&gt;
&lt;p&gt;To get the actual recurrence XML pattern, send the following as the value for the queryOptions parameter:&lt;/p&gt;
&lt;p&gt;&amp;lt;QueryOptions&amp;gt;&amp;lt;RecurrencePatternXMLVersion&amp;gt;v3&amp;lt;/RecurrencePatternXMLVersion&amp;gt;&amp;lt;/QueryOptions&amp;gt;&lt;/p&gt;
&lt;p&gt;As you've probably already discovered, passing &amp;lt;ViewFields /&amp;gt; to the viewFields parameter will return all the item's fields in the SOAP response.&lt;/p&gt;
&lt;p&gt;Now, on to expanding recurrences via SOAP... I tried using the query string given in the OM example (wrapped in &amp;lt;Query&amp;gt;&amp;lt;/Query&amp;gt; like the web service expects) and didn't get any response. &amp;nbsp;It looks like this is because the CalendarDate property needs to be set before the query is made, but there isn't any provision for that in the web service to date. &amp;nbsp;I'll ask around, but it sounds like you'll have to parse the recurrences out by hand on the client.&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#2799795</link><pubDate>Tue, 22 May 2007 23:45:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2799795</guid><dc:creator>Monica</dc:creator><description>&lt;p&gt;We haven't yet installed the exporter solution, but I do have one question -- does this also allow a user to export one event to their calendar? We have folks using Entourage and iCal, and when they see an event listed on a calendar they want to be able to add it (seamlessly?) to their own calendars. &lt;/p&gt;
&lt;p&gt;At first glance, your tool would appear to export the entire calendar to iCal, which isn't what they want to do -- they want to export only a few specific events. Any advice there? TIA!&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#3079362</link><pubDate>Mon, 04 Jun 2007 14:05:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3079362</guid><dc:creator>Mughal</dc:creator><description>&lt;p&gt;Thanks Matt for the nice and informative article. How can we achieve the same with WSS v 2.0?&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#3247329</link><pubDate>Tue, 12 Jun 2007 13:49:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3247329</guid><dc:creator>Sergio Calleja</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I want to get all events from a list with recurrent events expanded, like in &amp;quot;Current Events&amp;quot; view. How can i do it?&lt;/p&gt;
&lt;p&gt;Thanks in advance.&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#3277833</link><pubDate>Thu, 14 Jun 2007 02:26:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3277833</guid><dc:creator>Trent Clayphan</dc:creator><description>&lt;p&gt;My question is the same as Monica's, Is there anyway you can export single events from the export menu? or will it export the entire calendar and every listing?&lt;/p&gt;
&lt;p&gt;Thanks for your time.&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#3390127</link><pubDate>Mon, 18 Jun 2007 23:23:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3390127</guid><dc:creator>Stacey Bailey</dc:creator><description>&lt;p&gt;Matt, &lt;/p&gt;
&lt;p&gt;This was a great article and addresses the export to ical aspect quite thoroughly. &amp;nbsp;I'm working with a group, though, that uses Zimbra as their email solution and is interested in parsing and viewing icals published there within SharePoint. &amp;nbsp;Any insights into this opposite side of the equation--importing iCals into SharePoint?&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#3563777</link><pubDate>Wed, 27 Jun 2007 14:21:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3563777</guid><dc:creator>andy</dc:creator><description>&lt;p&gt;i am getting the Error &amp;nbsp;on ical.aspx as:&lt;/p&gt;
&lt;p&gt;Year, Month, and Day parameters describe an un-representable DateTime. &lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#3659461</link><pubDate>Mon, 02 Jul 2007 16:24:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3659461</guid><dc:creator>Jon</dc:creator><description>&lt;p&gt;Any information on an iCal importer?&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#3740644</link><pubDate>Sat, 07 Jul 2007 07:56:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3740644</guid><dc:creator>David S</dc:creator><description>&lt;p&gt;Good article...but I have to say I'm baffled and disappointed that SharePoint's RSS feeds and/or web services (asmx) do not provide a sensible way to extract SharePoint's calendars with EXPANDED recurring events.&lt;/p&gt;
&lt;p&gt;What I've been trying to do is simple:&lt;/p&gt;
&lt;p&gt;- I'd like to pull data out of a SharePoint calendar (currently within an intranet) and use that data to publish a calendar of events in our extranet (not a SharePoint site).&lt;/p&gt;
&lt;p&gt;- I have some limitations -- i.e. I can't make the SharePoint pages available to anonymous visitors (yet) and cannot install my own asmx files within the SharePoint site (yet) therefore the query.ExpandedRecurrence property isn't available in my situation. &amp;nbsp;Such changes to our SharePoint site have to be approved by a series of administrators and what I'm attempting to do shouldn't be terribly difficult...but it is!&lt;/p&gt;
&lt;p&gt;- Hence, bound to these limitations I have only a few options to extract calendar data from our SharePoint: an 'iCal'-type export as you've described, the calendar's RSS feed (which doesn't expand recurring events), or the asmx web services such as &amp;quot;Lists&amp;quot; and &amp;quot;Dspsts&amp;quot;.&lt;/p&gt;
&lt;p&gt;However, while it's obvious that SharePoint itself is able to calculate recurrence properly, the output from an iCal, rss-feed, and the web services is lacking. &amp;nbsp;I'd think there should be a relatively simple way to request 'expanded' recurrences via the web services but, unfortunately for me, there isn't.&lt;/p&gt;
&lt;p&gt;So, here's what I'm currently doing:&lt;/p&gt;
&lt;p&gt;- I'm retreiving a calendar's data by SOAP request to Dspsts.asmx. &amp;nbsp;(This provides a nice XML document...&amp;lt;Calendar_Row&amp;gt;s).&lt;/p&gt;
&lt;p&gt;- And using the &amp;quot;Lists.asmx&amp;quot; GetListItems method as well (because the Dspsts.asmx query is missing the very important 'recurrence' data) and because there's no option to ask SharePoint to expand the recurring events. &amp;nbsp;&amp;quot;GetListItems&amp;quot; outputs XML nodes which have the &amp;quot;ows_Recurrence&amp;quot; attribute...from which I:&lt;/p&gt;
&lt;p&gt;- have to (a) correlate each XML node from GetListItems with the XML nodes from DspSts.asmx (which is WAAYY easier than parsing all the garbage in &amp;quot;GetListItems&amp;quot;; and (b) calculate the recurrences on my own!!&lt;/p&gt;
&lt;p&gt;However, when calculating the recurrences on my own I:&lt;/p&gt;
&lt;p&gt;- have to GUESS at what sort of model I might or might not encounter in the &amp;lt;recurrence&amp;gt; XML contained in the ows_Recurrence attribute. &amp;nbsp;(This element doesn't appear to be documented anywhere!)&lt;/p&gt;
&lt;p&gt;- then I have to further correlate items which have &amp;quot;Deleted: &amp;lt;event title here&amp;gt;&amp;quot; and then attempt to backpeddle the calculation of the recurrences -- or based on the peculiar combination of EventType, fRecurrence, fAllDayEvent GUESS again at whether or not my calculations will cause duplicate events.&lt;/p&gt;
&lt;p&gt;All in all, MY COMPLAINT IS SIMPLY THIS:&lt;/p&gt;
&lt;p&gt;- can you (the SharePoint team) PLEASE expose the &amp;quot;query.ExpandRecurrence&amp;quot; functionality somehow in the built-in asmx web services?&lt;/p&gt;
&lt;p&gt;- OR, (and I think calendars are just complicated enough to warrant it), add a &amp;quot;Calendars.asmx&amp;quot; web services (which could behave similar to the &amp;quot;Lists.asmx&amp;quot; service) but with options and methods that would take into account the 'uniqueness' of calendaring. &amp;nbsp;(&amp;quot;Lists.asmx&amp;quot; is a bulky way to syndicate calendar event information).&lt;/p&gt;
&lt;p&gt;- OR, publish a complete reference for the &amp;quot;&amp;lt;recurrence&amp;gt;&amp;quot; node and it's various\possible sub-elements.&lt;/p&gt;
&lt;p&gt;- OR, fix the &amp;quot;Actions&amp;quot; &amp;gt; &amp;quot;RSS Feed&amp;quot; feature for wss3.0 Calendars -- the fact that the RSS feed doesn't expand recurring events make a calendar's RSS feed completely USELESS wouldn't you agree?&lt;/p&gt;
&lt;p&gt;NOTE: In two weeks while working to syndicate a simple calendar, and searching far and wide on the internet, THIS BLOG POST is the only page I've found which even touches on the &amp;lt;recurrence&amp;gt; and its relation to fRecurrence, fAllDayEvent, EventType elements. &amp;nbsp;If there's more documentation somewhere/anywhere about these items, please post the links somewhere!&lt;/p&gt;
&lt;p&gt;ALSO NOTE: What I'm attempting to do is not unlike the requests of dozens of others who have already commented in this post. &amp;nbsp;It boggles my mind to think that, while trying to simply syndicate 'current events' from a SharePoint calendar, either I've missed something fundamental - or you have.&lt;/p&gt;
&lt;p&gt;Is there a question in here anywhere? &amp;nbsp;Yes:&lt;/p&gt;
&lt;p&gt;- Have I missed something entirely? &amp;nbsp;To get a collection of events from a SharePoint calendar (one which I don't have to manually calculate recurrence!) to display, say, as an RSS feed or to dump into a database table...is there no way to do this?&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#3779206</link><pubDate>Mon, 09 Jul 2007 13:46:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3779206</guid><dc:creator>donal mcweeney</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Is it possible to get expansion of recurring events in the past using SPQuery. It appears to expand recurring dates from the current datetime forward but I cannot get it to expand recurring events in the past.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Donal&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#4027146</link><pubDate>Tue, 24 Jul 2007 14:39:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4027146</guid><dc:creator>Ruchi</dc:creator><description>&lt;p&gt;hi,&lt;/p&gt;
&lt;p&gt;I am facing same error as Andy. Any solution for that?&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#4069654</link><pubDate>Thu, 26 Jul 2007 21:54:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4069654</guid><dc:creator>tronn</dc:creator><description>&lt;p&gt;Any ideas on getting expansion of recurring events in the past using SPQuery?&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#4208511</link><pubDate>Fri, 03 Aug 2007 18:46:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4208511</guid><dc:creator>Frederic LATOUR</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thought this is an interesting article but I must admit that I just can't understand why MS can't do a decent job with recurring events within SharePoint?&lt;/p&gt;
&lt;p&gt;With WSS V2:&lt;/p&gt;
&lt;p&gt;No api for expanding recurring events.&lt;/p&gt;
&lt;p&gt;Undocumented recurrence data schema (just a few samples in the sdk).&lt;/p&gt;
&lt;p&gt;Incomplete documentation for CAML markup related to recurring events.&lt;/p&gt;
&lt;p&gt;Starting with WSS V3, one would think that the recurring events &amp;quot;nightmare&amp;quot; would end. But hey :&lt;/p&gt;
&lt;p&gt;Still undocumented recurence data schema though this article puts some light on it.&lt;/p&gt;
&lt;p&gt;Undocumented api for expanding recurring events (just look at the Query.CalendarDate property for which there is not even a word of explanation in the sdk).&lt;/p&gt;
&lt;p&gt;No implementation in the web services query interface.&lt;/p&gt;
&lt;p&gt;Moreover the object model implementation seems rather limited (and useless as far as I am concerned) :&lt;/p&gt;
&lt;p&gt;It looks like it is impossible to get past occurences of a recurring event.&lt;/p&gt;
&lt;p&gt;It looks like you can only get occurences for 2 years starting from current date. From my test, there is no way to get anything else even though you would specify a 01/01/2011 as a value for &amp;quot;DateRangesOverlap&amp;quot;.&lt;/p&gt;
&lt;p&gt;CalendarDate property is rather mysterious as I can't see much change when setting a value or even not using it.&lt;/p&gt;
&lt;p&gt;Considering that MS is obviously using some api (even if it's not written in managed code) for displaying the Event list current events view, I just can't understand why :&lt;/p&gt;
&lt;p&gt;- this api is not completely interfaced within the SharePoint Object model.&lt;/p&gt;
&lt;p&gt;- the recurence data schema is still not completely documented in a reference section.&lt;/p&gt;
&lt;p&gt;Being now 4 years that people are struggling (or reinventing the wheel) with recurring events in SharePoint, a reasonnable approach would be that someone from MS publish a .net version of the inhouse used algorithm, even if it is unsupported. Codeplex?&lt;/p&gt;
&lt;p&gt;Of course a better approach would be as someone suggested some kind of specialized class for querying events data.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#4244681</link><pubDate>Sun, 05 Aug 2007 23:57:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4244681</guid><dc:creator>David S</dc:creator><description>&lt;p&gt;Hello Frederic LATOUR,&lt;/p&gt;
&lt;p&gt;Well said!!&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#4313846</link><pubDate>Fri, 10 Aug 2007 00:38:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4313846</guid><dc:creator>Jason Y</dc:creator><description>&lt;p&gt;I absolutely agree with Latour. I seriously wonder how many hours have been wasted by developers researching and redeveloping procedures that are either lacking or not documented. &lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#4388432</link><pubDate>Tue, 14 Aug 2007 22:40:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4388432</guid><dc:creator>Simmons</dc:creator><description>&lt;p&gt;Is it possible, from a SharePoint user perspective (or otherwise) for a single event to be added (at the same time) to multiple SharePoint calendars? &amp;nbsp;Alternatively, is it possible to &amp;quot;link&amp;quot; calendars so an event added to one automatically feeds into another, unless it is set not to link into that calendar? &amp;nbsp;How, in either case, please?&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#4507395</link><pubDate>Wed, 22 Aug 2007 12:38:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4507395</guid><dc:creator>Peter</dc:creator><description>&lt;p&gt;I am trying to access all the items in Calender including recurrances irrespective of date range. I am not able to do it.Can u plzz give a solution.&lt;/p&gt;
&lt;p&gt;Thanks in advance.&lt;/p&gt;
&lt;p&gt;Peter&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#4515930</link><pubDate>Thu, 23 Aug 2007 00:43:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4515930</guid><dc:creator>Edward M. Meshuris</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have a list with start and end dates.&lt;/p&gt;
&lt;p&gt;I create a calendar view based on those dates.&lt;/p&gt;
&lt;p&gt;When I look at the calendar view, the item bar is always 1 day less.&lt;/p&gt;
&lt;p&gt;I find this frustrating, since there is no 'alldayevent' function for this item.&lt;/p&gt;
&lt;p&gt;-Edward&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#4559109</link><pubDate>Sat, 25 Aug 2007 15:58:53 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4559109</guid><dc:creator>Ryan</dc:creator><description>&lt;p&gt;Just puting in my 2 cents worth and adding my kick up the SharePoint teams backside!&lt;/p&gt;
&lt;p&gt;Just look at some of these comments - you are driving your customers insane with this recurring event nightmare - please make it stop... please... ;)&lt;/p&gt;</description></item><item><title>Recurrence in Room and Equipment Reservations</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#4607122</link><pubDate>Tue, 28 Aug 2007 11:35:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4607122</guid><dc:creator>Thilakka</dc:creator><description>&lt;p&gt;Hi , &lt;/p&gt;
&lt;p&gt;I am trying to use the Room and Equipment Management System to book a &amp;nbsp;meeting room(it is the resource here).&lt;/p&gt;
&lt;p&gt;How do i book it for recurring dates..&lt;/p&gt;
&lt;p&gt;I know that the template is to be modified supoorting recurring events.&lt;/p&gt;
&lt;p&gt;Any other simple way&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#4613624</link><pubDate>Tue, 28 Aug 2007 17:33:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4613624</guid><dc:creator>Ryan</dc:creator><description>&lt;p&gt;Hi Matt,&lt;/p&gt;
&lt;p&gt;I think your ical.aspx code contains a little bug in WriteTimeZones - although to be honest I have not tested this, its just from visual inspection.&lt;/p&gt;
&lt;p&gt;You assume that daylight savings starts at the start of the year and ends at the end of the year. &lt;/p&gt;
&lt;p&gt;It doesn't in the southern hemisphere!&lt;/p&gt;</description></item><item><title>2007 MOSS Resource Links (Microsoft Office SharePoint Server)</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#4880617</link><pubDate>Wed, 12 Sep 2007 18:07:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4880617</guid><dc:creator>The Boiler Room - Mark Kruger, Microsoft SharePoint MVP</dc:creator><description>&lt;p&gt;2007 MOSS Resource Links (Microsoft Office SharePoint Server) Here is an assortment of various 2007 Microsoft&lt;/p&gt;
</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#5227057</link><pubDate>Mon, 01 Oct 2007 22:34:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5227057</guid><dc:creator>Anonymous</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Now can i edit a single instance of the recurring event through code.&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#5744351</link><pubDate>Sun, 28 Oct 2007 22:01:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5744351</guid><dc:creator>SharePoint Calendar Web Part</dc:creator><description>&lt;p&gt;Great Blog.&lt;/p&gt;
&lt;p&gt;I would like you to check kwizcom: SharePoint Calendar Web Part.&lt;/p&gt;
&lt;p&gt;I try it and find out it is a great webpart.&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#5819946</link><pubDate>Thu, 01 Nov 2007 23:21:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5819946</guid><dc:creator>Brian Bolton</dc:creator><description>&lt;p&gt;Any easy way to expand recurring events for a query against the CrossListQueryCache?&lt;/p&gt;
&lt;p&gt;I am doing a calendar rollup and would like to accurately represent recurring events.&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#5843623</link><pubDate>Fri, 02 Nov 2007 23:12:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5843623</guid><dc:creator>Brian Bolton</dc:creator><description>&lt;p&gt;This is the code I have so far but it's not expanding events. &amp;nbsp;It is just giving me one instance of a recurring event. &amp;nbsp;I'd like it to give me an instance of each recurring event.&lt;/p&gt;
&lt;p&gt;CrossListQueryInfo crossListInfo = new CrossListQueryInfo();&lt;/p&gt;
&lt;p&gt;crossListInfo.ViewFields = &amp;quot;&amp;lt;FieldRef Name=\&amp;quot;Title\&amp;quot; Nullable=\&amp;quot;True\&amp;quot; Type=\&amp;quot;Text\&amp;quot;/&amp;gt;&amp;quot; +&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;&amp;lt;FieldRef Name=\&amp;quot;EventDate\&amp;quot; RefType=\&amp;quot;StartDate\&amp;quot; /&amp;gt;&amp;quot; +&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;&amp;lt;FieldRef Name=\&amp;quot;EndDate\&amp;quot; RefType=\&amp;quot;EndDate\&amp;quot; /&amp;gt;&amp;quot; +&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;&amp;lt;FieldRef Name=\&amp;quot;RecurrenceID\&amp;quot; /&amp;gt;&amp;quot; +&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;&amp;lt;FieldRef Name=\&amp;quot;FileRef\&amp;quot; /&amp;gt;&amp;quot; +&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;&amp;lt;FieldRef Name=\&amp;quot;RecurrenceData\&amp;quot; /&amp;gt;&amp;quot; +&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;&amp;lt;FieldRef Name=\&amp;quot;fRecurrence\&amp;quot; /&amp;gt;&amp;quot;;&lt;/p&gt;
&lt;p&gt;crossListInfo.Query = &amp;quot;&amp;lt;Where&amp;gt;&amp;lt;DateRangesOverlap&amp;gt;&amp;lt;FieldRef Name=\&amp;quot;EventDate\&amp;quot; /&amp;gt;&amp;lt;FieldRef Name=\&amp;quot;EndDate\&amp;quot; /&amp;gt;&amp;lt;FieldRef Name=\&amp;quot;RecurrenceID\&amp;quot; /&amp;gt;&amp;lt;Value Type=\&amp;quot;DateTime\&amp;quot;&amp;gt;&amp;lt;Month /&amp;gt;&amp;lt;/Value&amp;gt;&amp;lt;/DateRangesOverlap&amp;gt;&amp;lt;/Where&amp;gt;&amp;quot;; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;crossListInfo.RowLimit = 100;&lt;/p&gt;
&lt;p&gt;crossListInfo.Webs = &amp;quot;&amp;lt;Webs Scope=\&amp;quot;Recursive\&amp;quot; /&amp;gt;&amp;quot;;&lt;/p&gt;
&lt;p&gt;crossListInfo.Lists = &amp;quot;&amp;lt;Lists ServerTemplate=\&amp;quot;106\&amp;quot;&amp;gt;&amp;quot;;&lt;/p&gt;
&lt;p&gt;crossListInfo.WebUrl = &amp;quot;depts/deptname&amp;quot;;&lt;/p&gt;
&lt;p&gt;crossListInfo.UseCache = true;&lt;/p&gt;
&lt;p&gt;SPSite querysite = new SPSite(&amp;quot;&lt;a rel="nofollow" target="_new" href="http://server/sites/divsite/&amp;quot;"&gt;http://server/sites/divsite/&amp;quot;&lt;/a&gt;);&lt;/p&gt;
&lt;p&gt;CrossListQueryCache xlqCache = new CrossListQueryCache(crossListInfo);&lt;/p&gt;
&lt;p&gt;DataTable results = xlqCache.GetSiteData(querysite);&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#6369310</link><pubDate>Sun, 18 Nov 2007 19:06:41 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6369310</guid><dc:creator>Justin</dc:creator><description>&lt;p&gt;Is there a way to have sharepoint constantly exporting to iCal. &amp;nbsp;As a mixed shop our intranet runs a sharepoint calendar, but the mac department would like it in iCal. &amp;nbsp;Do an export everytime they change the calendar becomes a burden. &amp;nbsp;Since iCal can do subscriptions, is there a way to link it to sharepoint?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#6726349</link><pubDate>Mon, 10 Dec 2007 21:47:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6726349</guid><dc:creator>BC</dc:creator><description>&lt;p&gt;Hello&lt;/p&gt;
&lt;p&gt;Has anyone got this code to work as expected. I am trying to get all types of &amp;nbsp;events ( single, allday, recurring events) for a date and it seems impossible to get it. The problem seems to be with the actual instances of the recurring events. I have not been able to get any code that would give the actual instances of the recurring events . I do get the Master Series recurring Event but the actual events seems to be impossible to get, Any one who has luck to get all events for a date please post the code . Thank you very much BC&lt;/p&gt;</description></item><item><title>MOSS 2007 - Content Query Web Part - Start Date 'is equal to' [Today] - fails for recurring events</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#7028306</link><pubDate>Tue, 08 Jan 2008 16:43:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7028306</guid><dc:creator>RD</dc:creator><description>&lt;p&gt;Great explanation of the Calendar parameters, I'm hoping you can explain how to get around the change in values when dealing with recurring events and content query web parts' filters.&lt;/p&gt;
&lt;p&gt;If:&lt;/p&gt;
&lt;p&gt;EventDate is &amp;quot;Start date and time&amp;quot; for single events, &lt;/p&gt;
&lt;p&gt;and:&lt;/p&gt;
&lt;p&gt;EventDate is &amp;quot;Start date and time set for the recurring event when it was created, which may be an earlier date than the first instance of the recurring event.&amp;quot;,&lt;/p&gt;
&lt;p&gt;how do you do a lookup and display for recurring events similarly to how one would lookup a single event, eg: Start Date 'is equal to' [today] ? &amp;nbsp;Is there something you can do with the Duration parameter?&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#7053254</link><pubDate>Thu, 10 Jan 2008 12:55:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7053254</guid><dc:creator>Qamar</dc:creator><description>&lt;p&gt;RD - For Recurring events, the EventDate has two parts; the datepart is when the event was created, but the time part is start time of the event.&lt;/p&gt;
&lt;p&gt;Together with using RecurrenceData, the Start time and Duration I should be able to construct all instances of recurring event (although I am not sure wherther timezone will play any part), but is there a simple Query (against CrossListQueryCache) that I can perform to get all recurring events within a given date range.&lt;/p&gt;
&lt;p&gt;Alternatively, has anyone gone through the manual process of working out all recurring event instances?&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#7062589</link><pubDate>Fri, 11 Jan 2008 00:16:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7062589</guid><dc:creator>dennis elsensohn</dc:creator><description>&lt;p&gt;anyone ever get this work without this error? &amp;quot;Year, Month, and Day parameters describe an un-representable DateTime.&amp;quot; &lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#7141196</link><pubDate>Thu, 17 Jan 2008 14:36:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7141196</guid><dc:creator>stefan demetz</dc:creator><description>&lt;p&gt;Shame the is no conflict resolution in the sharepoint calendar&lt;/p&gt;</description></item><item><title>Synchronizing with Windows SharePoint Services,  Part 1</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#7188852</link><pubDate>Tue, 22 Jan 2008 00:37:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7188852</guid><dc:creator>Microsoft SharePoint Developer Documentation Team Blog</dc:creator><description>&lt;p&gt;Introduction There may be occasions where you will need to synchronize third party programs with Windows&lt;/p&gt;
</description></item><item><title>Synchronizing with Windows SharePoint Services,  Part 1</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#7189302</link><pubDate>Tue, 22 Jan 2008 01:19:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7189302</guid><dc:creator>Noticias externas</dc:creator><description>&lt;p&gt;Introduction There may be occasions where you will need to synchronize third party programs with Windows&lt;/p&gt;
</description></item><item><title>Modifying SharePoint calendar to compress or eliminate weekends</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#7448917</link><pubDate>Tue, 05 Feb 2008 01:39:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7448917</guid><dc:creator>John Wells</dc:creator><description>&lt;p&gt;I have been trying to find someone who can tell me how to eliminate or compress the weekend columns in the sharepoint calendar. &amp;nbsp;No luck, though I did find an option to start on monday.&lt;/p&gt;
&lt;p&gt;Do you know how or can you direct me to some information on this topic? &amp;nbsp;thanks&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#7467439</link><pubDate>Tue, 05 Feb 2008 17:57:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7467439</guid><dc:creator>Tired</dc:creator><description>&lt;p&gt;Hi, this post is very helpfull, but howto update item from calendarItems collection without &amp;quot;Expanded recurrence items can not be updated.&amp;quot; exception? &lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#7511583</link><pubDate>Thu, 07 Feb 2008 13:07:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7511583</guid><dc:creator>Paul Perry</dc:creator><description>&lt;p&gt;On the topic of recurring events not showing in some views, after taking a look, I find that the moment you edit an instance of an item, it actually becomes an item, and thus appears in my custom 30 day list as well as current events.&lt;/p&gt;
&lt;p&gt;Is there a way to simply change the value that is changed upon clicking &amp;quot;Edit Item&amp;quot; whenever I create a recurring series so that I can see all items in a series?&lt;/p&gt;
&lt;p&gt;Is the field that is changed the itemType as per the table at the top of this page?&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;</description></item><item><title>Regarding recurring event</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8052229</link><pubDate>Wed, 05 Mar 2008 17:46:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8052229</guid><dc:creator>Murali</dc:creator><description>&lt;p&gt;Hi Guys,&lt;/p&gt;
&lt;p&gt; &amp;nbsp; I tried to create a recurrence event using WSS Webservices.I used RecurrenceDate tag to set the recurrence pattern.Here is how the my Recurrence data looks.&lt;/p&gt;
&lt;p&gt;&amp;lt;recurrence&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;rule&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;firstDayOfWeek&amp;gt;su&amp;lt;/firstDayOfWeek&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;repeat&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;daily dayFrequency=&amp;quot;1&amp;quot;/&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/repeat&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;repeatForever&amp;gt;TRUE&amp;lt;/repeatForever&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/rule&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/recurrence&amp;gt;&lt;/p&gt;
&lt;p&gt;But WSS3.0 Calender is not able to recognize thi event.When i click edit item and click ok.It says recurrence exception of the old event will be lost.Why is this problem coming.Can any one send me the format of the RecurrenceDate Field i need to pass and other things which i need to take care.&lt;/p&gt;
&lt;p&gt;This event is getting listed in All Events though.&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8120323</link><pubDate>Mon, 10 Mar 2008 04:04:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8120323</guid><dc:creator>Stephen Sheaf</dc:creator><description>&lt;p&gt;Great stuff, why does MS not have this as a standard feature?&lt;/p&gt;
&lt;p&gt;I had not trouble installing, but in my case it skips &amp;quot;Deleted&amp;quot; events, rather important when there is money involved!&lt;/p&gt;
&lt;p&gt;It would also be very useful if it 1) expanded recurring events and 2) accepted filters for a date period (eg one month)&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8324468</link><pubDate>Wed, 19 Mar 2008 05:41:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8324468</guid><dc:creator>SteveSchaff</dc:creator><description>&lt;p&gt;Has anyone been able to interact with MOSS using UpdateListItems? &amp;nbsp;I have &lt;/p&gt;
&lt;p&gt;been using it as my applications primary means to interact with MOSS. &amp;nbsp;I can &lt;/p&gt;
&lt;p&gt;retrieve and modify any calendar item using UpdateList items sending cmds in &lt;/p&gt;
&lt;p&gt;batch xml format and it works fine (its not easy but it does work). &amp;nbsp;I'm &lt;/p&gt;
&lt;p&gt;stuck on writing modifications to recurring events. &amp;nbsp;I.E. deleted or &lt;/p&gt;
&lt;p&gt;otherwise modified individual or recurring items within a recurring event. &lt;/p&gt;
&lt;p&gt;I have found several great articles such as: How to add recurring items: &lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://msdn2.microsoft.com/en-us/library/ms434156.aspx"&gt;http://msdn2.microsoft.com/en-us/library/ms434156.aspx&lt;/a&gt; and this one; &lt;/p&gt;
&lt;p&gt;but these articles don't talk about writing events to the sharepoint event &lt;/p&gt;
&lt;p&gt;list. &amp;nbsp;Thus far I've gotten by but supporting recurring event individual &lt;/p&gt;
&lt;p&gt;ocurrence changes has been frustrating. &amp;nbsp;I can write the deleted instance of &lt;/p&gt;
&lt;p&gt;the recurring event to the event list but its not associated to the &lt;/p&gt;
&lt;p&gt;masterItem. &amp;nbsp;And not coincidentally it isn't displayed in the sharepoint &lt;/p&gt;
&lt;p&gt;calendar view, it does show up in the all events display. &amp;nbsp;From this post I've found to associate the deleted instance you must set the &lt;/p&gt;
&lt;p&gt;MasterSeriesItemID with the itemID of the parent recurring event and the &lt;/p&gt;
&lt;p&gt;RecurrenceID with the originalDate/Time of the modified occurrence. &amp;nbsp;Also &lt;/p&gt;
&lt;p&gt;I've found but it's not documented anywhere imperical evidence looking at the underlying db table for list data that the UID &lt;/p&gt;
&lt;p&gt;field must match the parent items UID field (I did this by viewing what's &lt;/p&gt;
&lt;p&gt;done in the MOSS UI when modified to what happens when I do from my &lt;/p&gt;
&lt;p&gt;application)&lt;/p&gt;
&lt;p&gt;But even after all of this I can't display in the calendar view list items &lt;/p&gt;
&lt;p&gt;that are recurring with deleted or otherwise modified individual ocurrences, &lt;/p&gt;
&lt;p&gt;Does anyone know what I'm missing? &lt;/p&gt;
</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8326552</link><pubDate>Thu, 20 Mar 2008 02:45:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8326552</guid><dc:creator>SteveSchaff</dc:creator><description>&lt;p&gt;All I can help with recurring events as long as they do not include modified or deleted instances. &amp;nbsp;The biggest problem I ran into is that all day recurring events need to be in ztime. I've also found in your recurrence xml string you can't use double quotes, this is because it gets embedded in the batch cmd in the xml as an html encoded field. &amp;nbsp;My recurring events work great. &amp;nbsp;Feel free to send me questions though.&lt;/p&gt;
</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8327407</link><pubDate>Thu, 20 Mar 2008 17:01:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8327407</guid><dc:creator>SteveSchaff</dc:creator><description>&lt;p&gt;All - I finally figured out modifications to recuring item instances! &amp;nbsp;So I thought I would share it - when you submit a NEW recurring item or an update to a recurring item you get back a new ows_UID save this cuz you have to send any modifications or deletions using that UID...&lt;/p&gt;
</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8351680</link><pubDate>Wed, 02 Apr 2008 18:28:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8351680</guid><dc:creator>Steve Peterson (steve@mcmillaninc.com)</dc:creator><description>&lt;p&gt;I ran through the installation and was able to install and deploy the solution. I rebooted the server but, I still dont see the ICAl in the site features. &lt;/p&gt;
&lt;p&gt;What am I doing wrong?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Steve&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8353983</link><pubDate>Thu, 03 Apr 2008 17:37:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8353983</guid><dc:creator>Steve Peterson (steve@mcmillaninc.com)</dc:creator><description>&lt;p&gt;Never mind... I was being dumb. &lt;/p&gt;
&lt;p&gt;I was looking at site features, not site collection features. &lt;/p&gt;
&lt;p&gt;I logged in as an admin and the site collection features were then available.&lt;/p&gt;
&lt;p&gt;Steve&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8417243</link><pubDate>Wed, 23 Apr 2008 00:04:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8417243</guid><dc:creator>Karl H</dc:creator><description>&lt;p&gt;The information is great, but...&lt;/p&gt;
&lt;p&gt;I'm having problems expanding a recurring all-day event. &amp;nbsp;If anyone can point me to some info, that would be great.&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
&lt;p&gt;karl&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8443388</link><pubDate>Wed, 30 Apr 2008 16:46:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8443388</guid><dc:creator>Roojo</dc:creator><description>&lt;p&gt;How do I go about creating a calendar which only returns events and recurrence entries within a specific time frame?&lt;/p&gt;
&lt;p&gt;I'm only ever able to test against the EventDate and I don't understand how to reference the dates generated for recurrence entries.&lt;/p&gt;
&lt;p&gt;Using WSSv3 and SPD2007&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8468337</link><pubDate>Thu, 08 May 2008 05:08:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8468337</guid><dc:creator>SteveSchaff</dc:creator><description>&lt;p&gt;Karl,&lt;/p&gt;
&lt;p&gt;This post is the best info I can think of for breaking out the recurring all-day event which part is giving you trouble?&lt;/p&gt;
</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8572957</link><pubDate>Wed, 04 Jun 2008 11:07:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8572957</guid><dc:creator>Joan</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I tried to use this SPquery:&lt;/p&gt;
&lt;p&gt;-----&lt;/p&gt;
&lt;p&gt;&amp;quot;&amp;lt;Where&amp;gt;&amp;lt;DateRangesOverlap&amp;gt;&amp;lt;FieldRef Name=\&amp;quot;EventDate\&amp;quot; /&amp;gt;&amp;lt;FieldRef Name=\&amp;quot;EndDate\&amp;quot; /&amp;gt;&amp;lt;FieldRef Name=\&amp;quot;RecurrenceID\&amp;quot; /&amp;gt;&amp;lt;Value Type=\&amp;quot;DateTime\&amp;quot;&amp;gt;&amp;lt;Month /&amp;gt;&amp;lt;/Value&amp;gt;&amp;lt;/DateRangesOverlap&amp;gt;&amp;lt;/Where&amp;gt;&amp;lt;OrderBy&amp;gt;&amp;lt;FieldRef Name=\&amp;quot;Title\&amp;quot; /&amp;gt;&amp;lt;/OrderBy&amp;gt;&amp;quot;&lt;/p&gt;
&lt;p&gt;-----&lt;/p&gt;
&lt;p&gt;,but it returns all the recurrences in the actual month view.&lt;/p&gt;
&lt;p&gt;Then, If we are at 2 June, the query returns the recurrences from 26 May to 6 July.&lt;/p&gt;
&lt;p&gt;How could I see the recurrences from today to 30 days ??&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8621946</link><pubDate>Thu, 19 Jun 2008 17:56:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8621946</guid><dc:creator>Àlex</dc:creator><description>&lt;p&gt;Hi Joan,&lt;/p&gt;
&lt;p&gt;You could make 2 CAML queries, pass the result to a DataTable, set the PK for each DataTable and finally marge the 2 DataTables.&lt;/p&gt;
&lt;p&gt;Then you can select only the events in the next 30 days.&lt;/p&gt;
&lt;p&gt;Salut,&lt;/p&gt;
&lt;p&gt;&amp;#192;lex.&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8648998</link><pubDate>Tue, 24 Jun 2008 23:45:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8648998</guid><dc:creator>Eddy</dc:creator><description>&lt;p&gt;Hi Joan,&lt;/p&gt;
&lt;p&gt;You can set the CalendarDate property of the SPQuery to today's date.&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8652358</link><pubDate>Wed, 25 Jun 2008 18:27:04 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8652358</guid><dc:creator>aeltawil</dc:creator><description>&lt;p&gt;Is there a way to generate/create the &amp;lt;recurrence&amp;gt; xml? I am looking for a recurrence XML string generator. I have been researching the interweb for a long time with no luck. Plz email me: mistertall2004@yahoo.com&lt;/p&gt;
</description></item><item><title>re: How to modify a calendar view type?</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8684253</link><pubDate>Thu, 03 Jul 2008 17:00:08 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8684253</guid><dc:creator>Sruli</dc:creator><description>&lt;p&gt;I'm trying to work with calendar views but missing some basic info:&lt;/p&gt;
&lt;p&gt;1. If I have a SPView calendar object, how can I tell its type (month/week/day)?&lt;/p&gt;
&lt;p&gt;2. How can I modify the type, e.g. from week to day?&lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8684422</link><pubDate>Thu, 03 Jul 2008 17:57:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8684422</guid><dc:creator>Sruli</dc:creator><description>&lt;p&gt;I wonder how I can handle a calender view given in a SPView object:&lt;/p&gt;
&lt;p&gt;1. How can I tell the calendar type (month/week/day)?&lt;/p&gt;
&lt;p&gt;2. How can I change the calendar type, e.g., from month to week?&lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8689721</link><pubDate>Fri, 04 Jul 2008 18:35:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8689721</guid><dc:creator>John</dc:creator><description>&lt;p&gt;I need to add a link on Event Detail page to open the iCal format event directly by using webcal:// protocal. &amp;nbsp;The link would be like &amp;quot;Add to iCal calendar&amp;quot;. &amp;nbsp;Could anyone tell me how to implement it? &amp;nbsp;Thanks in advance!&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8707515</link><pubDate>Tue, 08 Jul 2008 12:21:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8707515</guid><dc:creator>Sruli</dc:creator><description>&lt;p&gt;I have problem with calendar view. Hope you can help.&lt;/p&gt;
&lt;p&gt;I have a SPView object of Calendar type. &lt;/p&gt;
&lt;p&gt;How can I change it's default type programatically, e.g., from Month to Week or Day calendar?&lt;/p&gt;
&lt;p&gt;The calendar type is located in SPView.schemaXML member, but this is a readonly property. How can I change it?&lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;/p&gt;
&lt;p&gt;Sruli&lt;/p&gt;</description></item><item><title>re: Understanding the SharePoint calendar and how to export it to iCal format</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#8771644</link><pubDate>Fri, 25 Jul 2008 11:29:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8771644</guid><dc:creator>Rex</dc:creator><description>&lt;p&gt;Thank you for the post! &lt;/p&gt;
&lt;p&gt;I wonder where can I find the schema of XML in RecurrenceData field.&lt;/p&gt;
&lt;p&gt;It will be helpful if someone gives me an example with full element of the XML.&lt;/p&gt;</description></item><item><title>Links 2009-04-06</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#9534315</link><pubDate>Mon, 06 Apr 2009 22:58:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9534315</guid><dc:creator>Gunnar Peipman's ASP.NET blog</dc:creator><description>&lt;p&gt;SharePoint Customizing SharePoint Context Menus Hidden SharePoint Lists, Fields, and other Advanced List&lt;/p&gt;
</description></item><item><title>web tasarım</title><link>http://blogs.msdn.com/sharepoint/archive/2007/05/14/understanding-the-sharepoint-calendar-and-how-to-export-it-to-ical-format.aspx#9856125</link><pubDate>Mon, 03 Aug 2009 13:57:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9856125</guid><dc:creator>web tasarım</dc:creator><description>&lt;p&gt;miracle m&lt;a rel="nofollow" target="_new" href="http://www.parcakontorbayiniz.com"&gt;http://www.parcakontorbayiniz.com&lt;/a&gt;&lt;/p&gt;
</description></item></channel></rss>