Tagged Questions

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 ...

learn more… | top users | synonyms

10
votes
2answers
4k views

Extract Exchange 2007 Public Calendar Appointments using Exchange Web Services API

We have a public calendar for our company set up in an Exchange 2007 Public Folder. I am able to retrieve my personal calendar appointments for the current day using the code below. I have searched ...
10
votes
3answers
4k views

How can I detect if this dictionary key exists in C#?

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 ...
8
votes
2answers
207 views

How to force garbage collection of object you can't dereference?

We are using EWS Managed API which polls MS Exchange for new mail messages after a given interval. With each invocation of the polling call (PullSubscription.GetEvents()) - Microsofts API is failing ...
7
votes
4answers
3k views

EWS 2010: Public Folder Problem using .NET

I've recently coded a .NET Console app using C#. It's purpose was to read the emails within a specific folder, parse them for specific values and save them to a database. Our email system, at the ...
5
votes
2answers
411 views

Techniques for integrating an ASP.NET intranet app with the Outlook calendar

I can ignore the braying of my users no longer. They want a task scheduling system and at some point I have to deliver. I was thinking of making my own (can't be hard), but then users would have two ...
5
votes
2answers
2k views

C# create calendar item with EWS, how to get back the results?

I build an app based on this site http://msdn.microsoft.com/en-us/library/dd633661%28v=EXCHG.80%29.aspx appointment.Subject = "Status Meeting"; appointment.Body = "The purpose of this meeting is to ...
5
votes
3answers
2k views

Folder.Bind - “Id is malformed” - Exchange Web Services Managed API

I'm passing the Folder.Id.UniqueId property of a folder retrieved from a FindFolders query via the query string to another page. On this second page I want to use that UniqueId to bind to the folder ...
4
votes
1answer
1k views

Exchange Web Services Managed API: Accessing other users items

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?
3
votes
0answers
614 views

Multiple PushNotification Subscriptions some work properly and some don't

I tried posting this on the Exchange Development forum and didnt get any replies, so I will try here. Link to forum I have a windows services that fires every fifteen minutes to see if there is any ...
3
votes
2answers
2k views

How do I send HTML (multipart/alternative) from Exchange Web Services (2010 SP1)

This issue came to light as I was trying to send an HTML message with inline images (attachments) through EWS. However I have backed off to the simplest form and found that I cannot even send HTML ...
3
votes
1answer
276 views

How do i find out if an appointment is private

I use Exchange Server Managed API. How do I find out if an appointment is private? There doesn't seem to be a method or property in the "Appointment" class.
3
votes
2answers
292 views

Exchange Appointment Types

I use the following code to save an appointment via Exchange Web Services Managed API: Appointment appointment = new Appointment(m_exchangeService); appointment.Subject = subject; appointment.Body = ...
3
votes
5answers
2k views

Creating Tasks for other users using Exchange Web Services (EWS) Managed API

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, I ...
3
votes
1answer
929 views

Are extra installs needed to access Managed EWS on an Exchange 2010 server?

Does the system administrator need to install anything extra to get EWS Managed API working for clients on Exchange 2010? At the moment I am getting problems just using AutoDiscover via the managed ...
2
votes
1answer
100 views

How can I remove a contact CompleteName.Title with EWS managed api v1.1?

Using EWS managed api v1.1, I can successfully save/set the contact "Title" or honorific (if you prefer) to a non-empty value, but I can't figure out how to remove or set it back to an empty ...
2
votes
2answers
173 views

Is it possible to build iPhone app with MonoTouch using Microsoft managed EWS?

I'm trying to build iOS app using Microsoft EWS managed API. I've downloaded the msi from http://www.microsoft.com/download/en/details.aspx?id=13480 and copied the DLL under the solution folder. When ...
2
votes
1answer
81 views

EWS Managed API and SQL Server - Login failed. The login is from an untrusted domain and cannot be used with Windows authentication

I have a process that uses EWS Managed API to save email messages as eml files. Like this: var propertySet = new PropertySet(BasePropertySet.FirstClassProperties, ItemSchema.MimeContent, ...
2
votes
2answers
733 views

Using Exchange managed api (EWS) to monitor mailbox attachments

I plan on creating a windows service that will monitor an exchange mailbox for mails with particular subject. The attachments from such emails need to be stored in a specific folder on the network ...
2
votes
1answer
264 views

How can I set MHT-body for mail sending through Exchange Server?

I have a message as an MHT-File. Now I am searching for a way to set this for a mail to send through Exchange Server (with Exchange Web Service). When I set it as a MIME-Content, the parts (picture ...
2
votes
2answers
1k views

EWS: Access shared calendars

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. ...
2
votes
1answer
2k views

Error when I try to read/update the .Body of a Task via EWS Managed API - “You must load or assign this property before you can read its value.”

I am using the Exchange Web Services Managed API to work with Tasks (Exchange 2007 SP1). I can create them fine. However, when I try to do updates, it works for all of the fields except for the ...
2
votes
1answer
2k views

Exchange Web Services - Processing Messages and Accessing Attachments

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 attachment, ...
2
votes
1answer
369 views

Due Date set via EWS is wrong in reminder popup

I'm having some trouble using EWS with tasks and reminders, specifically, the due date. When I run my code, shown below, the task is added to my exchange account and I can see it fine in outlook. All ...
2
votes
1answer
488 views

Exchange: Is it possible to search for a custom Extended Property across all mailboxes?

My team and I are in the process of integrating our custom CRM (built entirely on the MS stack) with Exchange. A key part of that integration is binding Exchange items (namely meetings and tasks) to ...
2
votes
2answers
2k views

Exchange Web Services and Property Sets

I need to retrieve calendar information by invoking the Exchange Web Service in BPOS. I'm using a CalendarView with a PropertySet to retrieve as little data as possible. However, property sets seems ...
1
vote
1answer
41 views

Reading 'Contacts…' from an Exchange Appointment

In Outlook, I can open an appointment and follow File -> Properties in the ribbon to view the properties. In the properties window, there is the 'Contacts...' button and textbox where you can apply ...
1
vote
2answers
164 views

EWS Managed API 1.1 - Pull Subscriptions Memory Leak

Has anyone else discovered a memory leak issue with Pull Subscriptions (ExchangeService.SubscribeToPullNotifications()) in Exchange Managed Web Services API? When calling PullSubscription.GetEvents() ...
1
vote
1answer
65 views

StreamingSubscritionConnection throwing Key not found exception

I am developing an application which uses the StreamingSubscriptionConnection object in the EWS managed API. When the network connection is lost for a certain period of time it throws an exception ...
1
vote
0answers
266 views

Exchange Web Services (EWS) API “To” header for alias

I have an inbox set up in exchange, hello@mycompany.com Additionally, there is an alias for this, news@mycompany.com, so all emails to the news address end up in the hello inbox. Ideally, I want to ...
1
vote
1answer
467 views

How to set the contact title using Exchange Web Services Managed API

I'm trying to create a new contact using the EWS API. I can set all the values i needed except the contact title property. I tried the code: oContact = new Contact(oService); oContact.GivenName = ...
1
vote
1answer
384 views

EWS error: “The request failed schema validation: The required attribute 'FieldURI' is missing.”

I'm using EWS to bind to a specific message in my mailbox on Exchange. All was going fine until I added an extended property to my request. How do I set this 'FieldURI' property? (which none of the ...
1
vote
1answer
401 views

Problem retrieving Appointment.StartTimeZone through EWS Managed API on Exchange 2007 SP1

I can retrieve the Appointment.TimeZone for items with: PropertySet propertiesAll = new PropertySet(BasePropertySet.IdOnly, ..., AppointmentSchema.TimeZone, AppointmentSchema.StartTimeZone, ...); ...
1
vote
1answer
2k views

Exchange Web Services: Batching with FindItemsResult<Item>

I'm writing an app to process email attachments, using Exchange Web Services. The general structure of my problem area is as follows: public static void Main() { FindItemsResults<Item> ...
1
vote
1answer
381 views

Getting a EmailMessage Attachment via FileStreamResult

I have this code here where I retrieve an attachment from an Email Message that is on the Exchange Server using EWS Attachment attachment = message.Attachments.Single(att => ...
1
vote
1answer
347 views

How do I discover all mailboxes for an Exchange Server using Exchange Web Services?

I'm using Exchange Web Services Managed API 1.0 to access the Exchange servers (2007) in my organization. I need to iterate over all the mailboxes on a given server. I haven't seen a way to get the ...
1
vote
1answer
383 views

Cross folder searching of Exchange using Exchange Web Services

Is there a way to search Exchange using the EWS Managed API for all email messages across ALL folders. I'm using the FindItems API call -- but that appears to require that the search be confined to a ...
1
vote
1answer
820 views

Exchange Web Services (Managed API) vs. WebDav Performance Question

I'm new to Exchange (2007) development so please bear with me. :-). There appear to be a myriad of technologies for Exchange development -- the latest being Exchange Web Services -- and it's related ...
1
vote
2answers
341 views

How can I narrow down the point of failure in this ASP.NET ASMX to Exchange 2010 Managed API setup?

Since working with Exchange Web Services 2010 is a bit ridiculous, especially from anything other than .NET, I've been tasked with wrapping some functionality up in a SOAP web service that acts as a ...
1
vote
1answer
910 views

Exchange 401 Unauthorized

I am trying to connect to our exchange 2007 server. I have placed lots of exception handling to catch any errors and put them in the application log. Firstly, I have a function which ensures that a ...
1
vote
0answers
222 views

EWS Managed API: Only one usage of each socket address (protocol/network address/port) is normally permitted

We're developing software that allows our custom scheduling application (master role) to synchronize with Microsoft Exchange Server 2010/2007 (slave role). Our solution is based on .NET 4.0, the EWS ...
1
vote
2answers
1k views

How do I get folder size with Exchange Web Services 2010 Managed API?

I'm attempting to use EWS 2010 Managed API to get the total size of a user's mailbox. I haven't found a web service method to get this data, so I figured I would try to calculate it. I found one ...
1
vote
2answers
2k views

Using EWS Managed API to create appointments for other users?

In EWS Managed API is it easy to create an appointment for a specific user: ExchangeService service = new ExchangeService(); service.Credentials = new NetworkCredentials ( "administrator", ...
1
vote
1answer
546 views

How to get Item web client id in Exchange 2007 using EWS Managed API

I have an EmailMessage item saved in Draft folder. I need to open an editing form of it in browser, but cannot found id that is used by web client. In documentation there is such property, but it ...
1
vote
1answer
758 views

Using ExchangeService to Add Appointment Occurances

The target is someone's Exchange Calendar (2007). I want to add a simple "Appointment Occurance" to someone's calendar. This code works (I am using the Microsoft.Exchange.WebServices.dll): service = ...
0
votes
1answer
129 views

EWS-manged: Fetch required and optional attendees of appointments

I am having a issue here :-) As far as I am now, I know how to fetch appointments from exchange server, BUT as soon as I want to see the required and optional attendees, these fields are empty ... I ...
0
votes
1answer
138 views

Exchange Web Service managed, get deleted appointments

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 tell? ...
0
votes
1answer
276 views

EWS Managed API: Impersonation of users from several servers in the same domain

Does anybody know how impersonation should be configured or if it is even possible for such configuration: Two (or more) servers ExchangeServer 2010/2007 (can be the same version can be different, ...
0
votes
2answers
135 views

How are meeting appointments connected and how can I use this connection?

When I create a meeting and invite some users and they accept, the meeting appointments are in some way internally connected and when I change one, the other changes too. Can I use or extract this ...
0
votes
1answer
181 views

EWS Managed API and Store EntryID of item

I want to retrieve the Store EntryID (PR_STORE_ENTRYID) of an item through EWS Managed API in hexadecimal form. I manage to retrieve the binary using an ExtendedPropertyDefinition with tag 0x0FFB, ...
0
votes
1answer
320 views

Why does EWS Managed API SyncFolderItems not return recurring appointments

I'm using the managed API of EWS to synchronize a scheduling application with exchange calendars. I get all normal meetings fine, but I am not getting any repeating/recurring appointments. My code ...

1 2