Let us continue our journey with ASP.NET vNext. In the last couple of articles, we discussed:
This article explains the Open Web Interface For .NET (OWIN). OWIN is mainly categorized as middleware technologies.
Middleware is computer software that provides services to software applications beyond those available from the operating system. It can be described as "software glues". - Definition from Wikipedia.
OWIN is defined as a standard interface between .NET web servers and web applications. It is a community-owned open source project. It is just a specification, not an implementation. The Microsoft developed project “Katana” is on the top of OWIN.
Formerly .NET web applications very tightly integrated with IIS. It is initiated toward openness and open source to decoupled IIS dependency. This will support the design and development of .NET applications in a non-Microsoft environment.
OWIN is not just decoupling web servers from .NET applications, but also offering support to features like self-hosting and authentication.
Let us create web applications using OWIN.
We will install the required OWIN packages using Nuget.
Install-package Microsoft.Owin.Host.SystemWeb –Pre.
We have successfully installed the required packages.
Let us add an OWIN startup class. The application will connect to the hosting environment using the startup class.
Let us add some sample code to the Startup class.
The web application is running on the OWIN server.
Let us add a console application to the same project to accomplish self-hosting using OWIN.
Running the console application.
Let us check the output in the browser.
We will have one more check using a Telnet Network command. We can check for port connectivity using the Telnet command.
Reference