Steve Goodman's Exchange Blog
9Nov/1010

Shared Exchange Calendars on iOS devices

Just a quick post on how to view an Exchange 2010 shared calendar/mailbox on your iPhone or iPad…

Once you’ve (or your admin has) configured Exchange to allow iCal publishing, you can then send links via email from the shared calendar mailbox itself:

clip_image002

On the iOS device, you can then click the webcal: link in the email, which will allow you to subscribe to the Calendar:

clip_image003

Simple!

16Jul/100

Useful articles from around the web in July…

[Updated] - I've recompiled my link list for July and will continue to update it as anything I've found useful surfaces. These were originally published through Delicious.
The EXPTA {blog}: Trouble with ActiveSync with iOS4 for iPhone
The Cat Is Out Of The Bag. vSphere 4.1 | Tech Blog
Manage Exchange 2007 Out-Of-Office (OOF) Settings with PowerShell and the EWS Managed API
Touchdown, a decent Activesync client for Android Phones
New Book: Microsoft Exchange Server 2010 Best Practices (covering SP1) by Siegfried Jagott & Joel Stidley
JanssenJones.com: PowerShell + iPhone + Prowl = SysAdmin notification nirvana
Exchange 2010 Database Activation Coordination (DAC) | Elan Shudnow's Blog
Configuring AD RMS and Exchange 2010 Sp1 Beta - Ilse Van Criekinge's Weblog - Site Home - TechNet Blogs
What's not available in Exchange 2010 SP1 Hosting Mode - TechNet Blogs
Exchange 2010 SP1 personal archives -- Why you should wait
Henrik Walther Blog » Blog Archive » TechEd 2010 Interviews with folks from the Exchange Product group
29Jan/1035

Solving iPhone and Exchange 2010/2007 coexistence issues

During my testing of our Exchange 2010 implementation I came across a rather annoying issue - iPhones users with Exchange 2007 mailboxes no longer can connect after moving the client access across to 2010.

So - what is supposed to happen? Well - as iPhone is supposed to implement EAS protocol version 12.1 (i.e. it supports AutoDiscover), it should be redirected to the legacy Exchange 2007 Client Access array. Problem is, it doesn't work.

Of course not all ActiveSync clients support AutoDiscover and those that implement EAS protocol 12.0 or lower are automatically proxied by the Exchange 2010 Client Access array back to Exchange 2007 client access servers.

This is all explained in more detail (including an acknoledgement not all clients implement EAS protocol 12.1 correctly!) over at the Microsoft Exchange Team blog in their article, Upgrading Exchange ActiveSync to Exchange 2010.

Whilst looking for solutions, I've unfortunately only came across verification this is a known issue, with the solution to simply wait for Apple to fix the iPhone. However I have a deadline to meet and getting IT staff to visit hundreds of iPhone users to change EAS settings isn't an option, it's not an option to move all those mailboxes at the same time, and we can't wait for a fix from Apple.

The most simple solution, as it stands - is to force all ActiveSync clients to be proxied. As noted in the MS Exchange Team blog article above, all non-internet facing site mailbox ActiveSync access is proxied anyway, so it will work. And thankfully, the proxying isn't based on AD sites. It's simply based on the ExternalURL on the ActiveSync virtual directory - if it's set to $null on the Client Access servers in the site of the user's Mailbox it will proxy instead of redirect.

If you want to do this via the Exchange Management Shell - it's simple - do this for each Internet facing client access server during the switchover:

Get-ActiveSyncVirtualDirectory -Server E2007CA | Set-ActiveSyncVirtualDirectory -ExternalURL:$null

The implication of this is that there will be extra overhead associated with proxying Exchange 2007 ActiveSync users, so this would need to be factored into your plans should you implement my solution.