ews

What do I use for ChangeKey in EWS UpdateItem?

I'm trying to use Exchange Web Services to update a calendar item. I'm creating an ItemChangeType, and then an ItemIdType. I have a unique ID to use for ItemIdType.Id, but I have nothing to use for the ChangeKey. When I leave it out, I get an ErrorChangeKeyRequiredForWriteOperations. But when i try to just put something in there, I g...

Need a way to authenticate to Exchange Web Services

I'm using Exchange Web Services to Find, Create, Update, and Delete appointments from the calendars for one or more people. The application would be used by a manager to view employees' vacation time, as well as assign appointments based on availability. In order for this to all work, an authenticated user's credentials must be sent to ...

Using Delegates with Exchange Web Services

Has anyone used delegates with exchnage web services? I would like one user to be able to control other users' calendars in Exchange. I'm finding this problem to be a little tricky, and I'd like to see how others have been able to get it to work properly. ...

Using CalendarItemCreateOrDeleteOperationType with Exchange Web Services and Delegates

When I create a calendar appointment using delegates with Exchange Web Services, I have to set CalendarItemCreateOrDeleteOperationType. The problem is, the delegate will be a superuser account that no one actually uses, and I would like to avoid filling up its mailbox. CalendarItemCreateOrDeleteOperationType has a SendToNone option, bu...

Exchange Web Services, try to use ExchangeImpersonationType ...

I am trying to use EWS, first time trying to use the ExchangeServiceBinding. The code I am using is below: _service = new ExchangeServiceBinding(); //_service.Credentials = new NetworkCredential(userName, userPassword, this.Domain); _service.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials; _service.Url = this.ServiceU...

Access original subject of meeting in Resource calendar

I'm trying to set up a system that displays calendar items from a resource calendar on a web page using Exchange 2007 and EWS (Exchange Web Services). I've managed to get access to the calendars of the resources, but when getting the items in the calendars, the subject of each calendar item is not the original subject used when someone ...

Use Exchange Web Services to enumerate all the properties(mapi properties?) on a mail item

I'm trying to troublshoot a problem with some mail items in on an Exchange 2007 server. I've been able to determine there is something wrong with I think a reciepient property, but I'm not sure, so I'd like to just enumerate all the properties on a message on a bad one and compare it to a good one. I would also settle for a MAPI or Web...

invite attendees to public calendar event in exchange web services

Obviously in outlook, one is able to create an appointment in a public folder and invite people (including yourself) - i want to replicate this with exchange web services. i can create an event in my own calendar and invite people and that works fine. if i create an event in a public folder and invite people, in the createitem object th...

Exchange Server 2007 Web Services PHP Class

Does anyone know of an open source PHP class (preferably BSD or MIT license) that will interface with the MS Exchange Server 2007 Web Services via. SOAP? I am looking for a higher level class that has functionality for sending messages via. the web service. ...

Exchange Web Services - Updating Contact's Email Address

Hi, I am using EWS 2007 to update contacts in exchange 2007. I am unable to update contacts's email id in outlook. The Display as field shows the previous email Id. The issue I am facing is similar to the one described here - http://social.technet.microsoft.com/Forums/en-US/exchangesvrdevelopment/thread/d46d53a6-063f-4f65-85ab-a14ba7e7...

Exchange WS 'The specified object was not found in the store.' error

Hi all, We're using Exchange 2007 WS to process mail folders and are hitting various problems if we try and forward a message we've already received. Our process is: Windows Service monitors mailbox folder, on finding a new mail we process the information and move the item to a 'Processed folder' and store the Exchange Message Id. Use...

Exchange Web Services vrs WebDAV

What are some good resources for learning Exchange Web Services? I'm familiar with webDAV and was wondering if exchange web services might be better for some integration we do with exchange. ...

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 to be limited. I need the EmailAddress of the one who made the calendar appointment so I thought I could use the AppointmentSchema.Organizer...

EWS - import email into sql database

I've been trying to import the body from emails into a field in a SQL 2005 database but it keeps losing the formatting (carriage returns, tabs, etc) Anyway of getting around this? ...

Talking to a demo Exchange Server 2007

I would like to test a trivial SOAP app against Microsoft Exchange 2007 (or 2010) webservices. Is there any demo server on the internet available? My problem is, that I have no 64-Bit machine around here to install a server for myself. The 2003 server, which is hanging around at the office isn't suitable for my needs (Exchange Web Servi...

Get Appointment Body from a Room Resource Calendar

According to this article, using a combination of FindItem and GetItem it should be possible to retrieve the notes section from an appointment. This seems to work fine for a USER mailbox but fails when executed against a room resource mailbox. Is there a way to retrieve the message body from from an appointment in a room resource mailb...

Silverlight 3 - Exchange Web Service

Hi, In my Silverlight 3 app, I just added a Service Reference to the Exchange 2007 Web Service (EWS). After doing so, I got the following warning: Custom tool warning: No endpoints compatible with Silverlight 3 were found. The generated client class will not be usable unless endpoint information is provided via the constr...

Searching for E-mails with Exchange Web Services Operations

I am doing an integration project for a customer running Microsoft Exchange 2007 (BPOS). I am looking for a way to search for e-mail using the Exchange Web Services Operations -- MS' API to their own hosted exchange solution. So far, I have found a nice API description, but as far as I can see none of it allows for searching for e-mails ...

Using integrated authentication with EWS (exchange web services)

I'm in the process of setting up a company intranet. One of the requests is to do some intregration with Exchange Server 2007. In my tests I can authenticate to EWS just fine using NetworkCredential, as long as I'm passing in my username and password. In our intranet, I'd like to pass on the credientials of the logged in user. We'll be ...

Using EWS Api to search thru different users mailboxes

We are developing a module which main goal is to track and collect information about damage inspections (insurance market). Each case has a code (i.e. L000525). Each case could be managed by several people. All the emails related to a specific case include the case code in its subject. What we want to do is to collect and show the inco...