Questions tagged [ews-managed-api]

Exchange Web Services (EWS) API that can be used to access Exchange resources.

Microsoft Exchange Server 2007 introduces Exchange Web Services (EWS), a API that can be used to access Exchange resources. EWS is a SOAP-based XML Web service that can be accessed remotely from any operating system and any language that can send requests over HTTPS.

Creating a new folder in the Inbox

Folder folder = new Folder(service); folder.DisplayName = "My new folder"; folder.Save(WellKnownFolderName.Inbox);

Creating and saving a draft e-mail message

EmailMessage message = new EmailMessage(service); message.Subject = "Hello from the EWS Managed API"; message.Body = "Now that's easy!"; message.ToRecipients.Add("someone@fabrikam.com"); message.Save();

370 questions
0
votes
0 answers

Exchange Web Services API Linking emails in a conversation?

I'd like to be able to log a unique id from an email with a delivery receipt in a database that i can then use to link the delivery receipt email when it comes back from the recipient. I tried using the Thread-Index Internet Message Header, but I…
user609926
  • 801
  • 2
  • 12
  • 25
0
votes
1 answer

Exchange Web Service is Supported For Exchange2007_SP3

I am trying to get inbox folder informations using EWS. ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2007_SP1);**//Here Exchange2007_SP3 version not…
0
votes
1 answer

StreamingNotifications not working with Office 365 / Exchange Online

I have developed a small console application to test EWS StreamingSubscriptions / Notifications. In the past we used Push Notifications but ,in theory, when using StreamingNotifications I should be able to avoid creating a listener http endpoint and…
0
votes
0 answers

Exchange Web Services FindItem (by body search criteria) not finding email with larger body

I have a routine (pretty standard) from http://msdn.microsoft.com/en-us/library/exchange/dd633693(v=exchg.80).aspx which I use to return a list of emails that contain a specific content ("homecoming") in the body of the…
Carl Clark
  • 291
  • 4
  • 13
0
votes
1 answer

SearchFilter Logical Operators AND and Or

How to Perform SearchFilter Logical Operator AND and OR Programatically based on the operation selected by user?? If the user gives a select like this "[To]ContainsSubstring'Ram' OR [To]containssubstring'lak' how to perform it?
user1891567
  • 681
  • 2
  • 10
  • 15
0
votes
1 answer

Suggestion for local data structure for EWS?

I'm developing a CRM that will store emails from an exchange server via EWS Managed API on a local DB. I'm very new to EWS. Have you done anything similar? What data structure do you suggest for items? Any reason I should have different tables for…
Iternity
  • 872
  • 3
  • 12
  • 27
-1
votes
1 answer

Microsoft EWS api SyncFolderItems (mail) response ErrorInvalidSyncStateData but SyncState is correct

I used Microsoft EWS api SyncFolderItems to get mail changes, but got ErrorInvalidSyncStateData after several successful api calls. The given SyncState request parameter is correct because it is the reponse from the last successful call. The error…
Wen Hsiao
  • 11
  • 4
-1
votes
1 answer

One tough issue regarding of how to create a calendar group by EWS managed API

I have been looking for one solution how to create a calendar group by EWS Managed API for 2 days , however , it is painful that i still could not figure out how to implement it . Thanks in advance for your help!
-1
votes
1 answer

Not able to create rooms using Exchange Webservice Managed API

https://msdn.microsoft.com/en-us/library/office/hh532568(v=exchg.80).aspx Why does Exchange Webservices Managed API does not support creating of rooms?
-1
votes
1 answer

How to efficiently check if a message still exists in Exchange?

We have a program that keeps a local copy of a potentially large number of mailboxes by monitoring configurable journal streams through the Exchange Web Service Managed API. These journal streams give us an efficient way to ingest the…
Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
1 2 3
24
25