Connector Writing

G

George Sexton

Can anyone point me to some documentation on how to write a connector for
Outlook? I'd like to intergrate the calendar with a web based calendar.
 
S

Sue Mosher [MVP-Outlook]

Huh? Weren't you asking about writing a MAPI connector? (Hard to know since
you didn't quote earlier parts of the discussion. ) That's a totally
different component from an Exchange client extension.
--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
G

George Sexton

Huh? Weren't you asking about writing a MAPI connector? (Hard to know since
you didn't quote earlier parts of the discussion. ) That's a totally
different component from an Exchange client extension.

Let me try again.

I have a web based calendar that Outlook users would like to have events
added to Outlook transparently be placed into the web calendar, and events
placed on the web calendar to be transparently placed into Outlook.

Exchange is not involved.

What approach would you recommend?
 
G

George Sexton

You didn't mention what versions of Outlook you want to support or what
programming skills you have (C++, VB, Delphi, etc.) Both are key
determinants.

I would like to support Outlook 2000 and higher, although I could go to
2002.

I have strong development skills in Delphi, and weaker skills in Visual
C++. I prefer to use Delphi over C++. I don't have a lot of experience in
VB, though I can get along.
 
S

Sue Mosher [MVP-Outlook]

You didn't mention what versions of Outlook you want to support or what
programming skills you have (C++, VB, Delphi, etc.) Both are key
determinants.

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
S

Sue Mosher [MVP-Outlook]

I have a web based calendar that Outlook users would like to have events
I can think of at least three ways to do this:

-- COM add-in that copies data up to the web calendar when items are added
or changes and periodically syncs deletions from Outlook and any new/changed
items from the web calendar. (Outlook provides no useful events for
deletions.)

-- Exchange client extension that does the same thing. Harder, because it's
Extended MAPI, but potentially more robust because I think you get better
handling of additions and deletions.

-- Separate MAPI store that connects directly to the web calendar and
exposes the web calendar's data in a separate store in Outlook, in other
words, not in the user's normal calendar folders. You'd have to figure out
how you want to persist the data when Outlook is not online.

None of these approaches is particularly easy. Obviously, a lot depends on
the web calendar's programming interface.

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top