ews-managed-api Questions
13
I am using Auto discover service Url for a specified e-mail address.
ExchangeService Service = new ExchangeService(ExchangeVersion.Exchange2010);
Service.Credentials = new WebCredentials("[email&#...
Guadalupeguadeloupe asked 25/2, 2013 at 10:56
6
Solved
I am working with the Exchange Web Services Managed API, with contact data. I have the following code, which is functional, but not ideal:
foreach (Contact c in contactList)
{
string openItemUrl ...
Informal asked 13/5, 2010 at 19:57
2
I'm trying to read the content of an email in HTML. My problem though, is that my body is not very unique though I'm loading the EmailMessageSchema.UniqueBody.
Here's my expected solution:
var pr...
Offcolor asked 13/3, 2017 at 11:58
5
Solved
I have a C# program that manages a resource mailbox by retrieving attachments and categorizing emails into sub-folders. An issue came up recently where the client wishes to send us signed emails, s...
Tymes asked 7/2, 2014 at 13:38
3
Solved
I'm using the EWS Managed API to send emails via exchange. When sending an item with attachments I first do a CreateItem and then a SendItem. Mostly this works fine but sometimes items are left in ...
Cusped asked 17/5, 2016 at 17:44
2
Solved
I'm in the process of writing a simple console app that monitors a particular exchange mailbox, and when emails meeting particular criteria are received, the app will download an XML file attachmen...
Bignonia asked 14/6, 2010 at 11:31
2
Solved
The EWS Managed API has a handful of functions for retrieving and managing email conversations (aka email threads). Unfortunately, a large part of them work only against new versions of Exchange (2...
Haply asked 26/4, 2014 at 23:13
6
As an "EWS Managed API Newbie", I'm having some problems finding examples and documentation about creating and managing Tasks.
I've managed to create a task for myself without a problem. However, ...
Hillman asked 9/7, 2010 at 0:27
4
I am trying to use Exchange Web Services to access calendar data, but I can't seem to figure out how to access calendars which have been shared by other users when it is not their default calendar....
Alkmaar asked 18/11, 2010 at 17:4
1
I've got the following code:
var startProp = new ExtendedPropertyDefinition(DefaultExtendedPropertySet.Meeting, "DTSTART", MapiPropertyType.String);
var endProp = new ExtendedPropertyDefinition(De...
Agger asked 7/8, 2016 at 12:48
1
Solved
I am accessing appointment attendees from an EWS Calendar. I tried:
cView.PropertySet = new PropertySet(AppointmentSchema.Subject,
AppointmentSchema.Start,
AppointmentSchema.End);
But my appoi...
Bind asked 27/7, 2016 at 18:36
2
Solved
I am using EWS managed API to do push subscription. Works fine
Now I want to unsubscribe
The managed API docs http://msdn.microsoft.com/en-us/library/office/dn458791(v=exchg.150).aspx say use ser...
Coycoyle asked 7/2, 2014 at 19:28
1
I have a problem with loading MimeContent property using EWS with Exchange Server 2013. Here's what I do:
var propertySet = new PropertySet{
ItemSchema.Subject,
ItemSchema.TextBody,
ItemSchema....
Koressa asked 18/4, 2016 at 9:53
8
I'm using Exchange Web Services Managed API 1.1 to connect to Exchange server 2010 and then find out new emails received. Now I want to save a copy of the .msg file to a folder on the disk.
I do n...
Bracing asked 9/6, 2011 at 12:58
1
I am using EWS Managed API 2.2 and it does not show the Exchange version 2016 in its enumeration. I can see the versions upto Exchange 2013. So how can I connect to Exchange Server 2016? Is the API...
Slothful asked 13/1, 2016 at 18:15
1
When I loading properties of multiple exchange items by ExchangeService.LoadPropertiesForItems method, Exchange skip some properties of items attachments in response:
<t:CalendarItem>
<t...
Conjoint asked 8/12, 2015 at 11:4
1
Solved
If I am using the Exchange Web Services Managed API v2.2 to connect with O365 then which ExchangeVersion should I use?
It seems to me that it would make sense that I should always use the latest v...
Sf asked 23/9, 2015 at 9:18
2
Solved
Every Item (e.g. Task) in Exchange Web Services (EWS) Managed API has an Id property of type ItemId, which then has a String property named UniqueId (inherited from ServiceId — phew, got that...
Deherrera asked 2/4, 2013 at 17:55
3
Solved
The ViewSize is specified at constructor level. I found the documentation for the constructor, but it doesn't say how big the maximal size is.
Rectrix asked 10/10, 2012 at 6:50
2
Solved
I am trying to find items from deleted items folder given the items unique id
ItemId id = new ItemId("zTK6edxaI9sb6AAAQKqWHAAA");
SearchFilter.IsEqualTo filter = new SearchFilter.IsEqualTo(ItemSch...
Melesa asked 13/12, 2013 at 15:45
1
Solved
Using Exchange push notifications I've been creating a service that syncs over calendar data from Office365 users. I've been using a combination of the Office365 Calendar REST API (to get and manag...
Numeration asked 6/5, 2015 at 16:22
3
Solved
Is it possibly to access the folders and items of other Exchange accounts other than the one of the logged in user?
Can I do this via Exchange Web Services Managed API?
Cattail asked 24/9, 2010 at 12:35
2
Solved
I am about to write a ews-application to connect exchange with another calendar programm. What occured to me, how do I get to know, which appointments get deleted on exchange? Is there a way to tel...
Kollwitz asked 14/9, 2011 at 14:48
3
Solved
In EWS Managed API is it easy to create an appointment for a specific user:
ExchangeService service = new ExchangeService();
service.Credentials = new NetworkCredentials ( "administrator", "passwo...
Comprehensive asked 10/3, 2010 at 18:53
1
Is it possible to save an ItemAttachment? For FileAttachment we using the following EWS Managed API Code to save,
if(attachment is FileAttachment)
{
FileAttachment fAttachment = new FileAttachm...
Tetryl asked 1/2, 2013 at 11:48
1 Next >
© 2022 - 2024 — McMap. All rights reserved.