<?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/"
		>
<channel>
	<title>Comments for e x p r e s s i c a</title>
	<atom:link href="http://expressica.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://expressica.com</link>
	<description>ruby on rails, business and technicalities</description>
	<lastBuildDate>Wed, 18 Apr 2012 08:59:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on EOFError: end of file reached issue when post a form with Net::HTTP by Sur</title>
		<link>http://expressica.com/2012/02/10/eoferror-end-of-file-reached-issue-when-post-a-form-with-nethttp/#comment-1706</link>
		<dc:creator>Sur</dc:creator>
		<pubDate>Wed, 18 Apr 2012 08:59:09 +0000</pubDate>
		<guid isPermaLink="false">http://expressica.com/?p=93#comment-1706</guid>
		<description>I am glad if you&#039;re able to use the above fix and get things going.

Maybe yes... else anyone of us can submit a patch for the same.</description>
		<content:encoded><![CDATA[<p>I am glad if you&#8217;re able to use the above fix and get things going.</p>
<p>Maybe yes&#8230; else anyone of us can submit a patch for the same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EOFError: end of file reached issue when post a form with Net::HTTP by Sam</title>
		<link>http://expressica.com/2012/02/10/eoferror-end-of-file-reached-issue-when-post-a-form-with-nethttp/#comment-1705</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Wed, 18 Apr 2012 08:39:31 +0000</pubDate>
		<guid isPermaLink="false">http://expressica.com/?p=93#comment-1705</guid>
		<description>Thanks a lot! The net/http library is really user-unfriendly to make you have to explicitly specify use_ssl instead of just looking at the protocol. And of going ahead with making a request to a URL with https protocol without you having set the right property to true. Well who knows? Maybe it&#039;s gotten better in 1.9.</description>
		<content:encoded><![CDATA[<p>Thanks a lot! The net/http library is really user-unfriendly to make you have to explicitly specify use_ssl instead of just looking at the protocol. And of going ahead with making a request to a URL with https protocol without you having set the right property to true. Well who knows? Maybe it&#8217;s gotten better in 1.9.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EOFError: end of file reached issue when post a form with Net::HTTP by Nick</title>
		<link>http://expressica.com/2012/02/10/eoferror-end-of-file-reached-issue-when-post-a-form-with-nethttp/#comment-1652</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Thu, 01 Mar 2012 21:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://expressica.com/?p=93#comment-1652</guid>
		<description>I was able to get it working thanks.  However, I cheated by using a new networking library (httpi -&gt; httpclient).  Of course, I did run into a bug using that library, which I was able to work around (http://www.ruby-forum.com/topic/1490195).

Unfortunately, it seems that while Ruby is excellent in networking overall, it has many buggy implementations/methods when using SSL.

Nick</description>
		<content:encoded><![CDATA[<p>I was able to get it working thanks.  However, I cheated by using a new networking library (httpi -&gt; httpclient).  Of course, I did run into a bug using that library, which I was able to work around (<a href="http://www.ruby-forum.com/topic/1490195" rel="nofollow">http://www.ruby-forum.com/topic/1490195</a>).</p>
<p>Unfortunately, it seems that while Ruby is excellent in networking overall, it has many buggy implementations/methods when using SSL.</p>
<p>Nick</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EOFError: end of file reached issue when post a form with Net::HTTP by Sur</title>
		<link>http://expressica.com/2012/02/10/eoferror-end-of-file-reached-issue-when-post-a-form-with-nethttp/#comment-1651</link>
		<dc:creator>Sur</dc:creator>
		<pubDate>Thu, 01 Mar 2012 13:48:40 +0000</pubDate>
		<guid isPermaLink="false">http://expressica.com/?p=93#comment-1651</guid>
		<description>@Nick

I agree with you that there is a bug in the Net::HTTP code.

Logically, if we are supplying &quot;https..&quot; url to Net::HTTP, it should automatically set the flag use_ssl = true on it&#039;s own... and it&#039;s not doing that. Thus we have to manually set the flag to use_ssl = true.

This is a workaround and not a fix to the problem. But since use_ssl= has been explicitly provided has a method to be used and set the flag, I didn&#039;t mind adding it as part of code, and all my jobs are working with no issue the day I&#039;ve added this flag.

Did your code work after this or you are still facing issue ?</description>
		<content:encoded><![CDATA[<p>@Nick</p>
<p>I agree with you that there is a bug in the Net::HTTP code.</p>
<p>Logically, if we are supplying &#8220;https..&#8221; url to Net::HTTP, it should automatically set the flag use_ssl = true on it&#8217;s own&#8230; and it&#8217;s not doing that. Thus we have to manually set the flag to use_ssl = true.</p>
<p>This is a workaround and not a fix to the problem. But since use_ssl= has been explicitly provided has a method to be used and set the flag, I didn&#8217;t mind adding it as part of code, and all my jobs are working with no issue the day I&#8217;ve added this flag.</p>
<p>Did your code work after this or you are still facing issue ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EOFError: end of file reached issue when post a form with Net::HTTP by Nick</title>
		<link>http://expressica.com/2012/02/10/eoferror-end-of-file-reached-issue-when-post-a-form-with-nethttp/#comment-1650</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Thu, 01 Mar 2012 13:42:57 +0000</pubDate>
		<guid isPermaLink="false">http://expressica.com/?p=93#comment-1650</guid>
		<description>I ran into the same problem.  I have seen some others solve this by actually changing the NET::HTTP code.  There seems to be an incorrect check at the socket layer, that is closing the socket too soon, which causes the EOF error.</description>
		<content:encoded><![CDATA[<p>I ran into the same problem.  I have seen some others solve this by actually changing the NET::HTTP code.  There seems to be an incorrect check at the socket layer, that is closing the socket too soon, which causes the EOF error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on EOFError: end of file reached issue when post a form with Net::HTTP by Anand</title>
		<link>http://expressica.com/2012/02/10/eoferror-end-of-file-reached-issue-when-post-a-form-with-nethttp/#comment-1618</link>
		<dc:creator>Anand</dc:creator>
		<pubDate>Fri, 17 Feb 2012 20:29:11 +0000</pubDate>
		<guid isPermaLink="false">http://expressica.com/?p=93#comment-1618</guid>
		<description>Thank you, this post was extremely useful!</description>
		<content:encoded><![CDATA[<p>Thank you, this post was extremely useful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Captcha by Captcha &#124; karsany.hu</title>
		<link>http://expressica.com/simple_captcha/#comment-1602</link>
		<dc:creator>Captcha &#124; karsany.hu</dc:creator>
		<pubDate>Wed, 25 Jan 2012 01:08:43 +0000</pubDate>
		<guid isPermaLink="false">http://expressica.com/simple-captcha/#comment-1602</guid>
		<description>[...] Ugye ruby on rails-ben &#237;rtam meg a blog motorj&#225;t, &#237;gy gondoltam ehhez is van valami k&#233;sz megold&#225;s. Van. Ez: http://expressica.com/simple_captcha/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Ugye ruby on rails-ben &iacute;rtam meg a blog motorj&aacute;t, &iacute;gy gondoltam ehhez is van valami k&eacute;sz megold&aacute;s. Van. Ez: <a href="http://expressica.com/simple_captcha/" rel="nofollow">http://expressica.com/simple_captcha/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to make arrow keys working in irb in Linux/Ubuntu by Pat Guano</title>
		<link>http://expressica.com/2007/07/11/how-to-make-arrow-keys-working-in-irb-in-linuxubuntu/#comment-1546</link>
		<dc:creator>Pat Guano</dc:creator>
		<pubDate>Wed, 14 Dec 2011 20:32:31 +0000</pubDate>
		<guid isPermaLink="false">http://expressica.com/2007/07/11/how-to-make-arrow-keys-working-in-irb-in-linuxubuntu/#comment-1546</guid>
		<description>Towards the end of 2011 and with Ruby 1.9.3, those hint are still valid
and helful.</description>
		<content:encoded><![CDATA[<p>Towards the end of 2011 and with Ruby 1.9.3, those hint are still valid<br />
and helful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to make arrow keys working in irb in Linux/Ubuntu by Preetam</title>
		<link>http://expressica.com/2007/07/11/how-to-make-arrow-keys-working-in-irb-in-linuxubuntu/#comment-1536</link>
		<dc:creator>Preetam</dc:creator>
		<pubDate>Mon, 12 Dec 2011 10:15:28 +0000</pubDate>
		<guid isPermaLink="false">http://expressica.com/2007/07/11/how-to-make-arrow-keys-working-in-irb-in-linuxubuntu/#comment-1536</guid>
		<description>I couldn&#039;t install v5 (libreadline5) as this may have become obsolete. Tried with v6 (libreadline6) and that was successful. Thanks for this post mate. Cheers.</description>
		<content:encoded><![CDATA[<p>I couldn&#8217;t install v5 (libreadline5) as this may have become obsolete. Tried with v6 (libreadline6) and that was successful. Thanks for this post mate. Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Nginx: Set up error pages by Rogergue</title>
		<link>http://expressica.com/2008/03/22/nginx-set-up-error-pages/#comment-1464</link>
		<dc:creator>Rogergue</dc:creator>
		<pubDate>Mon, 21 Nov 2011 20:59:45 +0000</pubDate>
		<guid isPermaLink="false">http://expressica.com/2008/03/22/nginx-set-up-error-pages/#comment-1464</guid>
		<description>How can I turn off all the default error pages and use 1 custom made?

Thanks.</description>
		<content:encoded><![CDATA[<p>How can I turn off all the default error pages and use 1 custom made?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

