Reading a list of letters and folders from a Microsoft Exchange server using objective-c

I am new to programming iOS applications, I want to programmatically read the list of folders and mail from a Microsoft Exchange server.

Anyone can direct me in the right direction.

thanks

+4
source share
1 answer

You can use the EWS, EAS, or OWA service for Exchange.

1) if you want to use the OWA service, check the link below, you will get a shell class for OWA exchange.

https://github.com/jgallen23/OWAParser

2) FFP

For Ews, I converted Services.wsdl (describes the contract between the client and the server) to objetiveC using sudzc and made changes to the code generated by Sudzc.

Check out the links below.

// request to read mail

http://msdn.microsoft.com/en-us/library/exchange/aa566107(v=exchg.140).aspx

// request to get a list of folders

/ http://msdn.microsoft.com/en-us/library/exchange/aa564829(v=exchg.140).aspx

3) EAS

Hope that below lnik will be useful for developing EAS exchange. http://blogs.msdn.com/b/webdav_101/archive/2011/09/28/new-to-exchange-activesync-development.aspx

+3
source

All Articles