Tagged Questions
Exchange Web Services (EWS) is an extensibility point for clients that connect to the Exchange server and consume information about user availability, and the manipulation of items that are located in the Exchange data store.
14
votes
1answer
601 views
How do I retrieve just recurring event masters using Exchange Web services?
I'm using a CalendarItemType view to retrieve calendar items. The only items I care about are those that I've created and I know that they are all weekly recurring items. I'm able to get each ...
8
votes
2answers
183 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
1answer
301 views
How to download unread email attachment using Exchange web service in ASP.NET?
I am using Exchange Server 2007 SP3
and I am able to connect exchange web service using following code
ExchangeServiceBinding esb = new ExchangeServiceBinding();
esb.RequestServerVersionValue = new ...
6
votes
1answer
10k views
Getting started with Exchange Web Services 2010
I've been tasked with writing a SOAP web-service in .Net to be middleware between EWS2010 and an application server that previously used WebDAV to connect to Exchange. (As I understand it, WebDAV is ...
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
2answers
795 views
Exchange Web Services - Create appointment with resource but attendees cannot see resource
I'm trying to play around with Exchange in order to integrate a room booking system with it.
I've created a room mailbox and have set it so that it auto-accepts appointment requests.
When creating ...
4
votes
1answer
197 views
EWS API - Create calendar and share with reviewer permissions
I'm having some trouble on creating and share a calendar with review permissions using Exchange Webservice API .NET.
At the moment this is my code:
Folder addCalendar = new Folder(service);
...
4
votes
2answers
553 views
Difference between sending a MailMessage to an Exchange Server and sending to an SMTP server
I am trying to use the MailMessage class to construct e-mail messages that are transmitted to an SMTP server for delivery using the SmtpClient class.
My email is configured on outlook through an ...
3
votes
1answer
61 views
Display new e-mail in Outlook
Windows application invokes business logic
Business logic creates new e-mail using Exchange Web Services and returns Entry ID of e-mail to Windows application
Windows application attempts to find and ...
3
votes
2answers
441 views
Exchange Web Services (EWS) FindItems within All Folders
I am using the following code to find all the emails sent from a user, however this only searches the main Inbox folder and doesn't check any sub-folders. I would like to search all the mail items ...
3
votes
1answer
362 views
Marking an email message as read using Exchange Web Services 2007
I am subscribed to an email account using Exchange Web Services 2007 and processing attachments as new emails come in. I would like to mark those emails as "read" on the server after I'm done ...
3
votes
2answers
426 views
Exchange EWS Managed API - Undelivarable mail notification does not have the DateTimeReceived property
When finding items from a Exchange 2010 Server journaling inbox, there are some notifications on undelivered mails.
When processing these emails and trying to read the DateTimeReceived property, I ...
3
votes
0answers
560 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
1answer
3k views
getting autodiscover URL from Exchange email address
I'm starting with an address for an Exchange 2007 server:
user@domain.exchangeserver.org
And I attempted to send an autodiscover request, as documented at MSDN.
I attempted to use the generic ...
2
votes
0answers
31 views
API equivalent for New-MailContact
Is there an API equivalent (like EWS) for the New-MailContact cmdlet, which would allow me to create an Exchange 2010 mail contact from an existing AD contact? I know that I could invoke a PSSession, ...
2
votes
1answer
84 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
0answers
100 views
Exchange 2010 API - Connect to company email
I'm new to using the Exchange 2010 API (C#). I'm just going through a basic example (link below), but I'm having issues when using the FindItems method. In particular, I get the error ...
2
votes
1answer
51 views
What is the difference between `BeginSubscribeToStreamingNotifications` and `SubscribeToStreamingNotifications`
I see there's a new version of the managed EWS API v1.2 that targets Exchange 2010 SP2.
What is the difference between the 2 streaming notification subscriptions calls? I don't have VS at my ...
2
votes
1answer
87 views
How can I send a multi-part email with text/plain and text/html with Exchange Web Services?
I generated a namespace with the wsdl tool via the command line by pointing it to https://exchange-server/EWS/Services.wsdl.
I'm able to successfully send emails, using the code below:
const string ...
2
votes
1answer
88 views
Sending “Auto-Accepted” Appointments using Exchange Web Services
I need to send appointments/meetings to individual mailboxes from EWS that are auto accepted, right now I send the appointments and go back into each mailbox and accept them programmatically, cleaning ...
2
votes
1answer
663 views
Exchange Web Services (EWS) - Exchange 2010 soap calls via suds
Im trying to send an email via Exchange Web Services using suds 0.4.1:
import suds
from suds.client import Client
from suds.transport.https import WindowsHttpAuthenticated
url = ...
2
votes
2answers
69 views
Problem loading class
I've never really had to play with classes but am looking to use php-ews on a page i'm working on atm.
my main file is calling the 5 "root" php files via include
include ...
2
votes
1answer
279 views
Getting unread mail from exchange web services via PHP
How do you get all unread mail in a users' exchange mailbox using PHP while using this class ?
I figured to first list a folders contents like this:
$ews = new ...
2
votes
0answers
337 views
How to read Exchange 2010 SP 1 public folder using c#
I am trying to read a public folder hosted in ExchangeServer 2010 SP1. Well I am able to connect but when I am trying to read the folder I am getting stragne error. Hope somebody will able to share ...
2
votes
1answer
192 views
Obtaining an ICredentials object for the authenticated user of an ASP website
I'm attempting to add a feature to an existing ASP.net web site that needs to pull the users calendar data from the Exchange Web Service. I know that this is possible, and have local tests running as ...
2
votes
0answers
257 views
EWS GetItem Request + IncludeMimeContent + Huge Mail = OutOfMemoryException
I have an E-Mail in a Exchange 2007 mailbox that's 200 MB big. Don't ask me how it got that big; I don't know. But it's in a mailbox and it needs to get out in MIME format. To make it more ...
2
votes
0answers
178 views
exchange web services x509 Certivicate
I am trying to connect to Exchange Web Services to send an email on behalf of a user through my own Web Service (ASP/WCF). My code works fine when running on a desktop PC able to connect to the ...
2
votes
1answer
220 views
Where is my streaming subscription going?
I'm using the Microsoft Exchange Web Services 1.1 SDK and using the streaming connection to subscribe to new mail notification. All works fine for receiving the notifications but I receive errors ...
2
votes
1answer
452 views
Accessing Shared Calendars with Exchange Web Services
I'm trying to access shared calendars from exchange using exchange web services, can someone provide me with info on how I can do this?
I have tried:
ExchangeService myService = new ExchangeService ...
2
votes
1answer
727 views
Exchange Web Services API: Create calendar for user with reviewer permission
I'm wondering if this is possible to set the permissions of an additional calendar (sub folder of the build in Calendar folder) in a user's Exchange account in that way that the user is not able to ...
2
votes
2answers
267 views
Exchange Web Services GetAttachment will not stream to disk
We are using Exchange Web Services from java (jaxws). Here's the issue. To get an attachment, you execute the GetAttachment soap call (logical enough :) ). Here's the problem: the entire attachment is ...
2
votes
2answers
2k views
Exchange Web Services - Send email with attachment
I'm new to using EWS and I'm looking for a simple example that demonstrates how to send an email with an attachment. I've searched for an example and I can't find any that are simple and clear-cut. ...
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
243 views
Send Voting Email
Using the Outlook API it is possible to send emails with polls by setting the VotingOpions property on a MailItem instance. Is it possible to do the same with Exchange Web Services in any way?
2
votes
2answers
740 views
How do you bypass TLS/SSL cetification validation in WCF for Exchange Web Services
I wan't to bypass SSL and use regular http protocol to connect to a Exchange 2007 server however we dont want to invest in a real SSL cert and the one we use is needed for blackberry enterprise ...
1
vote
0answers
30 views
EWS check if meeting is private
I'm curious if there is a way using the Exchange Web Services to determine if a meeting is flagged as private or not.
I'm setting up an app to display the current meeting for our various conference ...
1
vote
1answer
36 views
How to read custom field value
I am using the below code to read the mails from my inbox using ews. I am able to read Subject etc. But how to read custom field value?
ExchangeService service = new ...
1
vote
0answers
24 views
EWS - Calendar auto archive
I am using Pull Notification and EWS to have synchronization of appointments with Exchange 2010 server and my application. It works find, I am able to pull notification whenever user create, modify ...
1
vote
1answer
43 views
Exchange Web Services attachments collection is empty
Has anyone had an issue with EWS (Exchange 2010 SP1) where the email attachments collection is empty?
The email has 5 attachments (some .tif and some .pdf). My code looks something like like:
if ...
1
vote
1answer
58 views
Will calling `SyncFolderItems` return items as they get received?
Does calling SyncFolderItems in a loop (until MoreChangesAvailable is false) return items that have been received after my first call to SyncFolderItems?
For example, say I have 1,000 items in my ...
1
vote
1answer
68 views
Can't get the AutodiscoverSample in the Exchange EWS SDK to work - auth with Office 365
I downloaded the Exchange 2010 SP1 SDK in order to start working with the Exchange Web Services.
The first thing I did was open up the AutodiscoverSample to see how Autodiscover worked.
I have two ...
1
vote
1answer
38 views
How Can I Get a List of Account the Current User has Delegate Access To?
I'm looking for a way to get a list of accounts to whom the current user has delegate permission. I found the getDelegate method on Exchange Web Services, but that method returns the list of users ...
1
vote
3answers
81 views
Programming with MS Exchange 2007
I am new to programming in Exchange space.
I would like to develop exchange plugin in c#. this plugin should be able to get all the messages (messages for all email ids) and depending on some rules ...
1
vote
1answer
87 views
wrapping EWS API in WCF for silverlight
I am trying to read and send email from a Silverlight app integrated with Exchange server.
I gone through some forum and understood that I cannot use EWS directly through the Silverlight application. ...
1
vote
1answer
96 views
Dealing with EWS throttling policies
What is an effective way of dealing with EWS throttling policies?
I'm attempting to read every email in my mailbox as well as download all attachments. The issue I'm encountering is that Exchange ...
1
vote
1answer
108 views
EWS API - Save Email to file system without using Third Party DLL's
I need to save the Email Message on the disk as an .msg file, for this I am using EWS API. I am sucessfully able to save the FileAttachment but not ItemAttachment.
Is there any sample code available ...
1
vote
0answers
40 views
IndexedPageItemView not returning items when using an offset from the beginning
We have a new application in the works where we use streaming subscriptions to read emails as they come to our mailbox. Since we would like to read all past emails (roughly 50,000) we need some way of ...
1
vote
0answers
26 views
Ignoring ItemId's gathered from notifications when manually syncing
How do I ignore ItemId's gathered from notifications?
Every time I receive new mail notification I add it to a list for the next round of syncing.
...
1
vote
2answers
284 views
The underlying connection was closed: An unexpected error occurred on a send on
I have a windows Service routine which is written in [C#].Net using VS 2010 which hits the DB once a day and if there are any records which need to be addressed. These record owners will be sent an ...
1
vote
2answers
125 views
Adding an appointment to specific user's calendars using with php-ews
I am trying to add an appointment using php-ews to an Exchange 2007 user's calendar. I have the code set up to add to the currently connected user's calendar and that works fine. This user also has ...