Select the product you need help with
The support guidelines for client-side messaging developmentArticle ID: 266353 - View products that this article applies to. This article was previously published under Q266353 On This PageINTRODUCTIONThis article describes what is supported and what is not
supported when you develop custom solutions that integrate with Microsoft-based
messaging products or Microsoft technologies. This article also contains most
of the key information to be aware of when you develop with Microsoft products
and Microsoft technologies. However, this article does not cover all scenarios.
Contact Microsoft Customer Support Services if you have any questions about
whether a specific solution is supported. This article also discusses specific technologies and specific scenarios to provide guidance to developers. MORE INFORMATIONThe term "supported" is used to describe whether Microsoft
Customer Support Services or Microsoft Services can help you when you try to
achieve something in a specific way. Typically, the term is also used in the
context of whether a Microsoft product group will potentially fix an issue for
a given scenario. Because of the large matrix of products, technologies, and versions that require testing, we cannot say that all scenarios have been designed or tested. Therefore, we encourage you to use the following best practices when you design custom solutions:
Integrating with Outlook propertiesOutlook, Microsoft Exchange Server, and other Microsoft products store data in MAPI stores, such as personal folders (.pst) files, Exchange mailbox stores, or Exchange public folder stores. Although some of this data is visible, various other data is not visible and is stored for other reasons.In some cases, there is a one-to-one correspondence between what you see in Outlook and what is stored in the underlying MAPI database. The Subject box of an e-mail message is an example of this because this box corresponds to the PR_SUBJECT MAPI property. In this case, this property predates Outlook because this property was used by previous Microsoft e-mail clients. Other properties also have a one-to-one correspondence but are specific to Outlook. For example, a contact’s Web site address is stored in a specific MAPI named property. Note For more information about named properties in Outlook, see the "MAPI-specific information for named properties" section. In some cases, Outlook may use multiple MAPI properties to store information for a specific purpose, or Outlook may store multiple pieces of information in one property. In both of these scenarios, frequently there is no documentation that explains how these properties are implemented or how they function. Programmatically changing the underlying properties involves some risk. The main areas include the following:
Therefore, we recommend that you avoid accessing this low-level data directly and that you use a high-level API instead, such as the Outlook object library. Because of these factors, Microsoft generally does not support explaining how or why the underlying properties are implemented. It is also important to differentiate between reading properties and writing properties. Programmatically reading MAPI properties by using APIs such as Extended MAPI, WebDAV, or the PropertyAccessor object in the Microsoft Office Outlook 2007 object model is supported. However, writing to those properties is not supported because of the potential for data corruption issues or for other problems that other MAPI clients may have when they use the modified data. MAPI-specific information for named propertiesMAPI provides a facility for assigning names to certain properties, for mapping these names to unique identifiers, and for making this mapping persistent. Outlook writes many Outlook-specific fields into these named properties that use identifiers in the 8000-FFFE range. Typically, the Microsoft Outlook object model is the only supported method of changing these named properties. Typically, changing these properties by using MAPI or by using Collaboration Data Objects (CDO) is not supported.Named properties are identified by a name and by a GUID for a property set. The name can be a number or a string. These properties are manipulated by using the IMAPIProp::GetIDsFromNames function and the IMAPIProp::GetNamesFromIDs function. The GUID and the name are passed to the GetIDsFromNames function to obtain a property ID that is valid for the current MAPI session. Because this property ID can vary from computer to computer, the only consistent way to access a named property is to know its property set and its name. Typically, named properties are used by Outlook clients as a way to add extra information to a message that is only used by that client. Therefore, most of the named properties that are used by Outlook clients are not documented. The only supported way to obtain these properties is through the Outlook object model. Common named properties that are used by OutlookThe following table describes the common named properties that are used by Outlook.Collapse this table
920134 The Outlook Integration API provides additional
documentation for integrating with Outlook in specific scenarios. To view this
documentation, visit the following Microsoft Web site:
(http://support.microsoft.com/kb/920134/
)
Available support for applications that use the WebDAV protocol to access Exchange 2000 Server or Exchange Server 2003
http://msdn2.microsoft.com/en-us/library/aa193231(office.11).aspx Additionally, the following information is documented for Outlook
2007 and is scheduled to be included in the Outlook Integration API at a later
date.
For more information,
click the following article numbers to view the articles in the Microsoft
Knowledge Base:
(http://msdn2.microsoft.com/en-us/library/aa193231(office.11).aspx)
919198
(http://support.microsoft.com/kb/919198/
)
Notification-based indexing support for store providers in Outlook 2007
919199 For more information, visit the following Microsoft
Web sites:
(http://support.microsoft.com/kb/919199/
)
How to use the IAttachmentSecurity API to verify whether an attachment is considered to be blocked in Outlook
Outlook 2007 documentation - Blocked attachments http://blogs.msdn.com/stephen_griffin/archive/2006/05/09/593585.aspx
(http://blogs.msdn.com/stephen_griffin/archive/2006/05/09/593585.aspx)
Outlook 2007 documentation - Notification based indexing support http://blogs.msdn.com/stephen_griffin/archive/2006/05/10/594641.aspx
(http://blogs.msdn.com/stephen_griffin/archive/2006/05/10/594641.aspx)
Microsoft Office Outlook 2003 Service Pack 1 (SP1) or later versionsFor more information, click the following article numbers to view the articles in the Microsoft Knowledge Base:912239
(http://support.microsoft.com/kb/912239/
)
How to use the dispidHeaderItem MAPI property to identify the state of a message that you receive in Outlook 2003
912238
(http://support.microsoft.com/kb/912238/
)
How to use MAPI to manage messages in a .pst file when you are using Outlook 2003 to download messages from an IMAP server
912237
(http://support.microsoft.com/kb/912237/
)
How to use named properties to relate Contact Address Book entries to e-mail messages, e-mail addresses, and picture attachments in Outlook 2003
915314 For more information, visit the following Microsoft
Web sites:
(http://support.microsoft.com/kb/915314/
)
Information about two new named property definitions that can control how a message is processed by Office Outlook 2003 when users reply to the message
New Outlook documentation part 5 - One-off forms http://blogs.msdn.com/stephen_griffin/archive/2005/12/29/507991.aspx
(http://blogs.msdn.com/stephen_griffin/archive/2005/12/29/507991.aspx)
Outlook 2003 Integration API wrapped PST documents and sample http://blogs.msdn.com/stephen_griffin/archive/2005/09/28/Outlook-2003-Integration-API-Wrapped-PST-Docs-and-Sample.aspx
(http://blogs.msdn.com/stephen_griffin/archive/2005/09/28/Outlook-2003-Integration-API-Wrapped-PST-Docs-and-Sample.aspx)
APIs that are supported in managed codeMAPI was originally designed and originally developed in the late 1980s. Therefore, MAPI predates managed code in the Microsoft .NET Framework. We do not provide managed wrappers for MAPI, and we discourage you from using third-party wrappers. This is because solutions may seem to work in a test environment, but issues that are related to memory management may occur when an application is deployed in a production environment and is exposed to real-world scalability scenarios.The following table summarizes the support policy for Outlook APIs in the .NET Framework environment. Collapse this table
813349
(http://support.microsoft.com/kb/813349/
)
Support policy for Microsoft Exchange APIs with .NET Framework applications
The .NET Framework user controlsThe .NET Framework user controls are not supported in Outlook 2003, in earlier versions of Outlook, or in Outlook 2007 custom form regions. For more information about support for these controls, click the following article number to view the article in the Microsoft Knowledge Base:897863
(http://support.microsoft.com/kb/897863/
)
Description of the supportability of Winforms controls in unmanaged applications
Custom forms and HTTP scenarios for Outlook 2003 and for earlier versions of OutlookIn Outlook, custom Outlook forms are not supported for use with HTTP-based mail services such as Microsoft Hotmail. Outlook does not prevent you from using custom form features if you are using an HTTP-based mail service. However, some features do not work correctly. The features do not work correctly because HTTP-based mail messages are stored in a read-only state on the server. Therefore, we recommend that you do not use custom Outlook forms if you are using an HTTP-based mail service.Microsoft Visual Basic 6.0 MAPI controlsVisual Basic 6.0 MAPI controls are based on Simple MAPI and are no longer tested or supported starting in Outlook 2007. We encourage you to use a newer API for e-mail solutions.Note The standard support for Visual Basic 6.0 has expired. Common Messaging CallsCommon Messaging Calls (CMC) is not supported after the release of the Outlook e-mail security update in June 2000.Dynamic Data Exchange (DDE)Unlike other Office applications, Outlook does not support Dynamic Data Exchange (DDE) as a way to programmatically communicate with Outlook.Microsoft Outlook Express (Microsoft Windows XP)For a long time, the only supported API for Outlook Express was Simple MAPI. Simple MAPI is a set of functions and the related data structures that you can use to add messaging functionality to custom applications. The Simple MAPI functions are available in versions for C, for C++, and for Visual Basic.The documentation for Simple MAPI is provided in the Microsoft Exchange SDK. To view this documentation, visit the following Microsoft Web site: http://msdn.microsoft.com/en-us/library/aa142548(EXCHG.65).aspx Outlook Express uses Windows Address Book (WAB). For more
information about Windows Address Book, visit the following Microsoft Web site:
(http://msdn.microsoft.com/en-us/library/aa142548(EXCHG.65).aspx)
http://msdn.microsoft.com/en-us/library/ms629361.aspx
(http://msdn.microsoft.com/en-us/library/ms629361.aspx)
Windows Mail in Windows VistaIn Windows Vista, Windows Mail is the replacement for Outlook Express. For developer documentation, visit the following Microsoft Web site:http://msdn.microsoft.com/en-us/library/ms709546.aspx APIs that are available for Outlook Express 6.0 are also included
in this documentation.
(http://msdn.microsoft.com/en-us/library/ms709546.aspx)
Windows Live APIs and SDKsFor more information about the APIs that are related to e-mail and about the support options for Windows Live, visit the following Microsoft Web site:http://dev.live.com/ Microsoft Customer Support currently does not provide support for
these APIs.
(http://dev.live.com/)
Support for creating "Adjacent Windows" in OutlookMicrosoft provides a code sample and corresponding documentation for using Windows APIs to add user interface panes into Outlook 2003 and later versions of Outlook. This documentation is located at the following Microsoft web site:http://code.msdn.microsoft.com/OlAdjacentWindows
(http://code.msdn.microsoft.com/OlAdjacentWindows)
Microsoft understands that customers are already using the Windows API approach to integrate with Outlook, and the Outlook Social Connector also takes advantage of this kind of integration. Documentation for Outlook adjacent windows provides "best practice" guidelines to help avoid conflicts with other programs by using this approach, including the Outlook Social Connector. This sample code and the corresponding documentation are not supported by Microsoft. The Outlook product group does not consider this overall approach to be part of Outlook’s supported architecture in terms of developing custom solutions with Outlook. Instead, we recommend and support using other approaches that are more fully designed, tested, and documented to work with Outlook. Depending on the version of Outlook, these other approaches include Outlook custom forms, form regions, folder home pages, custom task panes, and the Outlook Social Connector (OSC) extensibility architecture. One key advantage of using these supported approaches is that developers will have a much better chance that they will not encounter compatibility issues when a newer version or service pack of Outlook is released. If you encounter issues when you use the information that is provided in the sample, you can post comments on the MSDN Code Gallery page for this download. However, Microsoft cannot guarantee that support will be provided for your issue. Support for Drag and Drop IntegrationAs a developer, you may wish to develop a custom solution that allows Outlook items to be dragged and dropped onto a Visual Studio form or other container that supports a drop operation. However, from a custom solution perspective, Outlook was not designed to support these types of scenarios and no Microsoft testing was done in this area. Therefore, Microsoft does not recommend or support developing a custom solution in this manner. Instead, Microsoft recommends that you use the Selection object available beginning in the Outlook 2000 object model. You can then implement a custom CommandBar button (Outlook 2000-2007) or custom Ribbon button (Outlook 2010) to handle the processing of those selected items.While unsupported, there is additional information located on the following blog: http://blogs.msdn.com/b/webdav_101/archive/2008/04/01/drag-and-drop-with-outlook.aspx
(http://blogs.msdn.com/b/webdav_101/archive/2008/04/01/drag-and-drop-with-outlook.aspx)
REFERENCESFor more information about named properties, visit the
following Microsoft Web site: http://msdn2.microsoft.com/en-us/library/ms529055.aspx
(http://msdn2.microsoft.com/en-us/library/ms529055.aspx)
PropertiesArticle ID: 266353 - Last Review: October 5, 2011 - Revision: 8.0 APPLIES TO
| Article Translations
|


Back to the top








