Questions tagged [exchange-server-2007]

Released to business customers as part of Microsoft's roll-out wave of new products. It includes new clustering options, x64 support for greater scalability, voice mail integration, better search&support for Web services, better filtering options, and a new Outlook Web Access interface. Exchange 2007 also dropped support for Exchange 5.5 migrations, routing groups, admin groups, Outlook Mobile Access, X.400, and some API interfaces, amongst other features.

Exchange Server 2007 (v8, code name E12, or with SP1 v8.1) runs only on x64 versions of Windows Server. This requirement applies to supported production environments only; a 32-bit trial version is available for download and testing. Hence, companies currently running Exchange Server on 32-bit hardware will be required to replace or migrate hardware if they wish to upgrade to the new version. Companies that are currently running Exchange Server on 64-bit capable hardware are still required to migrate from their existing Exchange 2000/2003 servers to a new 2007 server since in-place upgrades are not supported in 2007.

The first beta of Exchange Server 2007 (then named "Exchange 12" or E12) was released in December 2005 to a very limited number of beta testers. A wider beta was made available via TechNet Plus and MSDN subscriptions in March 2006 according to the Microsoft Exchange team blog. On April 25, 2006, Microsoft announced that the next version of Exchange Server would be called "Exchange Server 2007".

269 questions
28
votes
3 answers

Exchange Web Service API and 401 unauthorized exception

When I try sending email using the EWS API, I get the following error: (in message.Send();) The request failed. The remote server returned an error: (401) Unauthorized. My code is the following: ExchangeService exchangeService = new…
24
votes
2 answers

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 high and low online and I cannot find one example…
NinjaBomb
  • 785
  • 2
  • 13
  • 29
20
votes
3 answers

Dispose/Close ExchangeService in C#?

I'm using the ExchangeService WebService API (Microsoft.Exchange.WebServices.Data) but I cannot find any Close or Dispose method. Is it not neccessary to close the connection somehow? My method looks like this: public void CheckMails() { …
Simon Woker
  • 4,994
  • 1
  • 27
  • 41
14
votes
1 answer

Microsoft.Exchange.WebServices is not working in VS2010

I'n using EWS ExchangeService to read emails from outlook... I've coded the in Console project and in VS2008... Everything works fine as it is.. I can read the emails. To become more familair with VS2010 I created a console project and copied the…
ethem
  • 2,888
  • 9
  • 42
  • 57
10
votes
1 answer

JavaMail search by ReceivedDate, doesn't work down to the second?

In IMAP, message numbering is based on when a message is placed into a folder (i.e. first message in the folder is 1, second message in is 2, etc.). However, this ordering has no regard for a message's received date. What I'm concerned about are…
Jon
  • 952
  • 1
  • 11
  • 17
10
votes
3 answers

Getting Exchange Appointments by ICalUid?

So I'm creating Exchange (2007) Appointments with a given ICalUid: var app = new Appointment(svc); app.ICalUid = id; app.Subject = "Test Appointment"; app.Recurrence = new Recurrence.DailyPattern(DateTime.Now,…
Michael Stum
  • 177,530
  • 117
  • 400
  • 535
9
votes
6 answers

Powershell command to hide user from exchange address lists

I'm trying to write powershell script which hides user from exchange lists. I was able to find following command: Set-Mailbox -Identity [user id here] -HiddenFromAddressListsEnabled $true And it doesn't give me an error message, and when I run the…
Vova Zaycev
  • 258
  • 1
  • 3
  • 11
9
votes
4 answers

c# programmatically reading emails from the Exchange server

When you search on web you will find very easy answers for "How to read emails programmatically"... Al the websites are explaining most of the same like this page. http://omegacoder.com/?p=454 // depends from Exchange server version …
ethem
  • 2,888
  • 9
  • 42
  • 57
8
votes
1 answer

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 be able to tell which alias an email has been sent…
8
votes
1 answer

Login via starttls method from smtplib to old e-mail server

I use: Python 2.7.15, OpenSSL 1.1.0h (27 Mar 2018), MS Exchange 2007. My MS exchange allows to send login/pass only after STARTTLS. In python I try to connect to server like: from stmplib import SMTP conn =…
pcu
  • 1,204
  • 11
  • 27
7
votes
6 answers

Difference between a DateTime object I create and DateTime.Now

I'm trying to use the Exchange 2007 API to query calendar availability for a specific user. My sample code is producing the following exception: The time duration specified for FreeBusyViewOptions.TimeWindow is invalid. Here's the sample…
joshb
  • 5,182
  • 4
  • 41
  • 55
7
votes
2 answers

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? I couldn't find it in the API and…
7
votes
3 answers

EWS : Appoitnment Item.Id.UniqueId is not constant

There is a weird problem I'm facing when working with EWS Managed API 2.0 with Exchange Server 2007 SP3. When I create an appointment and I save it, I get its ID using the following code…
Morano88
  • 2,047
  • 4
  • 25
  • 44
6
votes
1 answer

How to send mails using SmtpClient and DefaultNetworkCredentials to a distribution list that only allows authenticated senders?

I'm trying to send automated emails from a C# console application from machines to clients all on the same domain via our internal Exchange 2007 server (using SMTP), but I'm hitting a snag with distribution lists that only allow authenticated…
6
votes
1 answer

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 subscriptions that need to be created or updated. I…
1
2 3
17 18