On Fri, Nov 12, 2010 at 10:21 AM, jackster the jackle <johnsheahan / att.net> wrote: > It seems to be working...here is my test code: > > http = Net::HTTP.new('www.chase.com', 443) # note the port > http.use_ssl = true # turn it on > puts "Here is the page: #{http} " just continue... do not be afraid to try... response = http.get('/index.html') #=> #<Net::HTTPOK 200 OK readbody=true> response.body #=> "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\n<html xmlns:xalan=\"http://xml.apache.org/xalan\" xmlns:java=\"http://xml.apache.org/xslt/java\" LANG=\"EN\"><head><META http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"><title>CHASE Home: Personal Banking | Personal Lending | Retirement & Investing | Business Banking</title><script>\n\t\t\t\t\t\tvar pageId = '/online.... <text snipped> ....... hth kind regards -botp