Hi,
i would like to managed ARR and URL rewrite to access Exchange 2003 hosted on a sbs2003 legacy server. The Front End Server is 2012 Essential/IIS8s. The same story has been told in http://forums.iis.net/t/1162862.aspx?URL+Rewrite+and+Outlook+Web+access .
I disabled the "bin"s but i still fail. On client site the Oulook frame shows up but there is no content displayed. The left frame shows the mail directories, the right site says that content is not shown because of 404 error. When clicking on a mail directory in the left frame, the content is not shown either but a message on top of the frame claimes SSL issues.
Maybe a problem with outbound rule? Rule see below. server001 is the bios name of the proxy server,domain.name is the public name of the server.<system.webServer>
<caching enabled="true" />
<tracing>
<traceFailedRequests>
<remove path="*" />
<add path="*">
<traceAreas>
<add provider="WWW Server" areas="Authentication,Security,Filter,StaticFile,CGI,Compression,Cache,RequestNotifications,Module,FastCGI,WebSocket,Rewrite,RequestRouting" verbosity="Information" />
</traceAreas>
<failureDefinitions timeTaken="00:00:00" statusCodes="100-999" verbosity="Warning" />
</add>
</traceFailedRequests>
</tracing>
<security>
<requestFiltering>
<hiddenSegments>
<remove segment="bin" />
</hiddenSegments>
</requestFiltering>
</security>
<rewrite>
<outboundRules>
<rule name="Exchange" preCondition="ResponseIsHtml1">
<match filterByTags="A, Area, Base, Form, Frame, Head, IFrame, Img, Input, Link, Script" serverVariable="" pattern="server001" />
<action type="Rewrite" value="jschmitz.homeip.net" />
<conditions>
</conditions>
</rule>
</outboundRules>
</rewrite>
</system.webServer>