Open Web Interface for .NET: Difference between revisions

Content deleted Content added
m clean up, added orphan, uncategorised tags using AWB
Line 1:
{{Orphan|date=October 2014}}
{{web-software-stub}}
 
OWIN (Open Web Interface for .NET) is a standard for an interface between .NET web applications and web servers. It is a community owned and open source project. Prior to OWIN, 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 (software)|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.
Line 8:
 
== OWIN as middleware ==
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 reused in other web frameworks, and also ensures a cleaner separation from the application using them.
 
== External links ==
Line 14:
* [http://www.asp.net/aspnet/overview/owin-and-katana/an-overview-of-project-katana Microsoft's overview of Project Katana]
* [https://www.nuget.org/packages?q=owin NuGet packages relating to OWIN]
 
 
{{web-software-stub}}
{{Uncategorized stub|date=October 2014}}