Questions tagged [exchange-server]

Questions about automation and APIs related to Microsoft's Enterprise level messaging server.

Microsoft Exchange Server is the server side of a client–server, collaborative application product developed by Microsoft. It is part of the Microsoft Servers line of server products and is used by enterprises using Microsoft infrastructure products. Exchange's major features consist of electronic mail, calendaring, contacts and tasks; support for mobile and web-based access to information; and support for data storage.

Use this tag on programming questions related to the use of this product - questions on installation, maintenance and configuration are better asked on Server Fault, while questions on the use and configuration of Outlook or other email clients are better directed to Super User.

See also:

4797 questions
7
votes
1 answer

Connecting to Exchange with Golang

How do I connect with Exchange server with Go? I have tried: func main() { to := "first.last@acme.com" from := "me@acme.com" password := "myKey" subject := "Subject Here" msg := "Message here" emailTemplate := `To: %s Subject: %s %s ` body :=…
mk8efz
  • 1,374
  • 4
  • 20
  • 36
7
votes
4 answers

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. Assuming another user in my company created a…
Mike Dour
  • 3,616
  • 2
  • 22
  • 24
7
votes
1 answer

Can't retrieve 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, ...); ServiceResponseCollection response =…
7
votes
1 answer

Unable to load MimeContent via EWS in Exchange Server 2013

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.DateTimeCreated, …
7
votes
1 answer

iphone iOS4 access to exchange public folders / calendars

"I'm trying to get iPhone to play nice with all my work calendars that sync over exchange. My personal calendar works great with adding/remove events. However, my department calendar which is in a public folder does not show up at all. Anyone know a…
user381058
  • 73
  • 1
  • 4
7
votes
2 answers

Should I use GUID or DefaultExtendedPropertySet.PublicStrings while constructing ExtendedPropertyDefinition?

I am developing C# .NET Framework 4.5 Windows Form application using EWS Managed API 1.2 with Exchange Server 2007 which performs some sort of syncing of mails. Now that I am dealing with Extended Properties, I want to be clear some things: Q1. What…
Mahesha999
  • 22,693
  • 29
  • 116
  • 189
7
votes
2 answers

Can I perform a search on mail server in Java?

I am trying to perform a search of my gmail using Java. With JavaMail I can do a message by message search like so: Properties props = System.getProperties(); props.setProperty("mail.store.protocol", "imaps"); Session session =…
smurthas
  • 428
  • 1
  • 5
  • 12
7
votes
2 answers

I don't understand the NewNotImplementedException runtime error I'm getting

I'm trying to implement a remote runspace that needs both connectionInfo to talk to Exchange and an imported module to talk to active directory. Here is problem code: runspace =…
caspersgrin
  • 241
  • 1
  • 5
  • 15
7
votes
2 answers

ics file - Cannot open attached .ICS file in iOS7

My app creates an ICS file and send it as attachment to the email as type mimeType:@"text/calendar". Everything was working perfect in iOS6. If the device has iOS7 the attached .ICS to email does not open. iOS6 - Opens attached file. iOS7 - Not…
Ram G.
  • 3,045
  • 2
  • 25
  • 31
7
votes
1 answer

Exchange Server and SAS 9.1.3/9.2

has anyone successfully interacted with a microsoft exchange server in SAS 9.1.3 or 9.2? i know it can be done with SAS Ent. Guide 4.x, but i'm not interested in that route if regular SAS can do it.
rkoopmann
  • 1,136
  • 7
  • 10
7
votes
1 answer

Dead letter exchange RabbitMQ dropping messages

I'm trying to implement a dlx queue in RabbitMQ. The scenario is quite easy I have 2 queues: 1) alive 2) dead (x-dead-letter-exchange: "immediate", x-message-ttl: 5000) and an exchange "immediate" that is bound to 1) alive I tried to run this…
7
votes
3 answers

What is the maximal size of an ItemView in EWS?

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.
Luke
  • 1,768
  • 2
  • 20
  • 30
7
votes
1 answer

Exchange Web Service vs Exchange ActiveSync (or why buy the milk when you can get the cow for free?)

I have seen this question asked several times but the answers have so far been very robotic and disappointing: What is the difference between EWS vs EAS? Now, most sites give the following: "One is a protocol for mobile devices, the other is a web…
Anthony
  • 36,459
  • 25
  • 97
  • 163
6
votes
2 answers

Example/How-To create calendar appointment using Exchange 03 Webdav and PHP?

I've been trying to figure this out for about two weeks. I'm able to create email items in people's folders, read the folders, all that stuff but for the life of me I can not get anything to work with the calendars. I can provide examples of the XML…
Charlie Davis
6
votes
3 answers

C# Exchange ActiveSync Client

Does anyone know of any good libraries for implementing the Exchange ActiveSync Protocol into a C# Application so that I can sync emails with the application to a server (such as m.google.com)?
topherg
  • 4,203
  • 4
  • 37
  • 72