From: tsuraan Date: 2005-11-12T01:32:22+09:00 Subject: Re: net/http broken? > Seems the docs are wrong. I had the same problem not too long ago. > > Here's an example of what works for me: > > require 'net/http' > > # post some data to uri:port/page > > uri = 'www.example.com' > port = 80 > page = '/RPC/foo' > data = 'Doodle!' > > Net::HTTP.start( uri, port) { |http| > results = http.post( page, data ) > } I'll give that a shot. Thanks!