HTTPS with ruby 1.8.4 on Windows?

A

Axel Friedrich

Hello,

does anybody know, what to do to get HTTPS working with ruby 1.8.4 on
Windows?

I get the error:

RUBY18/lib/ruby/1.8/net/http.rb:565:in `connect': undefined method
`verify_mode' for nil:NilClass (NoMethodError)
from I:/PROGRAMS/RUBY18/lib/ruby/1.8/net/http.rb:555:in
`do_start'
from I:/PROGRAMS/RUBY18/lib/ruby/1.8/net/http.rb:544:in `start'
from I:/PROGRAMS/RUBY18/lib/ruby/1.8/net/http.rb:1031:in
`request'
from I:/PROGRAMS/RUBY18/lib/ruby/1.8/net/http.rb:771:in `get'
from K:/ssl3.rb:29


The same error is described here:

http://groups.google.com/group/comp.lang.ruby/browse_frm/thread/7716d
07d7c549c59

Solution there: "Rolling back to a clean, fresh ruby 1.8.2-15", but I
don't like to do this... .


For test, I used for example this code:

#-----------------------------
require 'net/https'

url = URI.parse 'https://www.wamu.com'
server = Net::HTTP.new url.host, url.port
server.use_ssl = url.scheme == 'https'
server.verify_mode = OpenSSL::SSL::VERIFY_NONE
response = server.get url.request_uri
puts response.code
#-----------------------------

I'm using:

ruby 1.8.4 (2005-12-24) [i386-mswin32], Windows 98SE


Regards,

Axel
 
R

robert.cowham

Hi

I got the same problem, same error, works with 1.8.2 doesn't with 1.8.4

Did you find the problem?

Robert
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,065
Latest member
OrderGreenAcreCBD

Latest Threads

Top