Problem with https connection in Ruby 1.8.4

T

Todd Breiholz

I'm getting the following error when executing in Ruby 1.8.4 (tried it
both on Windows and OS X). I did not see this problem in 1.8.2.

Here is the code:

def init_server(url)
@url =3D URI.parse(url)
@server =3D Net::HTTP.new(@url.host, @url.port)
@server.use_ssl =3D @url.scheme =3D=3D 'https'
@server.verify_mode =3D OpenSSL::SSL::VERIFY_NONE

# run ruby with -d to see SOAP wiredumps.
@server.set_debug_output $stderr if show_debug
end

And here is the error:

NoMethodError: You have a nil object when you didn't expect it!
The error occured while evaluating nil.verify_mode
from e:/ruby/lib/ruby/1.8/net/http.rb:565:in `connect'
from e:/ruby/lib/ruby/1.8/net/http.rb:555:in `do_start'
from e:/ruby/lib/ruby/1.8/net/http.rb:544:in `start'
from e:/ruby/lib/ruby/1.8/net/http.rb:1031:in `request'
from e:/ruby/lib/ruby/1.8/net/http.rb:988:in `post2'
from e:/ruby/lib/ruby/gems/1.8/gems/activesalesforce-0.2.2/lib/rfor=
ce.rb:230:in
`call_remote'
from e:/ruby/lib/ruby/gems/1.8/gems/activesalesforce-0.2.2/lib/rfor=
ce.rb:185:in
`login'
from e:/ruby/lib/ruby/gems/1.8/gems/activesalesforce-0.2.2/lib/sale=
sforce_connection_adapter.rb:72:in
`activesalesforce_connection'
from e:/ruby/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_=
record/connection_adapters/abstract/connection_specification.rb:145:in
`connection_without_query_cache=3D'
from e:/ruby/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_=
record/query_cache.rb:54:in
`connection=3D'
from e:/ruby/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_=
record/connection_adapters/abstract/connection_specification.rb:106:in
`retrieve_connection'
from e:/ruby/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_=
record/connection_adapters/abstract/connection_specification.rb:20:in
`connection'
from e:/ruby/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_=
record/base.rb:931:in
`add_limit!'
from e:/ruby/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_=
record/base.rb:924:in
`construct_finder_sql'
from e:/ruby/lib/ruby/gems/1.8/gems/activerecord-1.13.2/lib/active_=
record/base.rb:395:in
`find'

I found a reference to the same problem on a Debian bug list
(http://www.mail-archive.com/[email protected]/msg149314.ht=
ml)
but no resolution.

Did something change between 1.8.2 and 1.8.4 in regards to handling
HTTPS connections?

Thanks!

Todd Breiholz
 
E

Eric Hodel

I'm getting the following error when executing in Ruby 1.8.4 (tried it
both on Windows and OS X). I did not see this problem in 1.8.2.

Here is the code:

def init_server(url)
@url = URI.parse(url)
@server = Net::HTTP.new(@url.host, @url.port)
@server.use_ssl = @url.scheme == 'https'
@server.verify_mode = OpenSSL::SSL::VERIFY_NONE

# run ruby with -d to see SOAP wiredumps.
@server.set_debug_output $stderr if show_debug
end

And here is the error:

NoMethodError: You have a nil object when you didn't expect it!
The error occured while evaluating nil.verify_mode

You should first verify that Rails isn't interfering. Try this script:

$ cat ssl.rb
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

$ ruby -v ssl.rb
ruby 1.8.4 (2005-12-24) [powerpc-darwin8.4.0]
/usr/local/lib/ruby/1.8/net/http.rb:569: warning: using default DH
parameters.
302
 
T

Todd Breiholz

Eric

Thanks for the reply. I tried your script on Windows and got the same
error. I'll try it on my Powerbook when I get home.


ruby 1.8.4 (2005-12-24) [i386-mswin32]
e:/ruby/lib/ruby/site_ruby/1.8/net/https.rb:121: warning: method
redefined; discarding old edit_path
e:/ruby/lib/ruby/site_ruby/1.8/net/https.rb:130: warning: redefine socket_t=
ype
e:/ruby/lib/ruby/site_ruby/1.8/net/https.rb:157: warning: method
redefined; discarding old on_connect
e:/ruby/lib/ruby/1.8/net/http.rb:565:in `connect': undefined method
`verify_mode' for nil:NilClass (NoMethodError)
from e:/ruby/lib/ruby/1.8/net/http.rb:555:in `do_start'
from e:/ruby/lib/ruby/1.8/net/http.rb:544:in `start'
from e:/ruby/lib/ruby/1.8/net/http.rb:1031:in `request'
from e:/ruby/lib/ruby/1.8/net/http.rb:771:in `get'
from ssl.rb:7

Todd Breiholz

I'm getting the following error when executing in Ruby 1.8.4 (tried it
both on Windows and OS X). I did not see this problem in 1.8.2.

Here is the code:

def init_server(url)
@url =3D URI.parse(url)
@server =3D Net::HTTP.new(@url.host, @url.port)
@server.use_ssl =3D @url.scheme =3D=3D 'https'
@server.verify_mode =3D OpenSSL::SSL::VERIFY_NONE

# run ruby with -d to see SOAP wiredumps.
@server.set_debug_output $stderr if show_debug
end

And here is the error:

NoMethodError: You have a nil object when you didn't expect it!
The error occured while evaluating nil.verify_mode

You should first verify that Rails isn't interfering. Try this script:

$ cat ssl.rb
require 'net/https'

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

$ ruby -v ssl.rb
ruby 1.8.4 (2005-12-24) [powerpc-darwin8.4.0]
/usr/local/lib/ruby/1.8/net/http.rb:569: warning: using default DH
parameters.
302

--
Eric Hodel - (e-mail address removed) - http://segment7.net
This implementation is HODEL-HASH-9600 compliant

http://trackmap.robotcoop.com
 
R

Robert Cowham

I'm getting the following error when executing in Ruby 1.8.4 (tried it
both on Windows and OS X). I did not see this problem in 1.8.2.
<snip

And here is the error:

NoMethodError: You have a nil object when you didn't expect it!
The error occured while evaluating nil.verify_mode
from e:/ruby/lib/ruby/1.8/net/http.rb:565:in `connect'
from e:/ruby/lib/ruby/1.8/net/http.rb:555:in `do_start'
from e:/ruby/lib/ruby/1.8/net/http.rb:544:in `start'
from e:/ruby/lib/ruby/1.8/net/http.rb:1031:in `request'
from e:/ruby/lib/ruby/1.8/net/http.rb:988:in `post2'
from
e:/ruby/lib/ruby/gems/1.8/gems/activesalesforce-0.2.2/lib/rforc
e.rb:230:in
`call_remote'
from
e:/ruby/lib/ruby/gems/1.8/gems/activesalesforce-

Did you find the problem?

I have had exactly the same - my script worked under 1.8.2 - upgrade to
1.8.4 and boom!

Robert
 
R

robert.cowham

I have solved the problem for myself.

I had installed 1.8.4 on top of 1.8.2 and since some of the libraries
have moved locations I suspect the old versions were still around and
messing things up.

I did a clean install of 1.8.4 and everything was fine.

Thanks to Aoki san who kindly helped me with some debugging.

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

Forum statistics

Threads
473,774
Messages
2,569,598
Members
45,159
Latest member
SweetCalmCBDGummies
Top