<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Sign In As A Different User</title><link>http://signinas.codeplex.com/project/feeds/rss</link><description>Running your browser &amp;#40;IE&amp;#41; in a corporate environment will give you single sign on to web applications running in your intranet. But in some cases you need to access an URL with different credentials &amp;#40;admin purpose, etc.&amp;#41;. Applications like SharePoint will provide you a solution right out of the box, but if this is not available the SignInAsADifferentUser project may help you. We as Gl&amp;#252;ck &amp;#38; Kanja Consulting AG deployed such configurations in relation to Microsoft Lync components. Searching the web found one article with a solution based on custom ASPX pages. This article was a great starting point and we created a little package as an HTTPHandler to allow an easy integration into existing solutions. The first drop will have only a limited testing phase in a production environment. If we receive qualified feedback we are open to change the implementation. For the rest of you&amp;#58; Take the sources and be happy &amp;#58;-&amp;#41;</description><item><title>Updated Wiki: Documentation</title><link>http://signinas.codeplex.com/documentation?version=2</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Overview&lt;/h1&gt;The current state of documentation is based on the fact &lt;b&gt;YOU&lt;/b&gt; know some details of authentication and IIS configuration. Sorry, but that&amp;#39;s it for now.&lt;br /&gt;&lt;br /&gt;Also check out the &lt;a href="http://signinas.codeplex.com/wikipage?title=FAQ&amp;referringTitle=Documentation"&gt;FAQ&lt;/a&gt;.&lt;br /&gt;
&lt;h1&gt;Installation&lt;/h1&gt;
&lt;h2&gt;Assemblies&lt;/h2&gt;The assemblies are not signed and therefor are not deployable to deploy to GAC. The Installation is a simple XCOPY to the application BIN folder. Check out the IIS configuration and find the application to run the code in. Copy the DLL (and PDB if you like) into the BIN directory.&lt;br /&gt;-&amp;gt; c:\inetpub\wwwroot\bin&lt;br /&gt;--&amp;gt; GK.IIS.SignInAsADifferentUser.dll&lt;br /&gt;--&amp;gt; GK.IIS.SignInAsADifferentUser.pdb&lt;br /&gt;
&lt;h2&gt;web.config&lt;/h2&gt;We need another handler entry in &amp;quot;system.webServer&amp;quot; (see minimal configuration)&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:Blue;"&gt;&amp;lt;?&lt;/span&gt;&lt;span style="color:#A31515;"&gt;xml&lt;/span&gt; &lt;span style="color:Red;"&gt;version&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;1.0&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Red;"&gt;encoding&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;UTF-8&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;?&amp;gt;&lt;/span&gt;
&lt;span style="color:Blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#A31515;"&gt;configuration&lt;/span&gt;&lt;span style="color:Blue;"&gt;&amp;gt;&lt;/span&gt;
    &lt;span style="color:Blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#A31515;"&gt;system.webServer&lt;/span&gt;&lt;span style="color:Blue;"&gt;&amp;gt;&lt;/span&gt;
        &lt;span style="color:Blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#A31515;"&gt;handlers&lt;/span&gt;&lt;span style="color:Blue;"&gt;&amp;gt;&lt;/span&gt;
            &lt;span style="color:Blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#A31515;"&gt;add&lt;/span&gt; &lt;span style="color:Red;"&gt;name&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;GK.IIS.SignInAsADifferentUser&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Red;"&gt;path&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;*.signinas&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Red;"&gt;verb&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;*&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Red;"&gt;type&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;GK.IIS.SignInAsADifferentUser.SignInAsHandler&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Red;"&gt;resourceType&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;Unspecified&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Red;"&gt;preCondition&lt;/span&gt;&lt;span style="color:Blue;"&gt;=&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color:Blue;"&gt;integratedMode&lt;/span&gt;&lt;span style="color:Black;"&gt;&amp;quot;&lt;/span&gt; &lt;span style="color:Blue;"&gt;/&amp;gt;&lt;/span&gt;
        &lt;span style="color:Blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color:#A31515;"&gt;handlers&lt;/span&gt;&lt;span style="color:Blue;"&gt;&amp;gt;&lt;/span&gt;
    &lt;span style="color:Blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color:#A31515;"&gt;system.webServer&lt;/span&gt;&lt;span style="color:Blue;"&gt;&amp;gt;&lt;/span&gt;
