本教程說明如何使用OWIN自託管Web API框架,在控制檯應用程序中託管ASP.NET Web API。git
.NET開放Web界面(OWIN)定義了.NET Web服務器和Web應用程序之間的抽象。OWIN將Web應用程序與服務器分離,這使OWIN成爲在IIS以外以本身的進程自託管Web應用程序的理想選擇。github
注意web
您能夠在github.com/aspnet/samples中找到本教程的完整源代碼。json
在文件菜單上, 新建,而後選擇項目。在「 已安裝 」的Visual C#下,選擇「 Windows桌面」,而後選擇「 控制檯應用程序(.Net Framework)」。將項目命名爲「 OwinSelfhostSample」,而後選擇「 肯定」。api
從「 工具」菜單中,選擇「 NuGet軟件包管理器」,而後選擇「 軟件包管理器控制檯」。在「程序包管理器控制檯」窗口中,輸入如下命令:服務器
Install-Package Microsoft.AspNet.WebApi.OwinSelfHost
app
這將安裝WebAPI OWIN自託管軟件包和全部必需的OWIN軟件包。框架
在解決方案資源管理器中,右鍵單擊該項目,而後選擇「 添加 / 類」以添加新的類。給班級命名Startup
。工具
用如下內容替換此文件中的全部樣板代碼:ui
using Owin; using System.Web.Http; namespace OwinSelfhostSample { public class Startup { // This code configures Web API. The Startup class is specified as a type // parameter in the WebApp.Start method. public void Configuration(IAppBuilder appBuilder) { // Configure Web API for self-host. HttpConfiguration config = new HttpConfiguration(); config.Routes.MapHttpRoute( name: "DefaultApi", routeTemplate: "api/{controller}/{id}", defaults: new { id = RouteParameter.Optional } ); appBuilder.UseWebApi(config); } } }
接下來,添加一個Web API控制器類。在解決方案資源管理器中,右鍵單擊該項目,而後選擇「 添加 / 類」以添加新的類。給班級命名ValuesController
。
用如下內容替換此文件中的全部樣板代碼:
using System.Collections.Generic; using System.Web.Http; namespace OwinSelfhostSample { public class ValuesController : ApiController { // GET api/values public IEnumerable<string> Get() { return new string[] { "value1", "value2" }; } // GET api/values/5 public string Get(int id) { return "value"; } // POST api/values public void Post([FromBody]string value) { } // PUT api/values/5 public void Put(int id, [FromBody]string value) { } // DELETE api/values/5 public void Delete(int id) { } } }
用如下內容替換Program.cs文件中的全部樣板代碼:
using Microsoft.Owin.Hosting; using System; using System.Net.Http; namespace OwinSelfhostSample { public class Program { static void Main() { string baseAddress = "http://localhost:9000/"; // Start OWIN host using (WebApp.Start<Startup>(url: baseAddress)) { // Create HttpClient and make a request to api/values HttpClient client = new HttpClient(); var response = client.GetAsync(baseAddress + "api/values").Result; Console.WriteLine(response); Console.WriteLine(response.Content.ReadAsStringAsync().Result); Console.ReadLine(); } } } }
若要運行該應用程序,請在Visual Studio中按F5。輸出應以下所示:
StatusCode: 200, ReasonPhrase: 'OK', Version: 1.1, Content: System.Net.Http.StreamContent, Headers:
{
Date: Mon, 04 May 2020 07:35:10 GMT
Server: Microsoft-HTTPAPI/2.0
Content-Length: 19
Content-Type: application/json; charset=utf-8
}
["value1","value2"]
4月中旬開發一個小項目,App和客戶端進行數據交互,爲了脫離IIS(由於IIS安裝太麻煩,有的客戶電腦配置過低),所以咱們定初步目標是採用Stock通訊進行數據交互,進行一兩天發現Stock開發太慢;最後網上找到使用OWIN自託管Web API框架,在控制檯應用程序中託管ASP.NET Web API。