开发者

XML RPC client for C# over secured socket (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开发者_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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