How to search items across folders in office 365 using EWS Java API

458 views Asked by At

I'm trying to search items across folders in office 365 using EWS Java API.

I'm using EWS Java API 1.3 version (https://github.com/OfficeDev/ews-java-api)

I have seen the following link and tried like that in Java but still this one also not working

Exchange Web Services (EWS) FindItems within All Folders

Regards Ramesh

1

There are 1 answers

1
Glen Scales On

In 2013 and Office365 the best thing to use to search a Mailbox is eDiscovery which you can use from EWS http://msdn.microsoft.com/en-us/library/office/jj190897(v=exchg.150).aspx . There is nothing in the Java API to use the eDiscovery SOAP operations so you would need to either build those yourself or use raw SOAP or generate some proxyclass to use it.

Cheers Glen