我使用MonoTouch中的HttpListener
实现了一个非常简单的Web服务器。一切都很好。现在我需要添加HTTPS支持。我试图按照
Httplistener with https support
但我不知道在MonoTouch中设置证书的位置。只添加前缀“https:// *:443”没有帮助,因为没有连接是可能的,也没有抛出异常。
根据http://msdn.microsoft.com/en-us/library/system.net.httplistener.aspx,这可能是因为必须指定服务器证书(“您可以使用HttpCfg.exe配置服务器证书和其他侦听器选项”)。
如何在MonoTouch中完成?
答案 0 :(得分:7)
这是一个非常好的问题。在某些情况下,与HttpListener
类似,.NET需要工具或.config文件(使用System.Configuration
)来调整应用程序的配置。在许多情况下,有API确实达到了相同的目的,但并不总是(在这种情况下不是这样)。
解决方案是查看Mono的源代码,看看它期望HttpCfg.exe
工具为应用程序设置的内容。来自github:
string dirname = Environment.GetFolderPath (Environment.SpecialFolder.ApplicationData);
string path = Path.Combine (dirname, ".mono");
path = Path.Combine (path, "httplistener");
string cert_file = Path.Combine (path, String.Format ("{0}.cer", port));
if (!File.Exists (cert_file))
return;
string pvk_file = Path.Combine (path, String.Format ("{0}.pvk", port));
if (!File.Exists (pvk_file))
return;
cert = new X509Certificate2 (cert_file);
key = PrivateKey.CreateFromFile (pvk_file).RSA;
所以解决方案是创建相同的目录结构(它可能指向Documents
目录下)并复制.cer
文件(二进制DER编码证书)和{{1文件(这是.pvk
创建的格式的私钥),端口号作为文件名。
使用这些文件后,您应该能够启动makecert
并让它加载处理SSL请求所需的证书和私钥。