开发者

XML RPC client for C# over secured socket (https)

开发者 https://www.devze.com 2022-12-24 19:01 出处:网络
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开发者_JAVA技巧.net

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开发者_JAVA技巧.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


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 ;
0

精彩评论

暂无评论...
验证码 换一张
取 消