Displaying 1 result from an estimated 1 matches for "process_transaction".
2006 Apr 06
2
OpenSSL: SSL_CTX_new:: library has no ciphers
...xtDrive, which runs ruby 1.8.2; however, I have the /net folder
from ruby 1.8.4 in my /lib to support net/https, which doesn''t appear to be
present in 1.8.2.
http = Net::HTTP.new "www.beanstream.com", 443
http.use_ssl = true
http.start {
http.request_get("/scripts/process_transaction?" + @data) {|res|
@response_plain = res.body
}
}
When I try to run this code, it craps out at the http.start. I''ve tried
several iterations and examples; either OpenSSL fails, or 1.8.2 doesn''t
support use_ssl and there is no net/https.rb in 1.8.2.
Possible soluti...