web-dev-qa-db-ja.com

httpsをサポートするOwinセルフホストコンソールアプリケーション(Web APIなし、SignalRなし)

SslStreamとソケットを使用して、https Webサーバーをゼロから開発しました。 C#コードからのストリームに証明書を適用して、要求を処理できます。

しかし、私はOwinでこれを行う方法を理解していませんでした。自己ホスト型コンソールアプリケーションに証明書をバインドする方法を知っている人はいますか?

例:

// Bind the below certificate to Owin Host
var certificate = new X509Certificate2("server.pfx", "password");

詳細については、以下の既存のOwinホストコードを参照してください。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Owin.Hosting;
using AppFunc = System.Func<System.Collections.Generic.IDictionary<string, object>, System.Threading.Tasks.Task>;

namespace Owin.Startup
{
    class Program
    {
        static void Main(string[] args)
        {
            int port = 8888;
            string url = $"http://localhost:{port}";
            using (WebApp.Start<Startup>(url))
            {
                Console.WriteLine($"Hosted: {url}");
                Console.ReadLine();
            }
        }
    }

    public class Startup
    {
        private IAppBuilder app;
        public void Configuration(IAppBuilder app)
        {
#if DEBUG
            app.UseErrorPage();
#endif

            app.Use(new Func<AppFunc, AppFunc>(next => (async env =>
            {
                Console.WriteLine("Begin Request");
                foreach (var i in env.Keys)
                {
                    Console.WriteLine($"{i}\t={(env[i] == null ? "null" : env[i].ToString())}\t#\t{(env[i] == null ? "null" : env[i].GetType().FullName)}");
                }
                if (next != null)
                {
                    await next.Invoke(env);
                }
                else
                {
                    Console.WriteLine("Process Complete");
                }
                Console.WriteLine("End Request");
            })));

            app.UseWelcomePage("/");

            this.app = app;
        }


    }

}
14
mind1n

Owinセルフホスティングアプリケーションは、コード内の適切なURLにバインドする必要があるだけですが、証明書のマッピングは、Windows HTTP APIを介して個別に行う必要があります。

netsh http show sslcertは既存のマッピングを表示でき、 Jexus Manager はUIを提供します。

2
Lex Li