Search found 3 matches

by VladimirD
Tue Feb 04, 2014 6:08 pm
Forum: Support - RCF
Topic: RCF-OpenSSL with JSON doesn't work on Debian 7
Replies: 4
Views: 10352

Re: RCF-OpenSSL with JSON doesn't work on Debian 7

Hi, I generated PEM certificate with command: openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout mykey.pem -out mycert.pem Probably what the cipher algorithm is no longer supported. I don't think what problem with ciphers. 1. I tried explicitly define the same ciphers on client and server w...
by VladimirD
Sat Feb 01, 2014 7:52 pm
Forum: Support - RCF
Topic: RCF-OpenSSL with JSON doesn't work on Debian 7
Replies: 4
Views: 10352

Re: RCF-OpenSSL with JSON doesn't work on Debian 7

If RCF patched with static OpenSSL with patch from viewtopic.php?f=6&t=179 everything works good.
by VladimirD
Sat Feb 01, 2014 7:05 pm
Forum: Support - RCF
Topic: RCF-OpenSSL with JSON doesn't work on Debian 7
Replies: 4
Views: 10352

RCF-OpenSSL with JSON doesn't work on Debian 7

Hi Jarl, I tried use JSON-RPC over HTTPS transport and it doesn't work. 1. Code of initializing RCF: RCF::init(); RCF::enableLogging(RCF::LogToFile("rcf.log"), 4); RCF::RcfServer rcfServer; rcfServer.addEndpoint(RCF::HttpsEndpoint("0.0.0.0", json_port)).setRpcProtocol(RCF::Rp_JsonRpc); rcfServer.set...