<?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 Pearl Tech</title>
	<atom:link href="http://blog.pearltechnology.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.pearltechnology.com</link>
	<description></description>
	<lastBuildDate>Tue, 10 May 2011 12:49:28 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Microsoft Certification Prep Tips by Joe Kraft</title>
		<link>http://blog.pearltechnology.com/microsoft-certification-prep-tips/comment-page-1/#comment-238</link>
		<dc:creator>Joe Kraft</dc:creator>
		<pubDate>Tue, 10 May 2011 12:49:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pearltechnology.com/?p=1218#comment-238</guid>
		<description>I was wondering how you&#039;ve been so successful with your exams, great post and great information for anyone looking to grow their knowledge without taking short cuts.</description>
		<content:encoded><![CDATA[<p>I was wondering how you&#8217;ve been so successful with your exams, great post and great information for anyone looking to grow their knowledge without taking short cuts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Focus on Security in the SDLC by Joe Kraft</title>
		<link>http://blog.pearltechnology.com/focus-on-security-in-the-sdlc/comment-page-1/#comment-221</link>
		<dc:creator>Joe Kraft</dc:creator>
		<pubDate>Fri, 01 Apr 2011 18:18:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pearltechnology.com/?p=1140#comment-221</guid>
		<description>A site that I missed before is Homeland Security&#039;s SDLC Process: https://buildsecurityin.us-cert.gov/bsi/articles/knowledge/sdlc/326-BSI.html  It&#039;s worth a read...</description>
		<content:encoded><![CDATA[<p>A site that I missed before is Homeland Security&#8217;s SDLC Process: <a href="https://buildsecurityin.us-cert.gov/bsi/articles/knowledge/sdlc/326-BSI.html" rel="nofollow">https://buildsecurityin.us-cert.gov/bsi/articles/knowledge/sdlc/326-BSI.html</a>  It&#8217;s worth a read&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Case Insensitive XML Search by Geer</title>
		<link>http://blog.pearltechnology.com/case-insensitive-xml-search/comment-page-1/#comment-219</link>
		<dc:creator>Geer</dc:creator>
		<pubDate>Thu, 31 Mar 2011 13:51:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pearltechnology.com/?p=1043#comment-219</guid>
		<description>Hey Aaron,
Great article. Using Linq to XML really simplifies the coding. With XPath 1.0, there is a function called &quot;translate&quot; which can convert a string to lower/upper cases. An example would be,
translate(&quot;Your string&quot;,&quot;abcde...other lower case letters...xyz&quot;,&quot;ABCDE...OTHER UPPER CASE LETTERS...XYZ&quot;). 
It converts &quot;Your String&quot; to &quot;YOUR STRING&quot;.  However, W3C has a note on this function, saying &quot;The translate function is not a sufficient solution for case conversion in all languages. A future version of XPath may provide additional functions for case conversion&quot;. I guess I just did what it recommend us to not do. Also, the example above can only handle English letters.
Another comment on this is that if your XML data is in SQL Server Database (2005 or later), it&#039;s possible to perform the search within the database using XPath 2.0. Your search options/criteria could be passed in a Stored Procedure (for an example) as parameters, and implement a wrapper method in your application layer to make it reusable. I am not sure whether this would be more efficient than the Linq to XML approach, but the latter is definitely more efficient from the coding standpoint.</description>
		<content:encoded><![CDATA[<p>Hey Aaron,<br />
Great article. Using Linq to XML really simplifies the coding. With XPath 1.0, there is a function called &#8220;translate&#8221; which can convert a string to lower/upper cases. An example would be,<br />
translate(&#8221;Your string&#8221;,&#8221;abcde&#8230;other lower case letters&#8230;xyz&#8221;,&#8221;ABCDE&#8230;OTHER UPPER CASE LETTERS&#8230;XYZ&#8221;).<br />
It converts &#8220;Your String&#8221; to &#8220;YOUR STRING&#8221;.  However, W3C has a note on this function, saying &#8220;The translate function is not a sufficient solution for case conversion in all languages. A future version of XPath may provide additional functions for case conversion&#8221;. I guess I just did what it recommend us to not do. Also, the example above can only handle English letters.<br />
Another comment on this is that if your XML data is in SQL Server Database (2005 or later), it&#8217;s possible to perform the search within the database using XPath 2.0. Your search options/criteria could be passed in a Stored Procedure (for an example) as parameters, and implement a wrapper method in your application layer to make it reusable. I am not sure whether this would be more efficient than the Linq to XML approach, but the latter is definitely more efficient from the coding standpoint.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Printer Friendly jQuery by Gabriel</title>
		<link>http://blog.pearltechnology.com/printer-friendly-jquery/comment-page-1/#comment-195</link>
		<dc:creator>Gabriel</dc:creator>
		<pubDate>Mon, 07 Mar 2011 19:56:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pearltechnology.com/?p=344#comment-195</guid>
		<description>Neat approach on the coding side, but it has one major flaw from the usability point of view: it invalidates the user-friendliness of having a print style sheet. That is, instead of the user simply hitting File &gt; Print and the page prints out formatted, users now have to hit the print icon for any widgets that you may have on the page.</description>
		<content:encoded><![CDATA[<p>Neat approach on the coding side, but it has one major flaw from the usability point of view: it invalidates the user-friendliness of having a print style sheet. That is, instead of the user simply hitting File &gt; Print and the page prints out formatted, users now have to hit the print icon for any widgets that you may have on the page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Are you afraid of PM? by EmilyH</title>
		<link>http://blog.pearltechnology.com/are-you-afraid-of-pm/comment-page-1/#comment-185</link>
		<dc:creator>EmilyH</dc:creator>
		<pubDate>Fri, 25 Feb 2011 16:27:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pearltechnology.com/?p=969#comment-185</guid>
		<description>Great points Angelika! I agree that to be successful you have got to make the team see that you are there to help them.</description>
		<content:encoded><![CDATA[<p>Great points Angelika! I agree that to be successful you have got to make the team see that you are there to help them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Are you afraid of PM? by Angelika Smith</title>
		<link>http://blog.pearltechnology.com/are-you-afraid-of-pm/comment-page-1/#comment-184</link>
		<dc:creator>Angelika Smith</dc:creator>
		<pubDate>Fri, 25 Feb 2011 15:57:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pearltechnology.com/?p=969#comment-184</guid>
		<description>I am a project manager that lives in the world of documentation and schedules. I have found this blog to &quot;hit the nail on the head&quot;! I have, several times, encountered individuals that don&#039;t want to let me into their project world. I have yet to find a team that doesn&#039;t have at least 1 (sometimes more)person that disagrees with project management. I have heard comments such as; &quot;I don&#039;t have time for this.&quot; &quot;I have a plan in my head.&quot; &quot;I have never used PM before and I did just fine!&quot;. The way that I make them accept project management is by getting to know them (who are you? What do you do?) and I am genuinely interested in their response. I am not afraid to ask if I don&#039;t understand. I believe that the biggest part of being a successful project manager is caring about the TEAM and the PROJECT.</description>
		<content:encoded><![CDATA[<p>I am a project manager that lives in the world of documentation and schedules. I have found this blog to &#8220;hit the nail on the head&#8221;! I have, several times, encountered individuals that don&#8217;t want to let me into their project world. I have yet to find a team that doesn&#8217;t have at least 1 (sometimes more)person that disagrees with project management. I have heard comments such as; &#8220;I don&#8217;t have time for this.&#8221; &#8220;I have a plan in my head.&#8221; &#8220;I have never used PM before and I did just fine!&#8221;. The way that I make them accept project management is by getting to know them (who are you? What do you do?) and I am genuinely interested in their response. I am not afraid to ask if I don&#8217;t understand. I believe that the biggest part of being a successful project manager is caring about the TEAM and the PROJECT.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AJAX-aware Session Expiry in ASP.NET MVC by AaronH</title>
		<link>http://blog.pearltechnology.com/ajax-aware-session-expiry-in-asp-net-mvc/comment-page-1/#comment-139</link>
		<dc:creator>AaronH</dc:creator>
		<pubDate>Thu, 28 Oct 2010 16:34:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pearltechnology.com/?p=811#comment-139</guid>
		<description>Great comment! When you are using multiple application servers (in farm scenario), you must make sure the machine key matches or you will certainly have issues with session as you indicated.</description>
		<content:encoded><![CDATA[<p>Great comment! When you are using multiple application servers (in farm scenario), you must make sure the machine key matches or you will certainly have issues with session as you indicated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AJAX-aware Session Expiry in ASP.NET MVC by Geer</title>
		<link>http://blog.pearltechnology.com/ajax-aware-session-expiry-in-asp-net-mvc/comment-page-1/#comment-138</link>
		<dc:creator>Geer</dc:creator>
		<pubDate>Wed, 27 Oct 2010 13:07:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pearltechnology.com/?p=811#comment-138</guid>
		<description>That’s a smart way to get around this. One more note about this is that, in a web application with Windows Authentication (without a login page), this can be resolved by simply adding a machineKey tag in the web.config. The machineKey tag will define a static encryption key which will be used by IIS to encrypt/decrypt session/view state. Without it, IIS will use different encryption key for each session which will cause problem on the first request after the session expires. It is similar for handling session/view state encryption in a web farm scenario.
Details about the machineKey for web farm can be found on MSDN:
http://msdn.microsoft.com/en-us/library/ff649308.aspx#paght000007_webfarmdeploymentconsiderations</description>
		<content:encoded><![CDATA[<p>That’s a smart way to get around this. One more note about this is that, in a web application with Windows Authentication (without a login page), this can be resolved by simply adding a machineKey tag in the web.config. The machineKey tag will define a static encryption key which will be used by IIS to encrypt/decrypt session/view state. Without it, IIS will use different encryption key for each session which will cause problem on the first request after the session expires. It is similar for handling session/view state encryption in a web farm scenario.<br />
Details about the machineKey for web farm can be found on MSDN:<br />
<a href="http://msdn.microsoft.com/en-us/library/ff649308.aspx#paght000007_webfarmdeploymentconsiderations" rel="nofollow">http://msdn.microsoft.com/en-us/library/ff649308.aspx#paght000007_webfarmdeploymentconsiderations</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FileUpload Control not working in UpdatePanel by Masthanvali Shaik</title>
		<link>http://blog.pearltechnology.com/fileupload-control-not-working-in-updatepanel/comment-page-1/#comment-133</link>
		<dc:creator>Masthanvali Shaik</dc:creator>
		<pubDate>Sat, 09 Oct 2010 11:14:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pearltechnology.com/?p=606#comment-133</guid>
		<description>This solved my image upload problem which i am trying to solve from many hours. Thanks a lot</description>
		<content:encoded><![CDATA[<p>This solved my image upload problem which i am trying to solve from many hours. Thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Deploying to Windows Azure by Another</title>
		<link>http://blog.pearltechnology.com/deploying-to-windows-azure/comment-page-1/#comment-57</link>
		<dc:creator>Another</dc:creator>
		<pubDate>Thu, 14 Jan 2010 18:48:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pearltechnology.com/?p=504#comment-57</guid>
		<description>&lt;strong&gt;Title...&lt;/strong&gt;

Very interesting post. I would like to link back to it....</description>
		<content:encoded><![CDATA[<p><strong>Title&#8230;</strong></p>
<p>Very interesting post. I would like to link back to it&#8230;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

