Reputation: 211
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
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