My environment is SBS 2008 which has Exchange 2007. Out of Office Assistant works via OWA but not with Outlook 2007. My research shows that this is due to the fact that the Autodiscover service changed for Outlook 2007 clients.
We are using a public cert issued by Thawte.When I run Test-OutlookWeb Services I get a failure. Details below.
I have resolved this problem for other customers int he past with the following commands but they are not resolving the issue on this server.
When I execute the command Enable-OutlookAnywhere -Server PHOENIX -ExternalHostname "mail.company.com" -ClientAuthenticationMethod "Basic"-SSLOffloading:$False I receive and error:
But when you look in IIS, the RPC and RPC With Cert folders are not under Default Web Site but under the SBS Web Applications.
Anybody have any ideas that can help me? I've tried everything I can think of.
We are using a public cert issued by Thawte.When I run Test-OutlookWeb Services I get a failure. Details below.
Code:
[PS] C:\Windows\System32>Test-OutlookWebServices | fl
Id : 1003
Type : Information
Message : About to test AutoDiscover with the e-mail address Administrator@company.com.
Id : 1007
Type : Information
Message : Testing server PHOENIX.company.local with the published name https:
//phoenix/EWS/Exchange.asmx & [URL unfurl="true"]https://mail.company.com/EWS/Exchange.asmx.[/URL]
Id : 1019
Type : Information
Message : Found a valid AutoDiscover service connection point. The AutoDiscover
URL on this object is [URL unfurl="true"]https://mail.company.com/Autodiscover/Autodiscover.xml.[/URL]
Id : 1013
Type : Error
Message : When contacting [URL unfurl="true"]https://mail.company.com/Autodiscover/Autodiscover.[/URL]
xml received the error The remote server returned an error: (401) Unauthorized.
Id : 1006
Type : Error
Message : The Autodiscover service could not be contacted.
I have resolved this problem for other customers int he past with the following commands but they are not resolving the issue on this server.
Code:
Set-ClientAccessServer -Identity PHOENIX -AutoDiscoverServiceInternalUri [URL unfurl="true"]https://mail.company.com/Autodiscover/Autodiscover.xml[/URL]
Set-WebServicesVirtualDirectory -Identity "PHOENIX\EWS (SBS Web Applications)" -InternalURL [URL unfurl="true"]https://mail.company.com/EWS/Exchange.asmx[/URL] -BasicAuthentication:$true
Set-OABVirtualDirectory -Identity "PHOENIX\OAB (SBS Web Applications)" -InternalURL [URL unfurl="true"]https://mail.company.com/OAB[/URL]
Enable-OutlookAnywhere -Server PHOENIX -ExternalHostname "mail.company.com" -ClientAuthenticationMethod "Basic"-SSLOffloading:$False
Set-ActiveSyncVirtualDirectory -Identity "PHOENIX\Microsoft-Server-ActiveSync (SBS Web Applications)" -ExternalURL [URL unfurl="true"]https://mail.company.com/Microsoft-Server-Activesync[/URL]
Set-UMVirtualDirectory -Identity "PHOENIX\UnifiedMessaging (SBS Web Applications)" -InternalURL [URL unfurl="true"]https://phoenix.company.local/UnifiedMessaging/Service.asmx[/URL] -BasicAuthentication:$true
When I execute the command Enable-OutlookAnywhere -Server PHOENIX -ExternalHostname "mail.company.com" -ClientAuthenticationMethod "Basic"-SSLOffloading:$False I receive and error:
Code:
Enable-OutlookAnywhere : The virtual directory 'Rpc' already exists under 'PHOENIX.company.local/Default Web Site'.
Parameter name: VirtualDirectoryName
At line:1 char:23
+ Enable-OutlookAnywhere <<<< -Server PHOENIX -ExternalHostname "mail.company.com" -ClientAuthenticationMethod "Basic"-SSLOffloading:$False
But when you look in IIS, the RPC and RPC With Cert folders are not under Default Web Site but under the SBS Web Applications.
Anybody have any ideas that can help me? I've tried everything I can think of.