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 ;
精彩评论