&lt;span style="color:Blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color:#A31515;"&gt;configuration&lt;/span&gt;&lt;span style="color:Blue;"&gt;&amp;gt;&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h1&gt;Testing&lt;/h1&gt;The current version is tested using the following parameters:
&lt;ul&gt;&lt;li&gt;IIS 7&lt;/li&gt;
&lt;li&gt;Windows Authentication (Anonymous disabled)&lt;/li&gt;
&lt;li&gt;App Pool settings
&lt;ul&gt;&lt;li&gt;.NET Framework 2.0&lt;/li&gt;
&lt;li&gt;Manged Pipeline as Inetgrated&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Usage&lt;/h1&gt;The usage is based on a set of known urls that are described in the next sections. Access the solution using your browser an start like this:&lt;br /&gt;http://superapp.company.local/whoami.signinas&lt;br /&gt;Switch user with:&lt;br /&gt;http://superapp.company.local/switchuser.signinas&lt;br /&gt;
&lt;h2&gt;whoami.signinas&lt;/h2&gt;This will Display the current username, auth scheme and server Name&lt;br /&gt;
&lt;h2&gt;switchuser.signinas&lt;/h2&gt;This will Redirect to the auth page with a unique id that is needed to avoid the usage of session state. The request is using the HTTPCache to Keep some information.&lt;br /&gt;
&lt;h2&gt;auth.signinas (+ request param with guid)&lt;/h2&gt;This will send the 401 until the user has switched. If the user is authenticated with a different identity the page will Redirect to the current dir&amp;#39;s default page (using ./ as the url)&lt;br /&gt;
&lt;h2&gt;cache.signinas&lt;/h2&gt;This will display th cache used for the solution to avoid sessionstate config&lt;br /&gt;
&lt;h2&gt;cleancache.asigninas&lt;/h2&gt;
This will delete the cache to start fresh&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>GeekDotNet</author><pubDate>Wed, 11 Jul 2012 07:09:31 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20120711070931A</guid></item><item><title>Updated Wiki: FAQ</title><link>http://signinas.codeplex.com/wikipage?title=FAQ&amp;version=5</link><description>&lt;div class="wikidoc"&gt;Here i will try to document stuff that was found during the usage of the tool. I will try to aggregate stuff from the discussions and work items.&lt;br /&gt;
&lt;h2&gt;How do i configure the handler to work in ASP.NET MVC?&lt;/h2&gt;
&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;static&lt;/span&gt; &lt;span style="color:Blue;"&gt;void&lt;/span&gt; RegisterRoutes(RouteCollection routes)
{
   routes.IgnoreRoute(&lt;span style="color:#A31515;"&gt;&amp;quot;{resource}.signinas/{*pathInfo}&amp;quot;&lt;/span&gt;);
}
&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;Thanx to &lt;a href="http://www.codeplex.com/site/users/view/yim77"&gt;User YIM77&lt;/a&gt;&lt;br /&gt;Source: &lt;a href="http://signinas.codeplex.com/discussions/361643"&gt;http://signinas.codeplex.com/discussions/361643&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>GeekDotNet</author><pubDate>Wed, 11 Jul 2012 07:08:55 GMT</pubDate><guid isPermaLink="false">Updated Wiki: FAQ 20120711070855A</guid></item><item><title>Updated Wiki: FAQ</title><link>http://signinas.codeplex.com/wikipage?title=FAQ&amp;version=4</link><description>&lt;div class="wikidoc"&gt;Here i will try to document stuff that was found during the usage of the tool. I will try to aggregate stuff from the discussions and work items.&lt;br /&gt;
&lt;h2&gt;How do i configure the handler to work in ASP.NET MVC?&lt;/h2&gt;
&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;static&lt;/span&gt; &lt;span style="color:Blue;"&gt;void&lt;/span&gt; RegisterRoutes(RouteCollection routes)
{
   routes.IgnoreRoute(&lt;span style="color:#A31515;"&gt;&amp;quot;{resource}.signinas/{*pathInfo}&amp;quot;&lt;/span&gt;);
}
&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;Thanx to &lt;a href="http://www.codeplex.com/site/users/view/yim77"&gt;http://www.codeplex.com/site/users/view/yim77&lt;/a&gt;&lt;br /&gt;Source: &lt;a href="http://signinas.codeplex.com/discussions/361643"&gt;User YIM77&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>GeekDotNet</author><pubDate>Wed, 11 Jul 2012 07:08:30 GMT</pubDate><guid isPermaLink="false">Updated Wiki: FAQ 20120711070830A</guid></item><item><title>Updated Wiki: FAQ</title><link>http://signinas.codeplex.com/wikipage?title=FAQ&amp;version=3</link><description>&lt;div class="wikidoc"&gt;Here i will try to document stuff that was found during the usage of the tool. I will try to aggregate stuff from the discussions and work items.&lt;br /&gt;
&lt;h2&gt;How do i configure the handler to work in ASP.NET MVC?&lt;/h2&gt;
&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;static&lt;/span&gt; &lt;span style="color:Blue;"&gt;void&lt;/span&gt; RegisterRoutes(RouteCollection routes)
{
   routes.IgnoreRoute(&lt;span style="color:#A31515;"&gt;&amp;quot;{resource}.signinas/{*pathInfo}&amp;quot;&lt;/span&gt;);
}
&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;Thanx to &lt;a href="http://User YIM77"&gt;http://www.codeplex.com/site/users/view/yim77&lt;/a&gt;&lt;br /&gt;Source: &lt;a href="http://signinas.codeplex.com/discussions/361643"&gt;http://signinas.codeplex.com/discussions/361643&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>GeekDotNet</author><pubDate>Wed, 11 Jul 2012 07:07:42 GMT</pubDate><guid isPermaLink="false">Updated Wiki: FAQ 20120711070742A</guid></item><item><title>Updated Wiki: FAQ</title><link>http://signinas.codeplex.com/wikipage?title=FAQ&amp;version=2</link><description>&lt;div class="wikidoc"&gt;Here i will try to document stuff that was found during the usage of the tool. I will try to aggregate stuff from the discussions and work items.&lt;br /&gt;
&lt;h2&gt;How do i configure the handler to work in ASP.NET MVC?&lt;/h2&gt;
&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;static&lt;/span&gt; &lt;span style="color:Blue;"&gt;void&lt;/span&gt; RegisterRoutes(RouteCollection routes)
{
   routes.IgnoreRoute(&lt;span style="color:#A31515;"&gt;&amp;quot;{resource}.signinas/{*pathInfo}&amp;quot;&lt;/span&gt;);
}
&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;Thanx to &lt;a href="http://User YIM77"&gt;http://www.codeplex.com/site/users/view/yim77&lt;/a&gt;&lt;br /&gt;http://signinas.codeplex.com/discussions/361643&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>GeekDotNet</author><pubDate>Wed, 11 Jul 2012 07:07:17 GMT</pubDate><guid isPermaLink="false">Updated Wiki: FAQ 20120711070717A</guid></item><item><title>Updated Wiki: FAQ</title><link>http://signinas.codeplex.com/wikipage?title=FAQ&amp;version=1</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;How do i configure the handler to work in ASP.NET MVC?&lt;/h1&gt;
&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
&lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;static&lt;/span&gt; &lt;span style="color:Blue;"&gt;void&lt;/span&gt; RegisterRoutes(RouteCollection routes)
{
   routes.IgnoreRoute(&lt;span style="color:#A31515;"&gt;&amp;quot;{resource}.signinas/{*pathInfo}&amp;quot;&lt;/span&gt;);
}
&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;Thanx to &lt;a href="http://User YIM77"&gt;http://www.codeplex.com/site/users/view/yim77&lt;/a&gt;&lt;br /&gt;http://signinas.codeplex.com/discussions/361643&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>GeekDotNet</author><pubDate>Wed, 11 Jul 2012 07:05:22 GMT</pubDate><guid isPermaLink="false">Updated Wiki: FAQ 20120711070522A</guid></item><item><title>New Post: ASP.NET MVC</title><link>http://signinas.codeplex.com/discussions/361643</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;&lt;span style="color: black; font-size: 10pt;" lang="EN-US"&gt;Hi,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: black; font-size: 10pt;" lang="EN-US"&gt;i didn't manage to find the time to do a repro for this problem. As mentioned in my email i think this might indeed be a caching problem. If you trace the application with a tool like fiddler can you verify that the wrong username is not delivered from a cached (HTTP 304) page? If you check the whoami.signinas page is this always telling the right thing? We had a similar problem in the lync installation, but it was a caching issue only if we switched the user to often for testing purpose. Using it in real life situation (for us) the user opens the page and switched once and then closes the browser after work is done.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: black; font-size: 10pt;" lang="EN-US"&gt;Please remember the authentication is working per URI (=URL). If you switch the authentication for &lt;a href="http://mydemoapp:5674/"&gt;&lt;span style="color: blue;"&gt;http://mydemoapp:5674&lt;/span&gt;&lt;/a&gt; it will only be switched at this url and any url below. It would not affect &lt;a href="http://mydemoapp.company.local/"&gt;&lt;span style="color: blue;"&gt;http://mydemoapp.company.local&lt;/span&gt;&lt;/a&gt;. But i assume this would already be a problem for you because of the rules that apply to scripting (cross site scripting and same origin policy).&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: black; font-size: 10pt;" lang="EN-US"&gt;Also keep in mind that the authentication is bound to the current process. If you try to launch a excel sheet accessing data from your app this will run in the local user context. This is a common problem in SharePoint, if user switched the identity and then tries to work with office documents from a library.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: black; font-size: 10pt;" lang="EN-US"&gt;Maybe &lt;a href="http://www.fiddler2.com/fiddler2/"&gt;http://www.fiddler2.com/fiddler2/&lt;/a&gt;&amp;nbsp;will help to trak your problem down. Try checking the http headers responsible for caching.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: black; font-size: 10pt;" lang="EN-US"&gt;Ciao Marco&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>GeekDotNet</author><pubDate>Wed, 11 Jul 2012 06:58:34 GMT</pubDate><guid isPermaLink="false">New Post: ASP.NET MVC 20120711065834A</guid></item><item><title>New Post: ASP.NET MVC</title><link>http://signinas.codeplex.com/discussions/361643</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Another problem is, that when using IE9 with a IIS 7.5, the logged in user is switching back and forth after reloading the page. Possibly a cache problem.&lt;/p&gt;
&lt;p&gt;Any ideas out there?&lt;/p&gt;&lt;/div&gt;</description><author>yim77</author><pubDate>Mon, 02 Jul 2012 11:57:13 GMT</pubDate><guid isPermaLink="false">New Post: ASP.NET MVC 20120702115713A</guid></item><item><title>New Post: ASP.NET MVC</title><link>http://signinas.codeplex.com/discussions/361643</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I managed it to find a solution.&lt;/p&gt;
&lt;p&gt;
&lt;div style="color: black; background-color: white;"&gt;
&lt;pre&gt;&lt;span style="color: blue;"&gt;public&lt;/span&gt; &lt;span style="color: blue;"&gt;static&lt;/span&gt; &lt;span style="color: blue;"&gt;void&lt;/span&gt; RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute(&lt;span style="color: #a31515;"&gt;"{resource}.signinas/{*pathInfo}"&lt;/span&gt;);
           
        }
