This page (revision-1) was last changed on 29-Nov-2024 16:16 by UnknownAuthor

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 added 21 lines
!!! Overview
[{$pagename}] ([OWIN]) is a standard for an interface between .NET web applications and web servers. It is a community-owned open-source project.
Prior to [{$pagename}], Microsoft's ASP.NET technology was designed on top of IIS, and web applications could not easily be run on another web server (although note that despite this the Mono community developed several ASP.NET compatible web servers, such as XSP). [OWIN] aims to decouple the relationship between ASP.NET applications and IIS by defining a standard interface. Developers of web servers can be sure that if they implement OWIN correctly, ASP.NET applications will run on their server. Similarly, new web frameworks could be developed as an alternative to ASP.NET. So long as they target OWIN, they will run on any OWIN compatible web server, including IIS.
In this regard, [OWIN] aims to do for .NET what Java Servlet and Servlet containers do for the JVM.
Project Katana is a set of OWIN components built by Microsoft.
In addition to decoupling web frameworks and web servers, OWIN allows chaining together middleware into a pipeline. A web framework can interact with OWIN without knowing whether it is interacting directly with the underlying web server, or with one or more layers of middleware (each implementing OWIN) on top of the web server. This allows infrastructure concerns, such as authentication, to be split out into separate modules. This is desirable as it decouples them from the application's own code, and makes them reusable across applications. In Project Katana, Microsoft has made into OWIN modules several ASP.NET features that were previously part of the core ASP.NET framework. This allows them to be reused in other web frameworks, and also ensures a cleaner separation from the application using them.
!! Open Web Interface for .NET and [OpenID Connect][2]
[{$pagename}] has support for [OpenID Connect] and therefore [OAuth 2.0].
!! More Information
There might be more information for this subject on one of the following:
[{ReferringPagesPlugin before='*' after='\n' }]
----
* [#1] - [Open Web Interface for .NET|Wikipedia:Open_Web_Interface_for_.NET|target='_blank'] - based on information obtained 2014-04-10
* [#2] - [OWIN security components in ASP.NET: OpenID Connect!|http://blogs.msdn.com/b/webdev/archive/2014/03/28/owin-security-components-in-asp-net-openid-connect.aspx|target='_blank'] - based on information obtained 2014-04-10