<?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 Open Source Solutions for Small Business Problems</title>
	<atom:link href="http://opensourcesmall.biz/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://opensourcesmall.biz</link>
	<description>The living site of the book by John Locke</description>
	<lastBuildDate>Wed, 14 Sep 2011 12:57:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.2</generator>
	<item>
		<title>Comment on Network neutrality or bulk rate discount? by computer services los angeles</title>
		<link>http://opensourcesmall.biz/2008/12/network-neutrality-or-bulk-rate-discount/comment-page-1/#comment-241686</link>
		<dc:creator>computer services los angeles</dc:creator>
		<pubDate>Wed, 14 Sep 2011 12:57:48 +0000</pubDate>
		<guid isPermaLink="false">http://opensourcesmall.biz/?p=292#comment-241686</guid>
		<description>Nice matter discussed on Network Neutrality. Thanks for being mentor on this topic.</description>
		<content:encoded><![CDATA[<p>Nice matter discussed on Network Neutrality. Thanks for being mentor on this topic.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Technical note: HTTP Auth with AJAX by freelock</title>
		<link>http://opensourcesmall.biz/2008/06/technical-note-http-auth-with-ajax/comment-page-1/#comment-237337</link>
		<dc:creator>freelock</dc:creator>
		<pubDate>Fri, 20 May 2011 04:15:53 +0000</pubDate>
		<guid isPermaLink="false">http://opensourcesmall.biz/?p=246#comment-237337</guid>
		<description>If you&#039;re using PHP or another language to send the 401, the browser does another request, sending the credentials the next time. Then you can check them and return something else -- 403 if they&#039;re bad, for example.

Don&#039;t use the web server authentication module for this...</description>
		<content:encoded><![CDATA[<p>If you&#8217;re using PHP or another language to send the 401, the browser does another request, sending the credentials the next time. Then you can check them and return something else &#8212; 403 if they&#8217;re bad, for example.</p>
<p>Don&#8217;t use the web server authentication module for this&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Technical note: HTTP Auth with AJAX by Chase</title>
		<link>http://opensourcesmall.biz/2008/06/technical-note-http-auth-with-ajax/comment-page-1/#comment-237336</link>
		<dc:creator>Chase</dc:creator>
		<pubDate>Fri, 20 May 2011 03:45:45 +0000</pubDate>
		<guid isPermaLink="false">http://opensourcesmall.biz/?p=246#comment-237336</guid>
		<description>How do you get the server to return an error code OTHER THAN 401 on the 2nd response when the credentials are bad?</description>
		<content:encoded><![CDATA[<p>How do you get the server to return an error code OTHER THAN 401 on the 2nd response when the credentials are bad?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Technical note: HTTP Auth with AJAX by freelock</title>
		<link>http://opensourcesmall.biz/2008/06/technical-note-http-auth-with-ajax/comment-page-1/#comment-233477</link>
		<dc:creator>freelock</dc:creator>
		<pubDate>Fri, 04 Feb 2011 18:31:41 +0000</pubDate>
		<guid isPermaLink="false">http://opensourcesmall.biz/?p=246#comment-233477</guid>
		<description>Well, as I understand it, you cannot avoid the first 401 response -- your browser will not send credentials until it receives this. However, once your browser has received a 200 response after the 401, it sends the credentials on all subsequent requests (until it gets another 401).

Are your requests being sent before the 200 response comes back?

I&#039;d suggest doing some initial request to establish the credentials that happens before you make any other requests. Then later requests should work fine.

However, I think I did have trouble getting this login process to work correctly in Chrome... I think I had to disable this http login approach because I couldn&#039;t get Chrome to work without throwing up an http auth dialog... This post is 2 1/2 years old!</description>
		<content:encoded><![CDATA[<p>Well, as I understand it, you cannot avoid the first 401 response &#8212; your browser will not send credentials until it receives this. However, once your browser has received a 200 response after the 401, it sends the credentials on all subsequent requests (until it gets another 401).</p>
<p>Are your requests being sent before the 200 response comes back?</p>
<p>I&#8217;d suggest doing some initial request to establish the credentials that happens before you make any other requests. Then later requests should work fine.</p>
<p>However, I think I did have trouble getting this login process to work correctly in Chrome&#8230; I think I had to disable this http login approach because I couldn&#8217;t get Chrome to work without throwing up an http auth dialog&#8230; This post is 2 1/2 years old!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Technical note: HTTP Auth with AJAX by russell</title>
		<link>http://opensourcesmall.biz/2008/06/technical-note-http-auth-with-ajax/comment-page-1/#comment-233457</link>
		<dc:creator>russell</dc:creator>
		<pubDate>Fri, 04 Feb 2011 02:27:50 +0000</pubDate>
		<guid isPermaLink="false">http://opensourcesmall.biz/?p=246#comment-233457</guid>
		<description>Hello, 
I came acroos your post and found it helpfull. 
I have a situation where I must make MANY calls from the  brower to the beckend. EACh of these calls (and there are over 200) gets a 401 response , and then the bowser sends  the credentials.
Do you know of a way to send the credentials on the first request, so as to avvoid the server sending the 401 and the client having to respond with the credebtials?
TIA,
Russell</description>
		<content:encoded><![CDATA[<p>Hello,<br />
I came acroos your post and found it helpfull.<br />
I have a situation where I must make MANY calls from the  brower to the beckend. EACh of these calls (and there are over 200) gets a 401 response , and then the bowser sends  the credentials.<br />
Do you know of a way to send the credentials on the first request, so as to avvoid the server sending the 401 and the client having to respond with the credebtials?<br />
TIA,<br />
Russell</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Software Project Management Tool: Trac by ak</title>
		<link>http://opensourcesmall.biz/2005/05/edgewall-software-trac/comment-page-1/#comment-230384</link>
		<dc:creator>ak</dc:creator>
		<pubDate>Thu, 25 Nov 2010 04:04:36 +0000</pubDate>
		<guid isPermaLink="false">http://opensourcesmall.biz/archives/2005/04/edgewall-software-trac#comment-230384</guid>
		<description>Just wanted to add the link as it didn&#039;t show in my message :

http://www.projelead.com</description>
		<content:encoded><![CDATA[<p>Just wanted to add the link as it didn&#8217;t show in my message :</p>
<p><a href="http://www.projelead.com" rel="nofollow">http://www.projelead.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Software Project Management Tool: Trac by ak</title>
		<link>http://opensourcesmall.biz/2005/05/edgewall-software-trac/comment-page-1/#comment-230383</link>
		<dc:creator>ak</dc:creator>
		<pubDate>Thu, 25 Nov 2010 04:03:09 +0000</pubDate>
		<guid isPermaLink="false">http://opensourcesmall.biz/archives/2005/04/edgewall-software-trac#comment-230383</guid>
		<description>Hi John,

Thought ProjeLead (project management software) might take a place in your next book :-)

Good luck and keep the great writing !

AK

Ps : sorry didn&#039;t use my regular email to avoid spam but feel free to contact me for feedback, comments or just chat.</description>
		<content:encoded><![CDATA[<p>Hi John,</p>
<p>Thought ProjeLead (project management software) might take a place in your next book <img src='http://opensourcesmall.biz/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Good luck and keep the great writing !</p>
<p>AK</p>
<p>Ps : sorry didn&#8217;t use my regular email to avoid spam but feel free to contact me for feedback, comments or just chat.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mythbusting PHP: 10 common myths about PHP by Vg</title>
		<link>http://opensourcesmall.biz/2008/02/mythbusting-php/comment-page-1/#comment-222152</link>
		<dc:creator>Vg</dc:creator>
		<pubDate>Mon, 07 Jun 2010 13:37:30 +0000</pubDate>
		<guid isPermaLink="false">http://opensourcesmall.biz/archives/2008/02/mythbusting-php/#comment-222152</guid>
		<description>PHP is a great scripting language no doubt. It has made possible, for programmers ranging from  dumb to geeks, to create fascinating server applications possible. And even, let them able to create live websites and applications, as PHP/Apache combination is available on all servers linux or windows, with least cost as compared to others. But...

There is a very big problem, when programmers opt php as a career as compared to .NET, Flex/Flash, C, C++, JAVA.  The reason mainly, it is not centrally controlled, when it comes to providing jobs through PHP. As PHP is opensource, it is taken up by companies, that are notorious as job-masters. While the companies that make .NET, Flex/Flash, C, C++, JAVA etc. have to maintain reputation of being good job-masters ( atleast in theories). However i know, there is no direct relationship, but this works indirectly.  I have almost always seen PHP companies, working on weekends, with there programmers engaged giving 16 hours a day. As i said, this is just indirect and blame cannot be put on PHP only. However, it&#039;s opensourceness and probably the lack of central control can be blamed. Not sure. :)</description>
		<content:encoded><![CDATA[<p>PHP is a great scripting language no doubt. It has made possible, for programmers ranging from  dumb to geeks, to create fascinating server applications possible. And even, let them able to create live websites and applications, as PHP/Apache combination is available on all servers linux or windows, with least cost as compared to others. But&#8230;</p>
<p>There is a very big problem, when programmers opt php as a career as compared to .NET, Flex/Flash, C, C++, JAVA.  The reason mainly, it is not centrally controlled, when it comes to providing jobs through PHP. As PHP is opensource, it is taken up by companies, that are notorious as job-masters. While the companies that make .NET, Flex/Flash, C, C++, JAVA etc. have to maintain reputation of being good job-masters ( atleast in theories). However i know, there is no direct relationship, but this works indirectly.  I have almost always seen PHP companies, working on weekends, with there programmers engaged giving 16 hours a day. As i said, this is just indirect and blame cannot be put on PHP only. However, it&#8217;s opensourceness and probably the lack of central control can be blamed. Not sure. <img src='http://opensourcesmall.biz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Me by Chetan</title>
		<link>http://opensourcesmall.biz/about-me/comment-page-1/#comment-220832</link>
		<dc:creator>Chetan</dc:creator>
		<pubDate>Sat, 08 May 2010 15:12:20 +0000</pubDate>
		<guid isPermaLink="false">http://opensourcesmall.biz/about-me/#comment-220832</guid>
		<description>Awesome resource for anyone interested in &quot;experimenting&quot; open source and possibly saving money and environment/climate too (yes I am serious Open Source software has lowest carbon foot print then any other software produced on the planet!).</description>
		<content:encoded><![CDATA[<p>Awesome resource for anyone interested in &#8220;experimenting&#8221; open source and possibly saving money and environment/climate too (yes I am serious Open Source software has lowest carbon foot print then any other software produced on the planet!).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Socialism, individualism, and open source by Courtney</title>
		<link>http://opensourcesmall.biz/2008/11/socialism-individualism-and-open-source/comment-page-1/#comment-217429</link>
		<dc:creator>Courtney</dc:creator>
		<pubDate>Thu, 11 Feb 2010 04:53:18 +0000</pubDate>
		<guid isPermaLink="false">http://opensourcesmall.biz/?p=283#comment-217429</guid>
		<description>Great post all around.</description>
		<content:encoded><![CDATA[<p>Great post all around.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

