<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: OpenSSL::SSL::SSLError: certificate verify failed open-uri</title>
	<atom:link href="http://situated.wordpress.com/2008/06/10/opensslsslsslerror-certificate-verify-failed-open-uri/feed/" rel="self" type="application/rss+xml" />
	<link>http://situated.wordpress.com/2008/06/10/opensslsslsslerror-certificate-verify-failed-open-uri/</link>
	<description>Try PD, you'll like it!</description>
	<lastBuildDate>Tue, 24 Mar 2009 23:53:52 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: ah125i</title>
		<link>http://situated.wordpress.com/2008/06/10/opensslsslsslerror-certificate-verify-failed-open-uri/#comment-49</link>
		<dc:creator>ah125i</dc:creator>
		<pubDate>Tue, 24 Mar 2009 23:53:52 +0000</pubDate>
		<guid isPermaLink="false">http://situated.wordpress.com/?p=132#comment-49</guid>
		<description>This was very helpful in pointing me in the right direction.  After some experimenting I&#039;ve found this code to disable HTTPS verification without any warnings or overriding any constants.

http = Net::HTTP.new(&#039;secure.somehost.com&#039;, 443)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
response = http.get(&quot;/secured/page&quot;)

Thanks again, I never would have found this without reading your post!</description>
		<content:encoded><![CDATA[<p>This was very helpful in pointing me in the right direction.  After some experimenting I&#8217;ve found this code to disable HTTPS verification without any warnings or overriding any constants.</p>
<p>http = Net::HTTP.new(&#8217;secure.somehost.com&#8217;, 443)<br />
http.use_ssl = true<br />
http.verify_mode = OpenSSL::SSL::VERIFY_NONE<br />
response = http.get(&#8220;/secured/page&#8221;)</p>
<p>Thanks again, I never would have found this without reading your post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: trappist3</title>
		<link>http://situated.wordpress.com/2008/06/10/opensslsslsslerror-certificate-verify-failed-open-uri/#comment-42</link>
		<dc:creator>trappist3</dc:creator>
		<pubDate>Wed, 22 Oct 2008 17:07:19 +0000</pubDate>
		<guid isPermaLink="false">http://situated.wordpress.com/?p=132#comment-42</guid>
		<description>Nice, this helped me too.  I did get a warning about the already initialized constant, though, so I did this:

module OpenSSL
  module SSL
    remove_const :VERIFY_PEER
  end
end
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE</description>
		<content:encoded><![CDATA[<p>Nice, this helped me too.  I did get a warning about the already initialized constant, though, so I did this:</p>
<p>module OpenSSL<br />
  module SSL<br />
    remove_const :VERIFY_PEER<br />
  end<br />
end<br />
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tilsammans</title>
		<link>http://situated.wordpress.com/2008/06/10/opensslsslsslerror-certificate-verify-failed-open-uri/#comment-39</link>
		<dc:creator>tilsammans</dc:creator>
		<pubDate>Mon, 25 Aug 2008 12:54:18 +0000</pubDate>
		<guid isPermaLink="false">http://situated.wordpress.com/?p=132#comment-39</guid>
		<description>You are a life saver!</description>
		<content:encoded><![CDATA[<p>You are a life saver!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
