mikdav

Results 5 issues of mikdav

Wired up a test application with UseActiveDirectoryFederationServicesBearerAuthentication, and get the following exception: System.NotSupportedException: The OWIN key 'server.OnSendingHeaders' is not available for this request. at Microsoft.Owin.OwinResponse.OnSendingHeaders(Action`1 callback, Object state) at Microsoft.Owin.Security.Infrastructure.AuthenticationHandler.d__0.MoveNext()...

IIS has two options for FastCGI - named pipes and TCP. FOS supports unix named pipes and TCP. However, the way that IIS uses TCP is not compatible with the...

I got FOS from nuget and tried to use it with Microsoft.AspNet.WebApi.Owin, and got the following exception when making a request: System.ArgumentException: Cannot bind to the target method because its...

Minimal example below. MainView.cshtml: `@helper RenderSomething()` `{` ` @RenderPartial("PartialView")` `}` `@RenderSomething()` PartialView.cshtml: `Hello World` Expected output: `Hello World` Actual output: `<table><tr><td>Hello World</td></tr></table>` The problem appears to be that RazorTemplateBase.WriteTo is...