&lt;/pre&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;This is working fine.&lt;/p&gt;&lt;/div&gt;</description><author>yim77</author><pubDate>Mon, 02 Jul 2012 11:55:33 GMT</pubDate><guid isPermaLink="false">New Post: ASP.NET MVC 20120702115533A</guid></item><item><title>New Post: ASP.NET MVC</title><link>http://signinas.codeplex.com/discussions/361643</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Does anybody know how to get this working in a MVC 3 environment?&lt;/p&gt;
&lt;p&gt;How to configure the MVC handler in a way that the SIGNINAS handler is called?&lt;/p&gt;
&lt;/div&gt;</description><author>yim77</author><pubDate>Mon, 02 Jul 2012 07:46:21 GMT</pubDate><guid isPermaLink="false">New Post: ASP.NET MVC 20120702074621A</guid></item><item><title>Source code checked in, #3d53b5ffa127</title><link>http://signinas.codeplex.com/SourceControl/changeset/changes/3d53b5ffa127</link><description>Added html pages to redirect aftrer authentication&amp;#10;&amp;#10;&amp;#42; Added default.htm and target.htm to simulate a redirection after a&amp;#10;successful user switch &amp;#40;by default the .&amp;#47; inside of the c&amp;#35; code&amp;#41;&amp;#10;&amp;#42; Fix typo&amp;#10;&amp;#42; Version update&amp;#10;</description><author>Marco Scheel</author><pubDate>Thu, 14 Jun 2012 00:25:21 GMT</pubDate><guid isPermaLink="false">Source code checked in, #3d53b5ffa127 20120614122521A</guid></item><item><title>Updated Wiki: Home</title><link>http://signinas.codeplex.com/wikipage?version=3</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Running your browser &amp;#40;IE&amp;#41; in a corporate environment will give you single sign on to web applications running in your intranet. But in some cases you need to access an URL with different credentials &amp;#40;admin purpose, etc.&amp;#41;. Applications like SharePoint will provide you a solution right out of the box, but if this is not available the SignInAsADifferentUser project may help you. We as Gl&amp;#252;ck &amp;#38; Kanja Consulting AG deployed such configurations in relation to Microsoft Lync components. Searching the web found one article with a solution based on custom ASPX pages. This article was a great starting point and we created a little package as an HTTPHandler to allow an easy integration into existing solutions. The first drop will have only a limited testing phase in a production environment. If we receive qualified feedback we are open to change the implementation. For the rest of you&amp;#58; Take the sources and be happy &amp;#58;-&amp;#41;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Scenarios&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;Lync 2010
&lt;ul&gt;&lt;li&gt;Configured inside of one of the administration websites&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Exchange 2010
&lt;ul&gt;&lt;li&gt;Configured along the owa folder using the html redirection pages
&lt;ul&gt;&lt;li&gt;The configuration was not working inside of the owa directory&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;b&gt;Credits&lt;/b&gt;&lt;br /&gt;Thank your Roel van Lisdonk&lt;br /&gt;&lt;a href="http://www.roelvanlisdonk.nl/"&gt;http://www.roelvanlisdonk.nl/&lt;/a&gt;&lt;br /&gt;Source article: &lt;a href="http://www.roelvanlisdonk.nl/?p=825"&gt;http://www.roelvanlisdonk.nl/?p=825&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>GeekDotNet</author><pubDate>Wed, 13 Jun 2012 15:36:16 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120613033616P</guid></item><item><title>Created Release: GK.IIS.SignInAsADifferentUser - V.1.1.0.0 (Jun 13, 2012)</title><link>http://signinas.codeplex.com/releases?ReleaseId=89479</link><description>&lt;div class="wikidoc"&gt;Minor update added html pages to allow &amp;quot;configuration&amp;quot; redirection after authentication&lt;br /&gt;&lt;br /&gt;Build with Visual Studio 2012 (RC) compiled using DEBUG configuration&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>GeekDotNet</author><pubDate>Wed, 13 Jun 2012 15:31:40 GMT</pubDate><guid isPermaLink="false">Created Release: GK.IIS.SignInAsADifferentUser - V.1.1.0.0 (Jun 13, 2012) 20120613033140P</guid></item><item><title>Released: GK.IIS.SignInAsADifferentUser - V.1.1.0.0 (Jun 13, 2012)</title><link>http://signinas.codeplex.com/releases/view/89479</link><description>
&lt;div class="wikidoc"&gt;Minor update added html pages to allow &amp;quot;configuration&amp;quot; redirection after authentication&lt;br&gt;
&lt;br&gt;
Build with Visual Studio 2012 (RC) compiled using DEBUG configuration&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
</description><author></author><pubDate>Wed, 13 Jun 2012 15:31:40 GMT</pubDate><guid isPermaLink="false">Released: GK.IIS.SignInAsADifferentUser - V.1.1.0.0 (Jun 13, 2012) 20120613033140P</guid></item><item><title>Source code checked in, #4f2b97780da8</title><link>http://signinas.codeplex.com/SourceControl/changeset/changes/4f2b97780da8</link><description>&amp;#42; Initial Update&amp;#10;&amp;#42; V.1.0.0.0&amp;#10;</description><author>GeekDotNet</author><pubDate>Wed, 23 May 2012 00:24:48 GMT</pubDate><guid isPermaLink="false">Source code checked in, #4f2b97780da8 20120523122448A</guid></item><item><title>Released: GK.IIS.SignInAsADifferentUser - V.1.0.0.0 (May 22, 2012)</title><link>http://signinas.codeplex.com/releases/view/88243</link><description>
&lt;div class="wikidoc"&gt;First release tested in a domain environment running in some Microsoft Lync components context.&lt;br&gt;
&lt;br&gt;
Build with Visual Studio 11 Beta compiled using DEBUG configuration&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
</description><author></author><pubDate>Tue, 22 May 2012 19:33:03 GMT</pubDate><guid isPermaLink="false">Released: GK.IIS.SignInAsADifferentUser - V.1.0.0.0 (May 22, 2012) 20120522073303P</guid></item><item><title>Updated Release: GK.IIS.SignInAsADifferentUser - V.1.0.0.0 (Mai 22, 2012)</title><link>https://signinas.codeplex.com/releases/view/88243</link><description>&lt;div class="wikidoc"&gt;First release tested in a domain environment running in some Microsoft Lync components context.&lt;br /&gt;&lt;br /&gt;Build with Visual Studio 11 Beta compiled using DEBUG configuration&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>GeekDotNet</author><pubDate>Tue, 22 May 2012 19:33:03 GMT</pubDate><guid isPermaLink="false">Updated Release: GK.IIS.SignInAsADifferentUser - V.1.0.0.0 (Mai 22, 2012) 20120522073303P</guid></item><item><title>Created Release: GK.IIS.SignInAsADifferentUser - V.1.0.0.0 (Mai 22, 2012)</title><link>https://signinas.codeplex.com/releases?ReleaseId=88243</link><description>&lt;div class="wikidoc"&gt;First release tested in a domain environment running in some Microsoft Lync components context.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>GeekDotNet</author><pubDate>Tue, 22 May 2012 19:31:25 GMT</pubDate><guid isPermaLink="false">Created Release: GK.IIS.SignInAsADifferentUser - V.1.0.0.0 (Mai 22, 2012) 20120522073125P</guid></item></channel></rss>