We have 4 stateless services microservice in service fabrics which are using Kestrel as server. We need to expose those 4 services to the front end and have question regarding either to use WebListener or OWIN as server. Can any one tell which is better for performance. And also we have authentication service which is used to handle tokens.
相关问题
- Register MicroServices in Azure Active Directory (
- .NET Core gives unknown error while processing HTT
- What is the new Startup.cs file for in Visual Stud
- MVC Anti forgery token error on scaffold
- Wont add dependencies because of missing service f
相关文章
- 在DotNetFx Owin 环境下调用 opencc.dll 报错
- Add claims with Owin Middleware
- Get expire time of OAuth session
- How to set Claims from ASP.Net OpenID Connect OWIN
- Authenticating requests to Microsoft.Owin.Testing.
- Azure Key Vault Certificates does not have the Pri
- MVC5 Identity/OWIN - Signout events
- OWIN Cookie Authentication
By OWIN I'm assuming you're referring to Katana with Web API 2, which both implement OWIN.
In that case, the choice is really between "classic" Web API 2 with Katana and the newer ASP.NET Core with WebListener. I always recommend ASP.NET Core with WebListener for a few reasons: