TusharPanda
TusharPanda

Reputation: 211

Trying to read an account's inbox from MS exchange server using MAPI

I am trying to figure out an open source API which I can use in my java program to read unread mails from my inbox configured in MS Exchange server. If it would have been POP3 or IMAP to read mails from inbox, I could have used Javamail api. But unfortunately We use MAPI protocol.

Is there an open source API which can serve my purpose ?

(Note - my client is not open for any commercial api so moonrug and APIs like those are out of question)

Upvotes: 2

Views: 2048

Answers (1)

Dmitry Streblechenko
Dmitry Streblechenko

Reputation: 66245

You can use Exchange Web Services (which is pure HTTP) - see http://msdn.microsoft.com/en-us/library/office/dd877045(v=exchg.140).aspx

Upvotes: 2

Related Questions