可以处理 HTTPS 的 WebBrowser 控件
我正在寻找 .NET 中可以处理 HTTPS 的 WebBrowser 控件的替代品。 这个问题与 Stack Overflow 上的类似,但这些控件都不提供 HTTPS。
顺便说一句,只是提一下,我尝试了所有这些
GeckoFx - 开发停止了
Se7en - 这实际上是 GeckoFx 的续篇
Webkitdotnet - 论坛上没有人回复
,但都不支持 HTTPS,所以我有点卡住了这里 :/。
另外,值得一提的是,.NET 框架附带的 WebBrowser 控件可以很好地使用 HTTPS,但我无法使用它的原因是因为我的应用程序使用了 IE 拒绝渲染的大量 javascript,例如 Firefox(gecko 引擎)或 Chrome(webkit)就可以正常工作。
因此,如果有人知道可以做到这一点的好控件(可以是 Webkit 或 Gecko 包装器,它不介意,只要它不是 IE 包装器)。
谢谢!
I am searching for a substitute of the WebBrowser control in .NET which can handle HTTPS. This question is similar here on Stack Overflow, but none of these controls offer HTTPS.
btw, just to mention, I tried all these
GeckoFx - development stopped
Se7en - this is actually continued GeckoFx
Webkitdotnet - no one replying on forum
but none of them support HTTPS, so I'm kind of stuck here :/.
Also, to mention, WebBrowser control that comes with .NET framework works just fine with HTTPS, but the reason I can't use it is because my app uses a lot of javascript that IE refuses to render, and for example Firefox (gecko engine) or Chrome (webkit) work just fine.
So, please if someone knows a good control that can do this (can be Webkit or Gecko wrapper, it doesn't mind, as long as it's not an IE wrapper).
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
因为我显然不能写评论,所以我就在这里扔下我的 2 美分..
从下一个版本 (R14) 开始,MozNET(在 OP 的帖子中称为“Se7en”)将支持 HTTPS/SSL 并能够接受/拒绝证书。
编辑:R15 版本肯定会有 SSL 处理。由于一个奇怪的错误,我不得不推迟它......但是,它很快就会到来!
Since I, apparently, cannot write a comment I'll just drop my 2 cents here..
Beginning with the next release (R14), MozNET (called 'Se7en' in the OP's post), will have support for HTTPS/SSL and the ability to accept/deny certificates.
EDIT: The R15 release will have the SSL handling for sure. I had to hold off on it because of a weird bug.. But, it's coming soon!
您在这里的选择似乎有点有限。对于 IE8 和 IE9,JavaScript 还不错,但如果您的用户无法升级,我建议您查看以下内容:
更新:
我最近遇到了这个,可能很有趣:
Your options here seem a bit limited. With IE8 and IE9 the JavaScript is not so bad, but if there is no possibility for your users to upgrade, I would suggest looking at a few things:
Update:
I recently ran into this, might be interesting:
经过长时间的谷歌搜索,我终于使用了与我之前使用的相同。因此,来自 http://sourceforge.net/projects/webkitdotnet 的 Webkit,我最终购买了 SSL 证书对于我的域名,现在一切都很好。
After long googling I finally ended up using the same as I was using before. So Webkit from http://sourceforge.net/projects/webkitdotnet and I ended up purchasing a SSL certificate for my domain and now all is fine.