Top "Owin" questions

Open Web Interface for .NET that describes how components in a HTTP pipeline should communicate.

How and when does Configuration method in OwinStartup class is called/executed?

Before I ask my question I have already gone through the following posts: Can't get the OWIN Startup class to …

c# asp.net-mvc-4 owin owin-middleware
What is the difference in the use of UserStore and UserManager in Asp.Net Identtity?

I'm very new to Asp.Net Identity and please bear with me if this question seems silly. So, when I …

c# asp.net-mvc asp.net-identity owin
MVC 5 How to define Owin LoginPath with localized routes

I have a MVC 5 website with localized routes defined as routes.MapRoute( name: "Default", url: "{culture}/{controller}/{action}/{id}", defaults: …

c# asp.net-mvc-5 owin
SignalR 2.0.2 and Owin 2.0.0 dependency conflict

I'm trying to get SignalR working in an MVC5 project with individual accounts. The MVC project has by default Owin 2.0.0 …

c# asp.net .net signalr owin
Manually decode OAuth bearer token in c#

In my Web Api 2.2 OWIN based application I have a situation where I manually need to decode the bearer token …

c# asp.net-web-api oauth-2.0 owin bearer-token
Changing the response object from OWIN Middleware

My OWIN middleware is like this. (Framework is ASP.NET Web API). public class MyMiddleware : OwinMiddleware { public MyMiddleware(OwinMiddleware next) : …

c# asp.net-web-api owin katana
MVC - Mixed Auth - OWIN + Windows Auth

I need to have both windows authentication and owin (forms) authentication but i can't get it to work. Probably the …

c# asp.net-mvc asp.net-mvc-5 owin windows-authentication
Dependency injection not working with Owin self-hosted Web Api 2 and Autofac

I'm finding my feet with Web Api 2, Owin and Autofac and need some guidance, please. Overview I have an Owin …

c# autofac owin asp.net-web-api2
Context.User.Identity.Name is null with SignalR 2.X.X. How to fix it?

This is driving me insane. I'm using latest signalR release (2.0.2). This is my hub code (OnConnected) public override Task OnConnected() { //…

asp.net-mvc authentication signalr signalr-hub owin
The data protection operation was unsuccessful on Azure using OWIN / Katana

I'm trying to implement password reset on an OWIN/Katana based ASP.NET MVC website running in Azure. It works …

security azure cryptography owin