【Owin 学习系列】1. 第一个 Owin 程序
2018-06-22 07:50:46来源:未知 阅读 ()
IIS 中的 Owin
在 IIS 里面部署 Owin,既能得到 Owin 管道模型的灵活性和模块特性,也能很好地利用 IIS 成熟的配置,Owin 程序将会跑在 ASP.NET request 的管道中。
首先建一个空的 Web 项目
添加 Nuget 包 Microsoft.Owin.Host.SystemWeb
添加一个 Startup 类
替换 Startup.cs 的代码
using System; using System.Threading.Tasks; using Microsoft.Owin; using Owin; [assembly: OwinStartup(typeof(OwinDemo.Startup))] namespace OwinDemo { public class Startup { public void Configuration(IAppBuilder app) { // For more information on how to configure your application, visit http://go.microsoft.com/fwlink/?LinkID=316888 app.Run(context=> { context.Response.ContentType = "text/plain"; return context.Response.WriteAsync("Hello, world."); }); } } }
F5 运行查看结果
控制台 Self-Host OWIN
在 Self - Host 程序中,你的程序将会使用 HttpListener 创建一个进程来当作 Http Server 。
首先添加一个控制台程序
添加 NuGet 包 Microsoft.Owin.SelfHost
添加一个 Owin Startup.cs 文件
替换 Startup.cs 文件内容
using Microsoft.Owin; using Owin; [assembly: OwinStartup(typeof(OwinConsoleDemo.Startup))] namespace OwinConsoleDemo { public class Startup { public void Configuration(IAppBuilder app) { // For more information on how to configure your application, visit http://go.microsoft.com/fwlink/?LinkID=316888 app.Run(context=> { context.Response.ContentType = "text/plain"; return context.Response.WriteAsync("Hello , this is console appliaction from self owin."); }); } } }
修改控制台程序 Main 函数代码
static void Main(string[] args) { using (Microsoft.Owin.Hosting.WebApp.Start<Startup>("http://localhost:9000")) { Console.WriteLine("Press [enter] to quit..."); Console.ReadLine(); } }
F5 运行,然后浏览器访问 http://localhost:9000
添加 Owin Diagnostics
Microsoft.Owin.Diagnostics 包包含了一个能捕获未处理的异常的中间件,并且能把错误详情显示在一个 Html 页面中。
首先在 Nuget 包里安装 Microsoft.Owin.Diagnostics
然后替换 Startup.cs 代码
using System; using Microsoft.Owin; using Owin; [assembly: OwinStartup(typeof(OwinDemo.Startup))] namespace OwinDemo { public class Startup { public void Configuration(IAppBuilder app) { app.UseErrorPage(); // For more information on how to configure your application, visit http://go.microsoft.com/fwlink/?LinkID=316888 app.Run(context=> { if((context.Request.Path.ToString() == "/fail")) { throw new Exception("This is Owin Diagnostics Test."); } context.Response.ContentType = "text/plain"; return context.Response.WriteAsync("Hello, world."); }); } } }
F5 运行,地址栏输入 http://localhost:56764/fail ,就可以在错误页面看到详细的错误信息
源代码链接:
链接: http://pan.baidu.com/s/1c2w7Kuk 密码: s6h6
参考地址:
https://docs.microsoft.com/zh-cn/aspnet/aspnet/overview/owin-and-katana/getting-started-with-owin-and-katana
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- asp.net定点执行任务的方法 2020-03-18
- 用继承方法实现页面判断session的方法 2020-03-10
- asp.net基础学习之前端页面布局 2019-11-30
- ASP.NET连接 Access数据库的几种方法 2019-11-29
- asp.net基础学习:控件的使用方法 2019-11-19
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash