<?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>JeffGa's weblog</title><link>http://blogs.msdn.com/jeffga/default.aspx</link><description /><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Changes this this blog and my role at Microsoft</title><link>http://blogs.msdn.com/jeffga/archive/2008/02/28/Changes-this-this-blog-and-my-role-at-Microsoft.aspx</link><pubDate>Thu, 28 Feb 2008 22:30:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5916745</guid><dc:creator>JeffGa</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/jeffga/comments/5916745.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jeffga/commentrss.aspx?PostID=5916745</wfw:commentRss><wfw:comment>http://blogs.msdn.com/jeffga/rsscomments.aspx?PostID=5916745</wfw:comment><description>&lt;P&gt;I've been supporting Messaging development for quite a while and had a lot of fun doing it, but a few months ago, I decided to change focus and dig into&amp;nbsp;a new different product.&amp;nbsp; I'm now supporting the Microsoft side of the &lt;A class="" title="Duet for Microsoft Office and SAP" href="http://www.duet.com/" target=_blank mce_href="http://www.duet.com/"&gt;Microsoft | SAP Duet product&lt;/A&gt;.&amp;nbsp; So as you would assume the focus of this blog will be changing greatly, there may still be some occasional messaging development entries, but the main focus will be&amp;nbsp;the Duet product the majority of the time now.&lt;/P&gt;
&lt;P&gt;My hope with the blog now is&amp;nbsp;to raise the awareness around what we can be done with Duet along with getting some good troubleshooting steps and hopefully get some common issues documented.&lt;/P&gt;
&lt;P&gt;More to follow soon...&lt;/P&gt;
&lt;P&gt;- Jeff&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=5916745" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/jeffga/archive/tags/FYI/default.aspx">FYI</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/DevMsgTeam/default.aspx">DevMsgTeam</category></item><item><title>401 errors using WebDAV to access a newly created mailbox</title><link>http://blogs.msdn.com/jeffga/archive/2007/12/10/401-errors-using-webdav-to-access-a-newly-created-mailbox.aspx</link><pubDate>Mon, 10 Dec 2007 22:16:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6726585</guid><dc:creator>JeffGa</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/jeffga/comments/6726585.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jeffga/commentrss.aspx?PostID=6726585</wfw:commentRss><wfw:comment>http://blogs.msdn.com/jeffga/rsscomments.aspx?PostID=6726585</wfw:comment><description>&lt;P&gt;I recently worked on a issue where the customer was programmatically creating mailboxes on an Exchange server with CDOEM and ADSI, and were having some issues trying to access these newly created mailboxes with their WebDAV code.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;This is a known issue that occurs because the mailbox is not available to WebDAV until a client logs on to that mailbox.&amp;nbsp; Additionally this problem is documented in the following article:&lt;/P&gt;
&lt;P&gt;839422&amp;nbsp;&amp;nbsp;&amp;nbsp; When you try to log on to an Exchange 2000 or an Exchange 2003 mailbox by using a WebDAV program, you receive a 401 status code in Internet Explorer &lt;BR&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;839422" mce_href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;839422"&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;839422&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;For this issue the following options are different approaches that can be used to workaround this issue.&amp;nbsp; I wanted to get them combined and noted here for reference, since it didn't seem like there was&amp;nbsp;a lot of information available to specifically address this issue:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;After Creating the mailbox send a welcome message to the new mailbox, this will force the creation of the mailbox and you will be able to use WebDAV against the mailbox (Although the article above states that you cannot) &lt;/LI&gt;
&lt;LI&gt;Manually log into the mailboxes after they are created (Not very practical if you are creating a lot of mailboxes at one) &lt;/LI&gt;
&lt;LI&gt;Use either MAPI or CDO 1.21 to logon to those mailboxes &lt;STRONG&gt;BEFORE&lt;/STRONG&gt; we use our WebDAV code to access that same mailbox.&amp;nbsp; Note: MAPI development needs to be done in VC++ but CDO 1.21 can be done in either VC++ or VB or VBScript. &lt;/LI&gt;
&lt;LI&gt;Do a simple GET request (non-WebDAV) to the root of the newly created mailbox while NOT specifying the translate header to true.&amp;nbsp; This will also force the creation of the mailbox with just the HTTP GET request. &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;Related information:&lt;/P&gt;
&lt;P&gt;A special thanks to Dan Bagley who blogs at &lt;A title=http://blogs.msdn.com/webdav_101/ href="http://blogs.msdn.com/webdav_101/" mce_href="http://blogs.msdn.com/webdav_101/"&gt;http://blogs.msdn.com/webdav_101/&lt;/A&gt; and has some good information on WebDAV and messaging development.&lt;/P&gt;
&lt;P&gt;Knowledge base articles: &lt;/P&gt;
&lt;P&gt;195662&amp;nbsp;&amp;nbsp;&amp;nbsp; How to log on to Exchange with the ProfileInfo parameter &lt;BR&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;195662"&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;195662&lt;/A&gt; &lt;BR&gt;180597 How To Get the Name of the Profile you Logged On With &lt;BR&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;180597"&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;180597&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;MSDN references: &lt;/P&gt;
&lt;P&gt;CDO 1.21 Session logon method: &lt;BR&gt;&lt;A href="http://msdn2.microsoft.com/en-us/library/ms526377.aspx"&gt;http://msdn2.microsoft.com/en-us/library/ms526377.aspx&lt;/A&gt; &lt;BR&gt;CDO 1.21 GetDefaultFolder method: &lt;BR&gt;&lt;A href="http://msdn2.microsoft.com/en-us/library/ms526181.aspx"&gt;http://msdn2.microsoft.com/en-us/library/ms526181.aspx&lt;/A&gt; &lt;BR&gt;MAPILogonEx documentation: &lt;BR&gt;&lt;A href="http://msdn2.microsoft.com/en-us/library/ms529409.aspx"&gt;http://msdn2.microsoft.com/en-us/library/ms529409.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;-Jeff&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=6726585" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/jeffga/archive/tags/CDO/default.aspx">CDO</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/Exchange/default.aspx">Exchange</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/WebDAV/default.aspx">WebDAV</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/Extended+MAPI/default.aspx">Extended MAPI</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/DevMsgTeam/default.aspx">DevMsgTeam</category></item><item><title>Changes in the newest CDO web download allow more options for CONNECT_IGNORE_NO_PF</title><link>http://blogs.msdn.com/jeffga/archive/2007/08/07/cdo-changes-to-work-better-when-accessing-mixed-exchange-2003-2007-servers.aspx</link><pubDate>Tue, 07 Aug 2007 13:34:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2716396</guid><dc:creator>JeffGa</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/jeffga/comments/2716396.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jeffga/commentrss.aspx?PostID=2716396</wfw:commentRss><wfw:comment>http://blogs.msdn.com/jeffga/rsscomments.aspx?PostID=2716396</wfw:comment><description>&lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;font face="Trebuchet MS"&gt;If you've been bit by the problems with the web download of CDO 1.21 returning a 8004011D when trying to access an Exchange 2003 server then this post may help you out.&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;/span&gt;&lt;font size="2"&gt;&amp;nbsp;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;font face="Trebuchet MS"&gt;First the history of the problem and then what options are available to avoid this issue.&amp;nbsp; So as you probably already know, with Exchange 2007 we don't have to have a Public Folder tree.&amp;nbsp; This new scenario is the main cause behind this problem with the downloadable version of CDO 1.21.&amp;nbsp; Steve Griffin does a great job of explaining how this came into being and where the CONNECT_IGNORE_NO_PF flags comes from in his &lt;/font&gt;&lt;a class="" title="MAPI and Exchange 2007" href="http://blogs.msdn.com/stephen_griffin/archive/2007/03/19/mapi-and-exchange-2007.aspx" target="_blank" mce_href="http://blogs.msdn.com/stephen_griffin/archive/2007/03/19/mapi-and-exchange-2007.aspx"&gt;&lt;font face="Trebuchet MS"&gt;post.&lt;/font&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;/span&gt;&lt;font size="2"&gt;&amp;nbsp;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;font face="Trebuchet MS"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;So with the downloadable versions of the CDO 1.21 library, this flag is passed by default now, remember this download was intended for use in a Outlook 2007 / Exchange 2007 environment.&amp;nbsp; So this really isn't a big deal right?&amp;nbsp; Wrong, the problem occurs when we use these CDO 1.21 web download bits and try to access an existing Exchange 2003 server.&amp;nbsp; The result is&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;your code fails with an error: 8004011D (MAPI_E_FAILONEPROVIDER error or "The Server is not available") error when trying to access the Exchange 2003 server.&amp;nbsp; The reason is that the Exchange 2003 server you are trying to access doesn't know how to handle this new flag its being passed and returns this error.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;/span&gt;&lt;font size="2"&gt;&amp;nbsp;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;font face="Trebuchet MS"&gt;Luckily there are now two options to approach this issue and I've documented them for your reading pleasure:&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;ul&gt; &lt;li&gt; &lt;div class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;font face="Trebuchet MS"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;Make sure that your&amp;nbsp;Store on your Exchange 2003 server is updated to the latest security fix.&amp;nbsp; Why?&amp;nbsp; These updates&amp;nbsp;now include&amp;nbsp;logic for the store to recognize the new&amp;nbsp;the CONNECT_IGNORE_NO_PF flags that CDO 1.21 passes.&amp;nbsp; So if you update your server, you may not have to do anything else,&amp;nbsp;&lt;/o:p&gt;&lt;o:p&gt;&lt;o:p&gt;you can use the downloadable CDO 1.21 normally without having to anything else or make any other changes.&amp;nbsp; And you'll still be able to access your Exchange 2007 server without a worry.&lt;/o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; &lt;blockquote&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;o:p&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/o:p&gt;&lt;o:p&gt;&lt;o:p&gt;&lt;font face="Trebuchet MS"&gt;KB Article &lt;/font&gt;&lt;a class="" href="http://support.microsoft.com/default.aspx/kb/929751" mce_href="http://support.microsoft.com/default.aspx/kb/929751"&gt;&lt;font face="Trebuchet MS"&gt;929751&lt;/font&gt;&lt;/a&gt;&lt;font face="Trebuchet MS"&gt; documents/explains&amp;nbsp;the changes&amp;nbsp;for Store so that the it will properly recognize the new flags.&lt;/font&gt;&lt;/o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt; &lt;ul&gt; &lt;li class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;font face="Trebuchet MS"&gt;&lt;o:p&gt;The other option is to use the updated CDO 1.21 web download&amp;nbsp;(Available since the August 1st) and you will be able to set the option whether or not CDO 1.21 will pass these&amp;nbsp;flags or not.&amp;nbsp;&amp;nbsp;The setting to control whether or not CDO 1.21 will pass these flags is added to the registry.&amp;nbsp;&amp;nbsp;(CDO 1.21 version 06.06.7940 or greater)&amp;nbsp;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;blockquote&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;font face="Trebuchet MS"&gt;&lt;o:p&gt;The registry changes required&amp;nbsp;to make this work needs to be set as follows:&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;font face="Trebuchet MS"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&amp;nbsp;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;font face="Trebuchet MS"&gt;&lt;o:p&gt;HKLM\Software\Microsoft\Windows Messaging Subsystem\CDO&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;font face="Trebuchet MS"&gt;&lt;o:p&gt;"Ignore No PF"&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;font face="Trebuchet MS"&gt;&lt;o:p&gt;DWORD&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;font face="Trebuchet MS"&gt;&lt;o:p&gt;Value: 1 : &amp;nbsp;Means CDO will send the "CONNECT_IGNORE_NO_PF".&amp;nbsp; Anything else, we won't send the flag.&amp;nbsp;&amp;nbsp;The default behavior with this update is to not send the flag.&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;font face="Trebuchet MS"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&amp;nbsp;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;font face="Trebuchet MS"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&lt;font face="Trebuchet MS"&gt;&lt;o:p&gt;For accessing Exchange 2003 servers, I suspect that as the updates to store get out there and people get them installed on their 2003 servers, this will be less of an issue.&lt;/o:p&gt;&amp;nbsp;But with this update, there is another complexity to be aware of here is that&amp;nbsp;now with the default configuration of the CDO 1.21 web download being that we don't pass the "CONNECT_IGNORE_NO_PF" flag, and you try to use these binaries in environments with no Public Folder stores on Exchange 2007, you will fail until you change the key to 1.&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;Resources:&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-size: 10pt; font-family: 'Tahoma','sans-serif'"&gt;&amp;nbsp;&lt;/p&gt;&lt;/span&gt; &lt;p class="MsoListParagraph" style="margin: 0in 0in 0pt 0.5in; text-indent: -0.25in; mso-list: l0 level1 lfo1"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;o:p&gt;&lt;/o:p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;font face="Trebuchet MS"&gt;The link to the web download for CDO 1.21 is here:&lt;/font&gt;&lt;/o:p&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=2714320D-C997-4DE1-986F-24F081725D36&amp;amp;displaylang=en"&gt;&lt;font face="Trebuchet MS"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=2714320D-C997-4DE1-986F-24F081725D36&amp;amp;displaylang=en&lt;/font&gt;&lt;/a&gt;&lt;/o:p&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;font face="Trebuchet MS"&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;font face="Trebuchet MS"&gt;The link to the web download for CDO 1.21 and MAPI is here:&lt;/font&gt;&lt;/o:p&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=E17E7F31-079A-43A9-BFF2-0A110307611E&amp;amp;displaylang=en"&gt;&lt;font face="Trebuchet MS"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=E17E7F31-079A-43A9-BFF2-0A110307611E&amp;amp;displaylang=en&lt;/font&gt;&lt;/a&gt;&lt;/o:p&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;/o:p&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=2716396" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/jeffga/archive/tags/CDO/default.aspx">CDO</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/Exchange+web+forms/default.aspx">Exchange web forms</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/DevMsgTeam/default.aspx">DevMsgTeam</category></item><item><title>Problems with CDO 1.21 sending meeting cancellations</title><link>http://blogs.msdn.com/jeffga/archive/2007/08/02/problems-with-cdo-1-2x-sending-meeting-cancellations.aspx</link><pubDate>Thu, 02 Aug 2007 12:21:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4136419</guid><dc:creator>JeffGa</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/jeffga/comments/4136419.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jeffga/commentrss.aspx?PostID=4136419</wfw:commentRss><wfw:comment>http://blogs.msdn.com/jeffga/rsscomments.aspx?PostID=4136419</wfw:comment><description>&lt;P&gt;I wanted to get this blogged until we get an article published on this.&amp;nbsp; Here's the problem that were recently encountering and what we found, after the fact it all makes sense when you think about. 
&lt;P&gt;When using CDO 1.21 and trying to cancel an existing meeting from an organizer's mailbox you find that the cancellation requests remain in the Outbox and are not sent. 
&lt;P&gt;The key to determining the root cause of this issue&amp;nbsp;is that the original meeting request was sent out to a Outlook personal distribution list&amp;nbsp;and does not occur&amp;nbsp;if you send the same meeting request to a Exchange distribution list. 
&lt;P&gt;So what is the difference when sending to a Outlook personal distribution list, and why would it matter?&amp;nbsp; In this case we were using the CDO 1.21 from a ESM (Exchange System Manager) install,&amp;nbsp;and not an Outlook install,&amp;nbsp;and were using dynamically generated profiles.&amp;nbsp; The Personal distribution item is a Outlook object that MAPI and CDO don't specifically know about. 
&lt;P&gt;The problem that we are seeing here is related to the contab32 (Outlook Address Book&amp;nbsp;service).&amp;nbsp; This is the service that Outlook uses to resolve these personal DL's to an email address.&amp;nbsp; So when we create a profile with ProfileInfo option in CDO logon call this service is not added to the dynamically generated profile.&amp;nbsp;When we try to go and resolve this personal DL to a&amp;nbsp;email address, we fail since we do not have&amp;nbsp;a service loaded capable of resolving this address.&amp;nbsp; So the mail&amp;nbsp;just sits in the outbox of the organizer's mailbox, unresolved and unsent.&amp;nbsp; 
&lt;P&gt;Secondly you would&amp;nbsp;also experience this same problem without any meeting requests in the mix at all.&amp;nbsp;&amp;nbsp;You&amp;nbsp;can also&amp;nbsp;reproduce the same problem and actually get a error returned on send.&amp;nbsp; This is easy to do by composing an email to the same personal DL in Outlook.&amp;nbsp; Instead of actually sending the email,&amp;nbsp;just save it in the drafts and then use CDO to get the Entry ID and try to send the message.&amp;nbsp; When CDO tries to send this saved message, using ProfileInfo, the following error is returned: 
&lt;BLOCKQUOTE&gt;
&lt;P&gt;E_INVALIDARG(80070057) &lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Again we've run into the limitation that&amp;nbsp;the Outlook Address Book service isn't loaded when we use ProfileInfo with CDO's logon call and&amp;nbsp;dynamically create a&amp;nbsp;profile.&amp;nbsp; This is "by design" since CDO can't do anything to&amp;nbsp;load this&amp;nbsp;service within the dynamic profile.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So how do you work around this?&lt;/P&gt;
&lt;P&gt;We really have the following options to avoid this issue:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;One way&amp;nbsp;would be to use a previously&amp;nbsp;(programmatically or through the&amp;nbsp;Profile wizard)&amp;nbsp;created profile that has this contab32 service loaded.&amp;nbsp; Then when logging on with CDO instead of using the ProfileInfo parameter in Logon call, we specify this profile to logon with.&amp;nbsp; Hence, when we go to resolve the personal DL, we have the Outlook Address Book service available to CDO.&amp;nbsp; This of course would require you to run your application on a machine that had Outlook installed to get the contab32 service.&amp;nbsp; If you are planning to use your CDO code in a service, then this option may not be the best option since the Outlook installed bits are suited very well to being used in a service. 
&lt;LI&gt;Another option, if you are in a Exchange environment, would be to use a Exchange Distribution List instead of a Personal DL.&amp;nbsp; Here we would have no limitation on using the dynamic or static profiles to logon and send mail or cancel the meeting request.&amp;nbsp; This is probably the better option if you are looking to use your CDO code in a service-type application.&amp;nbsp;&amp;nbsp;This option&amp;nbsp;wouldn't require that you have Outlook installed on the machine where this application it running,&amp;nbsp;you could just have ESM installed on this machine to get CDO and MAPI.&lt;/LI&gt;&lt;/UL&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=4136419" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/jeffga/archive/tags/CDO/default.aspx">CDO</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/Outlook/default.aspx">Outlook</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/DevMsgTeam/default.aspx">DevMsgTeam</category></item><item><title>There's a fix now available for memory issues with repeated CDOEX/ExOLEDB datasource.open calls</title><link>http://blogs.msdn.com/jeffga/archive/2007/06/22/fix-for-memory-leak-with-repeated-cdoex-exoledb-datasource-opens.aspx</link><pubDate>Fri, 22 Jun 2007 17:14:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3462563</guid><dc:creator>JeffGa</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/jeffga/comments/3462563.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jeffga/commentrss.aspx?PostID=3462563</wfw:commentRss><wfw:comment>http://blogs.msdn.com/jeffga/rsscomments.aspx?PostID=3462563</wfw:comment><description>&lt;P&gt;This was a straight forward issue that I worked on a short period of time ago and thought that it was worthy of posting the results.&lt;/P&gt;
&lt;P&gt;The issue that we were encountering was with a service application that&amp;nbsp;a customer had written that was doing a lot of repeated calls to&amp;nbsp;some Exchange mailboxes using CDOEX.&amp;nbsp;&amp;nbsp;Over time, as any good leaky application will,&amp;nbsp;the memory being used by this application began to grow and grow.&amp;nbsp;&amp;nbsp; I&amp;nbsp;bring this issue up since it could be something that you&amp;nbsp;might encounter, since it doesn't take much to expose the problem.&amp;nbsp; It&amp;nbsp;just so&amp;nbsp;happens that this can occur with&amp;nbsp;some really simple CDOEX code.&amp;nbsp;&amp;nbsp; For this problem to occur you really only need to be using code&amp;nbsp;similar to the following:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Dim Conn As ADODB.Connection&lt;BR&gt;Dim objAppt As CDO.Appointment&lt;BR&gt;Dim i As Long&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR&gt;For i = 1 To 50000&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set objAppt = New CDO.Appointment&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set Conn = New ADODB.Connection&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Conn.Provider = "exoledb.datasource"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Conn.Open "&lt;A href="http://exchangeserver/Exchange/user/Calendar" mce_href="http://exchangeserver/Exchange/user/Calendar"&gt;http://ExchangeServer/Exchange/user/Calendar&lt;/A&gt;", "", "", 0&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; objAppt.DataSource.Open "&lt;A href="http://exchangeserver/Exchange/user/Calendar/item.eml" mce_href="http://exchangeserver/Exchange/user/Calendar/item.eml"&gt;http://ExchangeServer/Exchange/user/Calendar/item.eml&lt;/A&gt;", Conn, ADODB.ConnectModeEnum.adModeReadWrite,&amp;nbsp; ADODB.RecordCreateOptionsEnum.adFailIfNotExists, ADODB.RecordOpenOptionsEnum.adOpenSource, "", ""&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Do other logic here...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Clean up&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Conn.Close&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Set objAppt = Nothing&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Set Conn = Nothing&lt;BR&gt;Next&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;After some amount of time of researching this with various tools including UMDH, it turned out that this problem was an&amp;nbsp;issue with the ADO components that CDOEX and ExOLEDB uses to access the Exchange store.&amp;nbsp; And to resolve this issue all you just need to do is make sure that you are running at least this version of msado15.dll (2.82.3959.0), which luckily&amp;nbsp;is&amp;nbsp;now available&amp;nbsp;publicly in Windows 2003 SP2.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;So if you are seeing anything like this I suggest that you go ahead and give Windows 2003 SP2 a try.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=3462563" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/jeffga/archive/tags/Exchange/default.aspx">Exchange</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/CDOEX/default.aspx">CDOEX</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/ExOLEDB/default.aspx">ExOLEDB</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/DevMsgTeam/default.aspx">DevMsgTeam</category></item><item><title>The Exchange Workflow designer is gone...</title><link>http://blogs.msdn.com/jeffga/archive/2007/05/16/exchange-workflow-designer-is-gone.aspx</link><pubDate>Wed, 16 May 2007 06:40:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2663703</guid><dc:creator>JeffGa</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/jeffga/comments/2663703.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jeffga/commentrss.aspx?PostID=2663703</wfw:commentRss><wfw:comment>http://blogs.msdn.com/jeffga/rsscomments.aspx?PostID=2663703</wfw:comment><description>&lt;P&gt;Thom just published a post about the removal of the Exchange workflow designer from the Exchange downloads.&amp;nbsp;&amp;nbsp;And&amp;nbsp;I just posted my comments about troubleshooting the workflow engine in Exchange.&amp;nbsp; :)&lt;/P&gt;
&lt;P&gt;Here's the link to the &lt;FONT color=#0033cc&gt;Exchange API-spotting&lt;/FONT&gt;&amp;nbsp;post about this:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/exchangedev/archive/2007/05/15/microsoft-office-workflow-designer-for-exchange-is-no-longer-available.aspx" mce_href="http://blogs.msdn.com/exchangedev/archive/2007/05/15/microsoft-office-workflow-designer-for-exchange-is-no-longer-available.aspx"&gt;http://blogs.msdn.com/exchangedev/archive/2007/05/15/microsoft-office-workflow-designer-for-exchange-is-no-longer-available.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I have to say that&amp;nbsp;I saw this coming with the release of Exchange Server 2007 and the lack of workflow libraries.&amp;nbsp; Really though, I think in the long run for developers of workflow enabled applications it's a great thing.&amp;nbsp;The new strategic direction is a more direct and much more robust solution that what we can offer with just the Exchange workflow designer.&lt;/P&gt;
&lt;P&gt;Here's the reasoning behind this:&lt;/P&gt;
&lt;P minmax_bound="true"&gt;"There are several reasons why moving away from Exchange Workflow and the Workflow Designer for Exchange, and moving to WF is the right thing: 
&lt;BLOCKQUOTE&gt;
&lt;P minmax_bound="true"&gt;- WF is Microsoft’s strategic direction for workflow applications. 
&lt;P minmax_bound="true"&gt;- WF leverages current technology and a better programming model. 
&lt;P minmax_bound="true"&gt;- WF can be used in managed code (ExWFD and CDOWF cannot). 
&lt;P minmax_bound="true"&gt;- WF will also be used in other Microsoft applications. 
&lt;P minmax_bound="true"&gt;- ExWFD and CDOWF are not compatible with Microsoft Exchange Server 2007."&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So as it's noted in Thom's post, if you are planning to develop any new workflow projects, you should really start investigating the new Workflow Foundation that's now available.&amp;nbsp; He's also gone ahead and added a bunch of links and resources to get you started in that direction.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=2663703" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/jeffga/archive/tags/Workflow/default.aspx">Workflow</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/Exchange/default.aspx">Exchange</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/DevMsgTeam/default.aspx">DevMsgTeam</category></item><item><title>Custom Exchange web forms do not render properly with IE 7.0</title><link>http://blogs.msdn.com/jeffga/archive/2007/04/24/some-custom-registered-owa-forms-do-not-render-properly-with-ie-7-0.aspx</link><pubDate>Tue, 24 Apr 2007 17:03:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2260560</guid><dc:creator>JeffGa</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/jeffga/comments/2260560.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jeffga/commentrss.aspx?PostID=2260560</wfw:commentRss><wfw:comment>http://blogs.msdn.com/jeffga/rsscomments.aspx?PostID=2260560</wfw:comment><description>&lt;P&gt;I've seen this issue posted in the newsgroups a couple of times now along with a case or two on this coming to my attention.&amp;nbsp; So based on this, it seems like a good topic to bring up here.&lt;/P&gt;
&lt;P&gt;The problem that you run into here is that the &lt;A class="" title="Custom forms MSDN Mag article" href="http://msdn.microsoft.com/msdnmag/issues/01/05/wss/" target=_blank mce_href="http://msdn.microsoft.com/msdnmag/issues/01/05/wss/"&gt;custom&amp;nbsp;Exchange web&amp;nbsp;forms&lt;/A&gt; that you have registered on your Exchange 2003 server don't work properly when viewed with IE 7.0.&amp;nbsp; The same forms still work properly if viewed with IE 6.0 or when IE 7.0 is used with the "&lt;A class="" title="Download for User Agent String utility" href="http://www.microsoft.com/downloads/details.aspx?familyid=9517db9c-3c0d-47fe-bd04-fad82a9aac9f&amp;amp;displaylang=en" target=_blank mce_href="http://www.microsoft.com/downloads/details.aspx?familyid=9517db9c-3c0d-47fe-bd04-fad82a9aac9f&amp;amp;displaylang=en"&gt;User Agent String Utility&lt;/A&gt;" to&amp;nbsp;browse the custom&amp;nbsp;web form.&amp;nbsp; In the cases that I've seen all are involving the web forms view control and issues with this being properly rendered client side in IE 7.0.&lt;/P&gt;
&lt;P&gt;We actually dug into the source on this one and saw that this was caused because of the way that we are detecting the browser that is requesting the content.&amp;nbsp;&amp;nbsp;So the way that fix this issue&amp;nbsp;is very similar to what is outlined in the following article:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;How to modify the Browscap.ini file to enable script-based detection of Windows Internet Explorer 7 from a Web page - &lt;SPAN style="COLOR: #1f497d"&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;929744" target=_blank&gt;&lt;FONT color=#0000ff&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;929744&lt;/FONT&gt;&lt;/A&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #1f497d"&gt;&lt;FONT color=#000000&gt;The main differences that are required, in addition to what is outlined above, to make this work properly with your Exchange web forms are the following key settings:&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #1f497d"&gt;&lt;FONT color=#000000&gt;As per the article, add the following updates to the browsecap.ini, after the IE 6.0 section that already exists.&amp;nbsp; To make sure that&amp;nbsp;Exchange uses these new settings, you need to&amp;nbsp;make sure that the updates are&amp;nbsp;added to the browsecap.ini that resides in the &lt;STRONG&gt;C:\Program Files\Exchsrvr\bin&lt;/STRONG&gt; directory and not the one in the IIS server directory.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #1f497d"&gt;&lt;FONT color=#000000&gt;&amp;lt;Modifications&amp;gt;&lt;BR&gt;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 7.0 &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #1f497d"&gt;&lt;FONT color=#000000&gt;[IE 7.0] &lt;BR&gt;browser=IE &lt;BR&gt;Version=7.0 &lt;BR&gt;majorver=#7 &lt;BR&gt;minorver=#0 &lt;BR&gt;frames=True &lt;BR&gt;tables=True &lt;BR&gt;cookies=True &lt;BR&gt;backgroundsounds=True &lt;BR&gt;vbscript=True &lt;BR&gt;javaapplets=True &lt;BR&gt;javascript=True &lt;BR&gt;ActiveXControls=True &lt;BR&gt;Win16=False &lt;BR&gt;beta=False &lt;BR&gt;AK=False &lt;BR&gt;SK=False &lt;BR&gt;AOL=False &lt;BR&gt;Update=False &lt;BR&gt;&lt;STRONG&gt;WebFormsBrowserFlags=SupportsRichEdit&amp;amp;NoViewRender&lt;/STRONG&gt; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #1f497d"&gt;&lt;FONT color=#000000&gt;[Mozilla/4.0 (compatible; MSIE 7.*; Windows NT*)] &lt;BR&gt;parent=IE 7.0 &lt;BR&gt;platform=WinNT &lt;BR&gt;beta=False &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #1f497d"&gt;&lt;FONT color=#000000&gt;[Mozilla/4.0 (compatible; MSIE 7.*)] &lt;BR&gt;parent=IE 7.0 &lt;BR&gt;beta=False&lt;BR&gt;&amp;lt;/Modifications&amp;gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #1f497d"&gt;&lt;FONT color=#000000&gt;The&amp;nbsp;key entry here being the "WebFormsBrowserFlags=SupportsRichEdit&amp;amp;NoViewRender"&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="COLOR: #1f497d"&gt;&lt;FONT color=#000000&gt;So, save these changes to the correct browsecap.ini and then go back and browse to your web form custom application with IE 7.0 and you should see the custom forms rendered correctly.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=2260560" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/jeffga/archive/tags/Exchange/default.aspx">Exchange</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/Exchange+web+forms/default.aspx">Exchange web forms</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/DevMsgTeam/default.aspx">DevMsgTeam</category></item><item><title>Common Exchange Workflow troubleshooting tips</title><link>http://blogs.msdn.com/jeffga/archive/2007/04/16/common-exchange-workflow-troubleshooting-tips.aspx</link><pubDate>Mon, 16 Apr 2007 07:21:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2150032</guid><dc:creator>JeffGa</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/jeffga/comments/2150032.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jeffga/commentrss.aspx?PostID=2150032</wfw:commentRss><wfw:comment>http://blogs.msdn.com/jeffga/rsscomments.aspx?PostID=2150032</wfw:comment><description>&lt;P&gt;As many of my co-workers know,&amp;nbsp;one of the messaging technologies that is near and dear to my heart is our beloved workflow components that are available to developers in Exchange 2000 and 2003.&amp;nbsp; Over time and after working with numerous developers&amp;nbsp;on various Exchange workflow related issues, I've attempted to compile a list of commonly used troubleshooting steps.&amp;nbsp;&amp;nbsp;I'm hoping that these may help a workflow developer resolve some of the more common&amp;nbsp;roadblocks that they he/she can encounter while developing a project with the workflow components.&lt;/P&gt;
&lt;P mce_keep="true"&gt;My goal with this post is to try to provide as many steps, tricks, and information as possible here to to knock out some of the low hanging fruit of workflow issues.&lt;/P&gt;
&lt;P&gt;Here's the common list of basic steps to check off:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;General troubleshooting:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Make good use of "Exchange Explorer" form the &lt;A title="Download: Exchange SDK Development Tools" href="http://www.microsoft.com/downloads/details.aspx?familyid=4afe3504-c209-4a73-ac5d-ff2a4a3b48b7&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?familyid=4afe3504-c209-4a73-ac5d-ff2a4a3b48b7&amp;amp;displaylang=en"&gt;Exchange SDK tools&lt;/A&gt;.&amp;nbsp; With Exchange Explorer you can view the items that have been posted into a workflow enabled folder and determine all kinds of things about the state of the workflow on that item.&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Creating/Registering workflow processes in a public folder:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Can you connect to the same public folder with OWA &amp;amp; Outlook?&amp;nbsp; If not, why? 
&lt;LI&gt;Verify the person trying to register the workflow process&amp;nbsp;has the appropriate permissions to properly register a workflow project in that public folder.&amp;nbsp; Specifically "Can Register Workflow", and if needed "Privileged Workflow authors" roles in the COM+ application. 
&lt;LI&gt;Get and review&amp;nbsp;Event Logs, System &amp;amp; Application specifically from the Exchange server that the workflow process is attempted to be registered on. 
&lt;LI&gt;Make sure that you are connecting to the server that has an instance of the&amp;nbsp;public folder&amp;nbsp;where we are trying to create the workflow process.&amp;nbsp; Also make sure that for each of the public folder servers that has/will have an instance of the public folder&amp;nbsp;hosting the workflow process also has the&amp;nbsp;workflow COM+ component installed and is configured correctly on each one of those servers. 
&lt;LI&gt;Make sure the person registering the Workflow has a mailbox. 
&lt;LI&gt;Make sure the person registering the Workflow is the owner of the Public Folder, or at least has enough permissions to create and modify items created in the folder. 
&lt;LI&gt;Make sure Basic Authentication is checked on the Public Folder Virtual Root. 
&lt;LI&gt;Make sure "Execute Permissions" for scripts is checked on the Public Folder Virtual Root. 
&lt;LI&gt;Get&amp;nbsp;and review&amp;nbsp;network traces&amp;nbsp;of the traffic from the&amp;nbsp;machine registering the workflow&amp;nbsp;process to the Exchange server for errors. 
&lt;LI&gt;On the Exchange server, take a look at the IIS logs for any errors related to WebDAV verbs being performed on the workflow public folder.&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Workflow COM+ component:&lt;/STRONG&gt; 
&lt;UL&gt;
&lt;LI&gt;Confirm NT System/Authority account is listed in the "Privileged Authors" Role. 
&lt;LI&gt;Make sure the workflow account that is set as the account for the Workflow package is part of Exchange Domains Servers group. 
&lt;LI&gt;Make sure the account NTAuthority/System is the member of Privileged Workflow Authors Role. 
&lt;LI&gt;If, for some reason you need to recreate the Workflow COM+ application, run regsvr32 on the CDOWFEVT.DLL.&amp;nbsp; This will recreate the COM+ application for the workflow event sink.&amp;nbsp; If&amp;nbsp;COM+ application is&amp;nbsp;already present, another one will be created, so I suggest that&amp;nbsp;none exist&amp;nbsp;before doing this suggestion.&amp;nbsp; After the new application and component is created, you&amp;nbsp;would need to&amp;nbsp;reconfigure the COM+ settings and roles manually or use the following scripts from the Exchange SDK: (addwfrole.vbs or wfsetup.vbs) to configure these roles in the COM + application.&lt;/LI&gt;&lt;/UL&gt;
&lt;P mce_keep="true"&gt;&lt;STRONG&gt;Workflow Events not firing:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;Try creating a synchronous OnSyncSave sink in the folder and post a new message to that folder.&amp;nbsp; What this will help you determine is if any events are getting fired for the store.&amp;nbsp; This&amp;nbsp;can be useful information since that's the same thing that the&amp;nbsp;Workflow engine is using to do all of its magic.&amp;nbsp; Generally you'll see that if the workflow events are failing to fire so do normal synchronous sinks.&amp;nbsp; If you find that the&amp;nbsp;sinks are not firing the next item below is a good bet to investigate here.&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;You can also check for duplicated StoreEvents{GUID} system folders on your exchange server.&amp;nbsp; From experience, this has accounted for quite a few issues where the workflow engine is not doing its job correctly.&amp;nbsp; This article show how to check for this:&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P mce_keep="true"&gt;924171&amp;nbsp;Error event ID 116 is logged in the Application log every time that you start a server that is running Exchange 2000 Server&lt;BR&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;924171"&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;924171&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/BLOCKQUOTE&gt;
&lt;P mce_keep="true"&gt;&lt;STRONG&gt;Troubleshooting specific Workflow errors:&lt;/STRONG&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P mce_keep="true"&gt;EventID 4098 appears while posting message to a workflow-enabled folder&lt;BR&gt;&lt;A href="http://support.microsoft.com/kb/297508"&gt;http://support.microsoft.com/kb/297508&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;Cannot Register Workflow Events After You Change Permissions for the Exchange Domain Servers Group&lt;BR&gt;&lt;A href="http://support.microsoft.com/kb/315526"&gt;http://support.microsoft.com/kb/315526&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;You cannot synchronize offline changes with a workflow-enabled public folder in Exchange 2000 Server&lt;BR&gt;&lt;A href="http://support.microsoft.com/kb/810018"&gt;http://support.microsoft.com/kb/810018&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;INFO: Workflow Behavior When Folders Are Replicated&lt;BR&gt;&lt;A href="http://support.microsoft.com/kb/309469"&gt;http://support.microsoft.com/kb/309469&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P mce_keep="true"&gt;&lt;STRONG&gt;Other interesting bits of information:&lt;/STRONG&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P mce_keep="true"&gt;Description of how to obtain Microsoft Workflow Designer for Exchange&lt;BR&gt;&lt;A href="http://support.microsoft.com/kb/318895"&gt;http://support.microsoft.com/kb/318895&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;Support policy for Microsoft Exchange APIs with the .NET Framework applications&lt;BR&gt;&lt;A href="http://support.microsoft.com/kb/813349/en-us"&gt;http://support.microsoft.com/kb/813349/en-us&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;Understanding Exoledb’s default folders&lt;BR&gt;&lt;A href="http://blogs.technet.com/exchange/archive/2005/05/11/404826.aspx"&gt;http://blogs.technet.com/exchange/archive/2005/05/11/404826.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;Understanding Public Folders and System Folders&lt;BR&gt;&lt;A href="http://www.microsoft.com/technet/prodtechnol/exchange/guides/E2k3AdminGuide/c9040a64-ee66-445f-92b7-825db0da732f.mspx"&gt;http://www.microsoft.com/technet/prodtechnol/exchange/guides/E2k3AdminGuide/c9040a64-ee66-445f-92b7-825db0da732f.mspx&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P mce_keep="true"&gt;If you know of any other tips that you have used to get through a sticky Exchange workflow issue, comment this post and we'll see about getting it added to the list above.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=2150032" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/jeffga/archive/tags/Workflow/default.aspx">Workflow</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/Exchange/default.aspx">Exchange</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/DevMsgTeam/default.aspx">DevMsgTeam</category></item><item><title>CDOEXM IDataSource.Open returns 0x8000FFFF when trying to connect to an Exchange server</title><link>http://blogs.msdn.com/jeffga/archive/2007/04/13/cdoexm-idatasource-open-returns-0x8000ffff-when-trying-to-connect-to-an-exchange-server.aspx</link><pubDate>Fri, 13 Apr 2007 14:13:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2117695</guid><dc:creator>JeffGa</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/jeffga/comments/2117695.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jeffga/commentrss.aspx?PostID=2117695</wfw:commentRss><wfw:comment>http://blogs.msdn.com/jeffga/rsscomments.aspx?PostID=2117695</wfw:comment><description>&lt;P&gt;This is one of those issues that seems that it could be related to any array of issues, and really can only resolved by debugging into a local repro of the problem.&amp;nbsp; In this case we were trying to open a connection to an Exchange server with CDOEXM to do some typical management work with the server.&amp;nbsp; What happened in this this particular case is that the&amp;nbsp;following error was returned when trying to open a connection using the IExchangeServer Interface to the Exchange server.&amp;nbsp; The error that we received:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;0x8000FFFF - E_UNEXPECTED&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Here's a simple script that demonstrates the problem:&lt;/P&gt;
&lt;P&gt;Dim objExchangeServer&lt;BR&gt;Set objExchangeServer= CreateObject("CDOEXM.ExchangeServer") &lt;BR&gt;objExchangeServer.DataSource.Open("MyExchangeServerName")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;... your other logic here ...&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Cause:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;When our script here is&amp;nbsp;doing the Datasource.open(“MyExchangeServerName”) the CDOEXM code that is being used is doing some LDAP queries behind the scenes against the AD, this is all in preparation to connecting to the requested Exchange server.&amp;nbsp;What happens&amp;nbsp;when&amp;nbsp;we get this 0x8000FFFF&amp;nbsp;error returned, the LDAP query that CDOEXM used&amp;nbsp;returns us two objects.&amp;nbsp; This then indicates that we&amp;nbsp;have two Exchange servers or&amp;nbsp;other type of naming conflict&amp;nbsp;in this ORG.&amp;nbsp; And for CDOEXM to properly connect to the Exchange in this instance we can only have one item returned to CDOEXM from the LDAP&amp;nbsp;query.&lt;/P&gt;
&lt;P&gt;So this means that we probably have one of the two items existing in this ORG:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&amp;gt; 2 Exchange Servers with the same name, possible but unlikely.&lt;/P&gt;
&lt;P&gt;&amp;gt; A system Policy defined that has the same name as the Exchange server that we are trying to connect to with the CDOEXM code.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;In this case it was a system Policy that was defined in the ORG with the same name.&amp;nbsp; Merely, going to the System Polices node&amp;nbsp;and renaming the policy to something other then the name of the Exchange server allow the query to execute properly.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;So how do you tell if this is the issue here?&lt;/STRONG&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;The best way to confirm this is to use LDP to query the AD using the same query that CDOEXM is going to do to see if we get more than one result returned.&amp;nbsp;&amp;nbsp;Do the following steps and query in the LDP tool and examine&amp;nbsp;the responses that are returned:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Launch LDP (Start --&amp;gt; Run --&amp;gt; LDP)&lt;/P&gt;
&lt;P&gt;Connection Menu --&amp;gt; Connect... 
&lt;P&gt;Connection Menu --&amp;gt; Bind... 
&lt;P&gt;Browse Menu --&amp;gt; Search 
&lt;P&gt;In the Search dialog: 
&lt;P&gt;============================================================= 
&lt;P&gt;In "Base Dn", enter: Select the second entry in the list. 
&lt;P&gt;In "Filter", enter:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "(&amp;amp;(objectClass=msExchExchangeServer)(cn=&amp;lt;Exchange Servername here&amp;gt;))" 
&lt;P&gt;For "Scope", select: Subtree 
&lt;P&gt;Choose "Run" and see how many results you get. 
&lt;P&gt;You can also do the following search: 
&lt;P&gt;============================================================= 
&lt;P&gt;In "Base Dn", remove the text, so this textbox is empty. 
&lt;P&gt;In "Filter", enter:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "(&amp;amp;(objectClass=msExchExchangeServer)(cn=&amp;lt;Exchange Servername here&amp;gt;))" 
&lt;P&gt;For "Scope", select: Base 
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Choose "Run" and see how many results you get.&amp;nbsp; For CDOEXM to properly do the Open method, we should only get one item returned here. &lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;For more information on the LDP tool: 
&lt;P&gt;224543&amp;nbsp; Using Ldp.exe to Find Data in the Active Directory 
&lt;P&gt;&lt;A href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;224543" mce_href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;224543"&gt;http://support.microsoft.com/default.aspx?scid=kb;EN-US;224543&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;Note: From what I've seen this is not an issue with Exchange 2003 server.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=2117695" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/jeffga/archive/tags/Exchange/default.aspx">Exchange</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/CDOEXM/default.aspx">CDOEXM</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/DevMsgTeam/default.aspx">DevMsgTeam</category></item><item><title>CDO 1.2x and limitations with Free/Busy data publishing</title><link>http://blogs.msdn.com/jeffga/archive/2007/04/06/cdo-1-2x-and-limitations-with-free-busy-data-publishing.aspx</link><pubDate>Fri, 06 Apr 2007 18:44:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2040604</guid><dc:creator>JeffGa</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/jeffga/comments/2040604.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jeffga/commentrss.aspx?PostID=2040604</wfw:commentRss><wfw:comment>http://blogs.msdn.com/jeffga/rsscomments.aspx?PostID=2040604</wfw:comment><description>&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Here’s a scenario that I ran into with a customer recently.&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;You’re a developer that's using the CDO 1.21&amp;nbsp;Session’s SetOption method to set the "FreeBusyMonths" and have setting it&amp;nbsp;with a value of 36. However, after some time,&amp;nbsp;some of your users are reporting that they are seeing that it looks like the max of the Free/Busy information that is published is 12 months. Further inspection indicates&amp;nbsp;that anything over 12 months does not seem to be published, even&amp;nbsp;though you are specifically&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;setting this option to 36 in your application.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;For more background, let's look at the following article to help explain CDO 1.21’s SetOption method and what can be set and retrieved with it:&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;MSDN Documentation : SetOption Method (Session Object) &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;A href="http://msdn2.microsoft.com/en-gb/library/ms526854.aspx" mce_href="http://msdn2.microsoft.com/en-gb/library/ms526854.aspx"&gt;&lt;FONT face=Calibri color=#800080 size=3&gt;http://msdn2.microsoft.com/en-gb/library/ms526854.aspx&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;So in my example.&amp;nbsp; I specifically used the SetOption method to set the “FreeBusyMonths” to 36 months and created a recurring appointment with no end date.&amp;nbsp; I then looked at the Free/Busy data from an Outlook client and noticed that we did not see any Free/Busy data being published past the 1 year point.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;So what gives?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;After some research, what is actually happening here is the following:&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;CDO will allow you to use SetOption method to set the “FreeBusyMonths” OptType to whatever you want, meaning there is no limits on what you can set for the Free/Busy Publishing months.&amp;nbsp; But, as we know from the articles below, CDO acts like a client and will create the Free/Busy message in the Public Folder, much like Outlook does.&amp;nbsp; &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;The following articles explain CDO 1.21’s role with regards to Free/Busy publishing.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;XADM: CDO Changed to Regenerate Public Free-and-Busy Message&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;A href="http://support.microsoft.com/kb/313569" mce_href="http://support.microsoft.com/kb/313569"&gt;&lt;FONT face=Calibri size=3&gt;http://support.microsoft.com/kb/313569&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;XCLN: CDO Only Publishes Three Months of Free/Busy Data&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;A href="http://support.microsoft.com/kb/188833" mce_href="http://support.microsoft.com/kb/188833"&gt;&lt;FONT face=Calibri color=#800080 size=3&gt;http://support.microsoft.com/kb/188833&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.5in"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-INDENT: 0.5in"&gt;&lt;A href="http://msexchangeteam.com/archive/2004/06/02/146939.aspx" mce_href="http://msexchangeteam.com/archive/2004/06/02/146939.aspx"&gt;&lt;FONT face=Calibri color=#800080 size=3&gt;http://msexchangeteam.com/archive/2004/06/02/146939.aspx&lt;/FONT&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;The problem occurs when&amp;nbsp;CDO goes through its logic internally to create the Free/Busy message, as it has to do here to be a good client, it will actually enforce a 12 month Free/Busy publishing limit.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;So the information noted above in the MSDN is still valid, but doesn’t mention that there are other things that occur under the covers with CDO 1.2x with regards to the actual publishing of Free/Busy data.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=2040604" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/jeffga/archive/tags/CDO/default.aspx">CDO</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/Exchange/default.aspx">Exchange</category><category domain="http://blogs.msdn.com/jeffga/archive/tags/DevMsgTeam/default.aspx">DevMsgTeam</category></item></channel></rss>