1

We have a Microsoft Exchange Server 2007 running. We manage several contacts inside of the public contacts we access via Outlook Clients.

We have some Information of Contacts in separate MySQL databases.

I was wondering if some kind of API exists (from Microsoft Exchange) to transfer Information from those MySQL databases or any other source into the exchange "data store".

John Gardeniers
  • 27,458
  • 12
  • 55
  • 109
Björn
  • 425
  • 2
  • 4
  • 9
  • Transfer info the mail store? I highly doubt it. – DanBig Aug 01 '12 at 17:05
  • 1
    You could probably craft a PowerShell script to synchronize the data. There's plenty of Ex PS examples out there, and I'd be reasonably sure there's a MySQL ODBC that PS can use as well. It would be nasty complicated however, and I've not head of such a script before. – Chris S Aug 01 '12 at 17:49

1 Answers1

4

Your best bet is going to be the Exchange Managed Web Services API. It's .NET based but you could easily use it via PowerShell as well.

http://msdn.microsoft.com/en-us/library/dd637749(v=EXCHG.80).aspx

Brent Pabst
  • 6,069
  • 2
  • 24
  • 36