ews-java-api icon indicating copy to clipboard operation
ews-java-api copied to clipboard

A java client library to access Exchange web services. The API works against Office 365 Exchange Online as well as on premises Exchange.

Results 118 ews-java-api issues
Sort by recently updated
recently updated
newest added

Hey guys, I start to use this few days ago. I wanna now, if I start to sync some folder without syncState, which part of items will be returned? Oldest?...

There are important files that Microsoft projects should all have that are not present in this repository. A pull request has been opened to add the missing file(s). When the...

Please accept this contribution adding the standard Microsoft SECURITY.MD :lock: file to help the community understand the security policy and how to safely report security issues. GitHub uses the presence...

I have built a conference scheduling app that uses ews-java-api to browse and book meetings. The app will run fine until a certain number of requests and mid-stream the Exchange...

Setting categories doesn't seem to work ``` EmailMessage msg; msg = new EmailMessage(exchangeService); msg.setCategories(new StringList("Blue Category")); ``` Also, there doesn't seem to be a way to create a new category

ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP1); ExchangeCredentials credentials = new WebCredentials("xxx", "xxx"); service.setUrl(new URI("https://mail.xxx.com/EWS/Exchange.asmx")); service.setCredentials(credentials); Folder msgFolderRoot = Folder.bind(service, WellKnownFolderName.Root); int childFolderCount = msgFolderRoot.getChildFolderCount(); FolderView folderView = new FolderView(childFolderCount); FindFoldersResults findResults...

We are using com.microsoft.ews-java-api. **Is it possible that get access token after user login in first time?** Currently, user need to login every time when he/she wanna get calendar events...

See https://github.com/OfficeDev/ews-java-api/issues/773 Basically this change does the following: - Change two import statements from javax to jakarta - Add required dependencies to -- jakarta.xml.bind:jakarta.xml.bind-api (3.0.1) -- jakarta.xml.ws:jakarta.xml.ws-api (3.0.1) Unfortunately I...