ews-java-api
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.
I am using streaming notifications for the Calendar folder for Created, Copied, Deleted, Modified and FreeBusyChanged event types. The timeout period is 15 minutes. Every 15 minutes there is an...
After taking a look at the `CalendarView` and `ItemView`, I noticed the difference of `CalendarView` only inheriting from `ViewBase` while `ItemView` is a child of `PagedView`. I get the following...
I am trying to fetch the size of an email message. Kindly find the below code ItemView view = new ItemView(Integer.MAX_VALUE, 0,OffsetBasePoint.Beginning); FindItemsResults findResults = service.findItems(WellKnownFolderName.Inbox,view); for (Item item :...
I am getting the calendar data for a number of users in my organization. For most of the users my code works fine, but I just came across a user...
An e-mail has a Distribution List (DL) in its To address field. When this e-mail is imported using EWS, the e-mail addresses in the Distribution List are not expanded. How...
I am Unable to Set response type for attendee(Accept,Deny,Unknown) of an event using EWS jar in java
I am unable to set the response type of a calendar event using EWS jar. I can find method like getResponseType() to get the response of attendee for an event(Accept,Unknown,Deny)....
I started out getting the App-only token to ensure my app is authorized by the admin to silently perform actions across all users. I have been using the graph APIs...
The follwing time-zones are not known by the OlsonTimeZone. - America/Punta_Arenas - Europe/Astrakhan - Europe/Kirov - Europe/Saratov - Europe/Ulyanovsk Because of this the test case OlsonTimeZoneTest is failing.
I am using the function getUserAvailability to get a total list of CalendarEvents for a list of emailboxes (Attendees). My problem is that i can acces all the information i...
I am an intern writing an implementation plan to add impersonation features to an existing EWS program. This existing program was writting using the 2.1 snapshot of EWS JAVA API....