Click here to Skip to main content
Click here to Skip to main content

Retrieving Profile and Service Store using Extended MAPI

By , 6 Jul 2004
 

Introduction

This code is written to retrieve existing profiles and and associated service/s. This app uses Extended MAPI for retrieval of this information.

I take no responsibility for support or any kind of issues that may arise with this code.

Overall, there are very less articles available for Extended MAPI, that's the reason I am putting this code. I have tested this code on Win2000 and Outlook XP. UI is not good for this project. After retrieval of the profiles and services, this app will show some message boxes and nothing else. These message boxes will be of Profile Name and Message Store Services. Still I am working on this code and will try to make it more attractive.

I welcome all Extended MAPI developers to pass comments on this code:

Here are some details:

To deal with the Extended MAPI, we need to know a few basic things. In the following paragraphs, I will try to explain these basics.

The MAPI structure is a complex structure that requires understanding of C / C++ even for basic implementation. The MAPI subsystem exposes various interfaces using which we can interact with it. The IProfAdmin is one of the interfaces exposed by MAPI. This description is focused on IProfAdmin.

To start with, we need "MAPIInitialize" function that initializes the global data of MAPI DLL and increments the reference to the MAPI Subsystem. Once the MAPI sub system is initialized, we need to take control of the profiles to work with them. To create the administration profile, we need to declare a variable of “LPPROFADMIN” type and create the administration profile using “MAPIAdminProfiles” function.

Once we have the Admin profile, we can work with the profiles with administrative privileges.

As a basic, the MAPI exposes various tables using which we can retrieve the MAPI data. For profiles, the MAPI exposes the Profile Table. Almost all tables can be declared as “LPMAPITABLE”.

The data is stored in the tables in the form of rows and columns. Again, to reach to the data, we need to get the row set, individual row, and then the actual properties.

The LPMAPITABLE has a function “GetRowCount” using which we can retrieve the count of the data rows. Similarly, using “QueryRows” function, row set can be retrieved. Here, the row set variable should be declared as “LPSRowSet”. The LPSRowSet is an array of the individual rows.

Using normal for / while / do while (whichever is applicable) loop, we can iterate through all rows. The individual row should be declared as “LPSRow”. Each row is an array of properties, and each property is of “LPSPropValue” type. The LPSPropValue has two members namely Property Tag and Property value. The property tag is of unsigned long type and value is a union.

Please refer MAPI documentation for the property tags. These are already defined in MAPITags.h file and these tags are self descriptive. E.g., PR_DISPLAY_NAME.

Once we have the property, then we can compare the required tag with the retrieved tag and get the property value from the property structure.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Chandrashekhar Kulkarni
Web Developer
India India
Web Development:
.Net 2.0, VB.net, ASP.net, Classic ASP, VBScript, Javascript, HTML, DHTML,
 
OpenSource:
Perl, PHP, Linux, Apache, IIS.
 
Desktop Developement:
VB.net, VB 6, COM/DCOM, Winsock, MAPI, CDO, Outlook Object Model, LDAP, C, C++, Foxpro 2.5, Clipper.
 
Database:
MS SQL - Server, MySQL, PostgreSQL
 
Other:
Enterprise Architect, Microsoft Project, Rational Rose, UML.
 
Has Nine+ years of experience with IT and now working in Project Manager's Role.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Generalarticle... Pinmembervirtually_void9-Jul-04 2:26 
Hi there,
 
The idea is good and I fully support the thought, but since we all know that MAPI is complex, you need to supply a proper article where you describe what you are doing and how it works, otherwise, the people reading your code will not understand how it works, they will just know that these couple of lines will list the profiles.
 
I wrote an article some time ago (http://www.codeproject.com/Purgatory/Outlook-addin.asp), it's en extremely long article and I guess that there are not that many developers here that work with MAPI because it didnt get rated very well, although I explained stuff in a very long and basic way...anyhow...
 
Keep up the good work and I'm looking forward reading more articles about MAPI.
 
/Karl

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 7 Jul 2004
Article Copyright 2004 by Chandrashekhar Kulkarni
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid