带有 Tcplistener 的 https

发布于 2024-10-04 14:17:05 字数 270 浏览 3 评论 0原文

我正在构建一个应用程序,它可以接收来自网站的请求以执行浏览器中不可用的功能。我使用 Tcplistener 完成了此操作,然后通过使用 jsonp 通过 jquery 执行 ajax 调用来调用它。这很好并且运行良好,但现在的问题是网站还必须能够使用 HTTPS,这会导致在进行未加密的 ajax 调用时出现警告,这是不可取的。

是否可以使用 https 来调用我的应用程序,而无需在用户电脑上注册证书,因为我猜我的应用程序是服务器。

我希望这是有道理的,我并不愚蠢。

非常感谢

I am building an application that can receive requests from a website to perform functionality not available in a browser. I accomplished this using a Tcplistener and then call in to it by performing ajax calls with jquery using jsonp. This is fine and works well, the problem now however is that the website also has to be able to use HTTPS, this results in a warning when making ajax calls that are not encrypted which is not desirable.

Is it possible to use https to make calls to my application without having a certificate registered on the users pc, as my application is I guess the server.

I hope that makes sense and I am not being stupid.

Many Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

懒的傷心 2024-10-11 14:17:06

此答案适用于 C# .NET

对于 HTTPS 调用,MSDN 上提供了使用 TCP 侦听器和 TCP 客户端的示例。

https://learn.microsoft.com/en-us/dotnet/api/system.net.security.sslstream?redirectedfrom=MSDN&view=netframework-4.7.2#Anchor_5

进行 sslStream.AuthenticateAsServer 时(serverCertificate,..)您应该加载 PFX 文件和密码,而不是 CER 文件,这样就不需要在客户端计算机上注册。

This answer is for C# .NET

For HTTPS calls, the example is provided on MSDN using TCP Listner and TCP Client.

https://learn.microsoft.com/en-us/dotnet/api/system.net.security.sslstream?redirectedfrom=MSDN&view=netframework-4.7.2#Anchor_5

When doing sslStream.AuthenticateAsServer(serverCertificate, ..) you should load a PFX file along with password, instead of CER file, then it will not require registration on client machine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文