Hi, From: "Debaun, Steve" <Steve.Debaun / seminis.com> > > I just joined the list because I saw a post (from way back in 2002) about > using ruby and OpenSSL on win32. I was wondering if anyone has had any > recent successes, and if so, what shenanigans they involved. Sorry I can't offer specific help, but I wanted to confirm that I've been able to use OpenSSL/Ruby on Win32, both with SSLSocket, and 'net/https'. My net/https code looks similar to yours: http = Net::HTTP.new(@sitename, 443) http.use_ssl = true resp, data = http.get(path, nil) This is on: WinXP Service Pack 2 ruby 1.8.2 (2004-12-25) [i386-mswin32] I'm not sure which OpenSSL version... the ssleay32.dll and libeay32.dll files don't seem to have any version information. :( Regards, Bill