基于安全套接字 (https) 的 C# XML RPC 客户端

发布于 2024-08-27 07:09:04 字数 235 浏览 6 评论 0原文

我有一个用 python 编写的安全 (https) XML-RPC 服务器,并且我已经使用基于 python 的客户端对其进行了测试。但我需要一个基于 C# 的客户端,我尝试过 xml-rpc.net

但是它不能与 https 一起使用吗?有人可以帮我吗?或者我必须从头开始编写一个客户端?

谢谢

I have a secured (https) XML-RPC server written in python, and I have tested it with a python based client. but I need a C# based client for it, I have given a try to xml-rpc.net

but it is not working with https? can any one please help me out? or I will have to write a client from scratch?

Thanks

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

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

发布评论

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

评论(1

蓝色星空 2024-09-03 07:09:04

您的 https 服务器可能有自签名或其他无效证书。获取有效证书或抑制 https 证书验证

ServicePointManager.ServerCertificateValidationCallback = (a, b, c, e) => true ;

Your https server probably has a self-signed or other invalid certificate. Get a valid certificate or suppress https certificate validation with

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