Top "Katana" questions

Katana is a collection of projects for supporting OWIN with various Microsoft components.

ASP.NET_SessionId + OWIN Cookies do not send to browser

I have a strange problem with using Owin cookie authentication. When I start my IIS server authentication works perfectly fine …

asp.net asp.net-identity owin katana
When should I use OWIN Katana?

I am new to OWIN and Katana. I really don't get why I should use OWIN, while I can use …

asp.net asp.net-mvc iis owin katana
How to explain Katana and OWIN in simple words and uses?

I have read many articles about the OWIN and Katana projects, but I could not get the whole picture of …

asp.net iis owin katana
No owin.Environment item was found in the context

Microsoft recently introduced new ASP.NET Identity - replacement for old (Simple)Membership. Unfortunately, I can't use this new membership …

asp.net .net owin katana asp.net-identity
How do I create a ClaimsIdentity object for Asp.NET MVC 5?

I am working in a .NET MVC 5 application. I do not want to use Entity Framework. I want to authenticate …

authentication ravendb asp.net-mvc-5 claims-based-identity katana
System.Net.HttpListenerException: Failed to listen on prefix 'http://localhost:8080

I am running the following code from Scott Allen's ASP.Net Fundamentals course using System; using Microsoft.Owin.Hosting; using …

port owin katana
CORS is not working in web api with OWIN authentication

In my application i am using web api with token based authentication with CORS support, but when client request for …

asp.net-mvc asp.net-web-api cors owin katana
Migrating from OWIN to ASP.NET Core

When moving from OWIN to ASP.NET Core, I've found a bit of information about dependencies to migration, but I've …

asp.net-core owin katana
Pass command-line arguments to Startup class in ASP Core

I have arguments passed in via the command-line private static int Main(string[] args) { const string PORT = "12345" ; var listeningUrl = $"http://…

asp.net .net asp.net-core owin katana
Alternative to use HttpContext in System.Web for Owin

ASP.NET authentication is now based on OWIN middleware that can be used on any OWIN-based host. ASP.NET Identity …

c# asp.net asp.net-identity owin katana