In previous versions of Exchange accessing the Directory (or Global Address List) with EWS was limited to just resolving a specific entry or expanding a Distribution list. In Exchange 2013 the concept of the persona's has been introduced http://msdn.microsoft.com/en-us/library/exchange/jj190898%28v=exchg.150%29.aspx. To distill this down a little a persona allows you to have a Contact that can pull its related information from multiple sources while previously everything was just stored in one object in the Exchange Store.
(or you could also use LDAP to get this information)
Once you have the address list Id your ready to code, there are no methods in the EWS Managed API for this operation so you need to use WSDL ProxyCode or RAW Soap to use this operation. For example the following is a C# sample for using the FindPeople operation to enumerate through the address list 100 entries at the a time
There are a number of new EWS operations to go along with personas and the Unified Contact Store the most interesting of these is the FindPeople operation which allows you to do something you couldn't do previously which is enumerate the entire GAL (or any other address list). At this point I should make the point that the GAL is just one of the data sources that FindPeople can search you can also include searching the local contact folders.
To able to search an Address List (including the GAL but it will work with any of the Address Lists like ("All Room", "All Contacts") you need to know the AddressList Id. However this is one part of these new operations that really needs improvement because at the moment there is no way in EWS to get a list of AddressList Id's. While the FindPeople operation is used in OWA in 2013 they have a custom command in OWA called "GetPeopleFilters". So if you want to use the FindPeople operation you need to either Get the AddressList id from using OWA and capturing it with fiddler eg
(If your using Office365 this is the only way you can get this information that i know of as the Get-AddressList cmdlet or LDAP/AD access isn't available in the cloud)
In a OnPrem environment you can just use the Get-AddressList cmdlet eg
(or you could also use LDAP to get this information)
Once you have the address list Id your ready to code, there are no methods in the EWS Managed API for this operation so you need to use WSDL ProxyCode or RAW Soap to use this operation. For example the following is a C# sample for using the FindPeople operation to enumerate through the address list 100 entries at the a time
- FindPeopleType fpType = new FindPeopleType();
- IndexedPageViewType indexPageView = new IndexedPageViewType();
- indexPageView.BasePoint = IndexBasePointType.Beginning;
- indexPageView.Offset = 0;
- indexPageView.MaxEntriesReturned = 100;
- indexPageView.MaxEntriesReturnedSpecified = true;
- fpType.IndexedPageItemView = indexPageView;
- fpType.ParentFolderId = new TargetFolderIdType();
- DistinguishedFolderIdType contactsFolder = new DistinguishedFolderIdType();
- AddressListIdType adList = new AddressListIdType();
- adList.Id = "2117949e-abe8-4915-91eb-6b9f867fd8de";
- fpType.ParentFolderId.Item = adList;
- FindPeopleResponseMessageType fpm = null;
- do
- {
- fpm = esb.FindPeople(fpType);
- if (fpm.ResponseClass == ResponseClassType.Success)
- {
- foreach (PersonaType PsCnt in fpm.People) {
- Console.WriteLine(PsCnt.EmailAddress.EmailAddress);
- }
- indexPageView.Offset += fpm.People.Length;
- }
- else {
- throw new Exception("Error");
- }
- } while (fpm.TotalNumberOfPeopleInView > indexPageView.Offset);