Microsoft KB Archive/310555

From BetaArchive Wiki
Knowledge Base


How to use Microsoft Collaboration Data Objects for Exchange 2000 Library to create appointments with exceptions in Microsoft Visual C# .NET

Article ID: 310555

Article Last Modified on 11/29/2007



APPLIES TO

  • Microsoft Exchange Server 2003 Enterprise Edition
  • Microsoft Exchange Server 2003 Standard Edition
  • Microsoft Exchange 2000 Server Standard Edition
  • Collaboration Data Objects for Exchange 2000
  • Microsoft Visual C# .NET 2002 Standard Edition
  • Microsoft ActiveX Data Objects 2.5



This article was previously published under Q310555

Caution ADO and ADO MD have not been fully tested in a Microsoft .NET Framework environment. They may cause intermittent issues, especially in service-based applications or in multithreaded applications. The techniques that are discussed in this article should only be used as a temporary measure during migration to ADO.NET. You should only use these techniques after you have conducted complete testing to make sure that there are no compatibility issues. Any issues that are caused by using ADO or ADO MD in this manner are unsupported. For more information, see the following article in the Microsoft Knowledge Base:

840667 You receive unexpected errors when using ADO and ADO MD in a .NET Framework application



SUMMARY

This article describes how to use Microsoft Collaboration Data Objects (CDO) for Exchange 2000 Library to create appointments with exceptions in Microsoft Visual C# .NET.

Note To function correctly, you must run the code discussed in this article on Microsoft Exchange Server.

MORE INFORMATION

  1. Start Microsoft Visual Studio .NET. On the File menu, click New, and then click Project.
  2. Select Console Application from the Visual C# .NET Projects types.

    By default, Class1.cs is created.
  3. Add a reference to the Microsoft CDO for Exchange 2000 Library. To do this, follow these steps:
    1. On the Project menu, click Add Reference.
    2. On the COM tab, locate Microsoft CDO for Exchange 2000 Library, and then click Select.
    3. Click OK in the Add References dialog box to accept your selections. If you receive a prompt to generate wrappers for the libraries you selected, click Yes.
  4. Follow the same steps to add a reference to the Microsoft ActiveX Data Objects 2.5 Library.
  5. In the Code window, replace all the code with the following code:

    using System;
    
    namespace Samples
    {
        class Class1
        {
            static void Main(string[] args)
            {
                try 
                {
                CDO.Appointment oApp = new CDO.Appointment();
    
                            // TODO: Replace with your folder URL
                string sURL = "http://ExchServer/Exchange/UserAlias/calendar";
    
                ADODB.Connection oCn = new ADODB.Connection();
                oCn.Provider = "exoledb.datasource";
    
                oCn.Open(sURL, "", "", 0);  
                if(oCn.State == 1)
                {
                    Console.WriteLine("Good Connection");
                }
                else
                {
                    Console.WriteLine("Bad Connection");
                }           
                            
                CDO.Configuration iConfg = new CDO.Configuration();
                ADODB.Fields oFields;
    
    
                oFields = iConfg.Fields;
                oFields[CDO.CdoCalendar.cdoTimeZoneIDURN].Value = CDO.CdoTimeZoneId.cdoPacific;
                oFields.Update();
    
                oApp.Configuration = iConfg;
                oApp.StartTime = Convert.ToDateTime("10/11/2001 10:00:00 AM");
                oApp.EndTime = Convert.ToDateTime("10/11/2001 11:00:00 AM");
                oApp.Location = "My Cube";
                oApp.Subject = "Test Create App in C#";
                oApp.TextBody = "Hello...";
    
                // Add Recurring
                // Every Thursday starting Today and run 3 times
                CDO.IRecurrencePatterns iRPatters = oApp.RecurrencePatterns;
                CDO.IRecurrencePattern iRPatter = iRPatters.Add("Add");
                iRPatter.Frequency = CDO.CdoFrequency.cdoWeekly;
                iRPatter.Interval = 1;    // 1 hour from 10 to 11
                iRPatter.DaysOfWeek.Add(4);  // every Thursday
                iRPatter.Instances = 3;
    
                // Specify Exceptions
                CDO.IExceptions iExceps = oApp.Exceptions;
                CDO.IException iExcep;
    
                // Delete
                iExcep = oApp.Exceptions.Add("DELETE"); 
                iExcep.RecurrenceID = Convert.ToDateTime("10/11/2001 10:00:00 AM");
    
                // Modify
                iExcep = oApp.Exceptions.Add("MODIFY"); 
                iExcep.RecurrenceID = Convert.ToDateTime("10/18/2001 10:00:00 AM");
                iExcep.StartTime = Convert.ToDateTime("10/17/2001 10:00:00 AM");
                iExcep.EndTime = Convert.ToDateTime("10/17/2001 1:00:00 pM");
    
                
                oApp.DataSource.SaveToContainer(sURL, null, 
                    ADODB.ConnectModeEnum.adModeReadWrite, 
                    ADODB.RecordCreateOptionsEnum.adCreateNonCollection, 
                    ADODB.RecordOpenOptionsEnum.adOpenSource, 
                    "", "");
    
                oCn.Close();
    
                oApp = null;
                oCn = null;
                oFields = null;
                }
                catch (Exception e)
                {
                    Console.WriteLine("{0} Exception caught.", e);
                }           
            }
            }
    }
                        
  6. Modify the code where you see TODO.
  7. Press the F5 key to build and run the program.
  8. Verify that the specified appointments are created.



Additional query words: CDOEX ADO EXOLEDB

Keywords: kbhowtomaster KB310555