<?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 Java Blog</title>
	<atom:link href="http://blog.teamextension.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.teamextension.com</link>
	<description>blog.teamextension.com</description>
	<lastBuildDate>Thu, 10 May 2012 04:42:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Firefox Add-on Builder Hello World by Rodrigo</title>
		<link>http://blog.teamextension.com/firefox-add-on-builder-hello-world-317/comment-page-1#comment-2983</link>
		<dc:creator>Rodrigo</dc:creator>
		<pubDate>Thu, 10 May 2012 04:42:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.teamextension.com/?p=317#comment-2983</guid>
		<description>Hello, 

I wonder if is possible to use java applet</description>
		<content:encoded><![CDATA[<p>Hello, </p>
<p>I wonder if is possible to use java applet</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Comparing Apache Tomcat and TomEE by David Blevins</title>
		<link>http://blog.teamextension.com/comparing-apache-tomcat-and-tomee-913/comment-page-1#comment-2980</link>
		<dc:creator>David Blevins</dc:creator>
		<pubDate>Mon, 07 May 2012 18:21:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.teamextension.com/?p=913#comment-2980</guid>
		<description>Very excellent post!  The mime types is an oversight, thanks for pointing that out!

Fully agree on #6.  Library conflicts are likely to be the most common issue.  Slf4j is probably going to be the most common offender.  In the past people had issues with asm conflicts so we repackaged that code as org.apache.xbean.asm via the maven shade plugin.  We can do that for slf4j or any other small library.  It does complicate the build a bit, so we only do that once people report issues.

So note to all readers, if you do have a library conflict, please let us know!</description>
		<content:encoded><![CDATA[<p>Very excellent post!  The mime types is an oversight, thanks for pointing that out!</p>
<p>Fully agree on #6.  Library conflicts are likely to be the most common issue.  Slf4j is probably going to be the most common offender.  In the past people had issues with asm conflicts so we repackaged that code as org.apache.xbean.asm via the maven shade plugin.  We can do that for slf4j or any other small library.  It does complicate the build a bit, so we only do that once people report issues.</p>
<p>So note to all readers, if you do have a library conflict, please let us know!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Migrating from HttpClient 3.1 to HttpClient 4.0 by eyuzwa</title>
		<link>http://blog.teamextension.com/migrating-from-httpclient-3-1-to-4-0-34/comment-page-1#comment-2789</link>
		<dc:creator>eyuzwa</dc:creator>
		<pubDate>Mon, 12 Mar 2012 18:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.teamextension.com/?p=34#comment-2789</guid>
		<description>@Triguna, you have to use the 4.0 lingo of &quot;entities&quot;. You need to basically create a list of name,value pairs. There&#039;s more details in the link referenced in this post (the 4.0.3 Tutorial). 

Here&#039;s a snippet:
List formparams = new ArrayList();
formparams.add(new BasicNameValuePair(&quot;param1&quot;, &quot;value1&quot;));
formparams.add(new BasicNameValuePair(&quot;param2&quot;, &quot;value2&quot;));
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(formparams, &quot;UTF-8&quot;);
HttpPost httppost = new HttpPost(&quot;http://localhost/handler.do&quot;);
httppost.setEntity(entity);

hth,</description>
		<content:encoded><![CDATA[<p>@Triguna, you have to use the 4.0 lingo of &#8220;entities&#8221;. You need to basically create a list of name,value pairs. There&#8217;s more details in the link referenced in this post (the 4.0.3 Tutorial). </p>
<p>Here&#8217;s a snippet:<br />
List formparams = new ArrayList();<br />
formparams.add(new BasicNameValuePair(&#8220;param1&#8243;, &#8220;value1&#8243;));<br />
formparams.add(new BasicNameValuePair(&#8220;param2&#8243;, &#8220;value2&#8243;));<br />
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(formparams, &#8220;UTF-8&#8243;);<br />
HttpPost httppost = new HttpPost(&#8220;http://localhost/handler.do&#8221;);<br />
httppost.setEntity(entity);</p>
<p>hth,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enable Java Assertions in Eclipse by mickw</title>
		<link>http://blog.teamextension.com/enable-java-assertions-in-eclipse-798/comment-page-1#comment-2568</link>
		<dc:creator>mickw</dc:creator>
		<pubDate>Fri, 09 Mar 2012 15:23:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.teamextension.com/?p=798#comment-2568</guid>
		<description>thanks v much, can get my assignment started now!</description>
		<content:encoded><![CDATA[<p>thanks v much, can get my assignment started now!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Migrating from HttpClient 3.1 to HttpClient 4.0 by Triguna</title>
		<link>http://blog.teamextension.com/migrating-from-httpclient-3-1-to-4-0-34/comment-page-1#comment-2013</link>
		<dc:creator>Triguna</dc:creator>
		<pubDate>Sat, 25 Feb 2012 12:26:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.teamextension.com/?p=34#comment-2013</guid>
		<description>How to migrate setRequestEntity or setRequestBody of a PostMethod to HttpPost? Please help.

Thanks,
Triguna</description>
		<content:encoded><![CDATA[<p>How to migrate setRequestEntity or setRequestBody of a PostMethod to HttpPost? Please help.</p>
<p>Thanks,<br />
Triguna</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Checkout Fees Download 2010 by Steph</title>
		<link>http://blog.teamextension.com/google-checkout-fees-download-2010-277/comment-page-1#comment-1671</link>
		<dc:creator>Steph</dc:creator>
		<pubDate>Sun, 22 Jan 2012 18:51:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.teamextension.com/?p=277#comment-1671</guid>
		<description>Thanks so much! This still works.</description>
		<content:encoded><![CDATA[<p>Thanks so much! This still works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on YUI Compressor in Java by llech</title>
		<link>http://blog.teamextension.com/yui-compressor-in-java-246/comment-page-1#comment-1669</link>
		<dc:creator>llech</dc:creator>
		<pubDate>Fri, 13 Jan 2012 15:40:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.teamextension.com/?p=246#comment-1669</guid>
		<description>Please note there are known issues when you try to use YUI Compressor in web application. They are described f.g. on StackOverflow topic:
http://stackoverflow.com/questions/6652550/yui-compressor-stringindexoutofboundsexception-on-jboss</description>
		<content:encoded><![CDATA[<p>Please note there are known issues when you try to use YUI Compressor in web application. They are described f.g. on StackOverflow topic:<br />
<a href="http://stackoverflow.com/questions/6652550/yui-compressor-stringindexoutofboundsexception-on-jboss" rel="nofollow">http://stackoverflow.com/questions/6652550/yui-compressor-stringindexoutofboundsexception-on-jboss</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Started with AWS Elastic Beanstalk by vhanded</title>
		<link>http://blog.teamextension.com/getting-started-with-aws-elastic-beanstalk-179/comment-page-1#comment-1634</link>
		<dc:creator>vhanded</dc:creator>
		<pubDate>Fri, 25 Nov 2011 03:32:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.teamextension.com/?p=179#comment-1634</guid>
		<description>Great, this provided me a starting point to AWS.  They should really have AWS for Dummies.</description>
		<content:encoded><![CDATA[<p>Great, this provided me a starting point to AWS.  They should really have AWS for Dummies.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Checkout Fees Download 2010 by william</title>
		<link>http://blog.teamextension.com/google-checkout-fees-download-2010-277/comment-page-1#comment-1616</link>
		<dc:creator>william</dc:creator>
		<pubDate>Wed, 05 Oct 2011 19:20:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.teamextension.com/?p=277#comment-1616</guid>
		<description>Thats very cool, Thanks, saved me some bloody fingers.

Wm</description>
		<content:encoded><![CDATA[<p>Thats very cool, Thanks, saved me some bloody fingers.</p>
<p>Wm</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eclipse Indigo on Java 7 by Bienvenido David</title>
		<link>http://blog.teamextension.com/eclipse-indigo-on-java-7-388/comment-page-1#comment-1408</link>
		<dc:creator>Bienvenido David</dc:creator>
		<pubDate>Thu, 04 Aug 2011 21:23:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.teamextension.com/?p=388#comment-1408</guid>
		<description>You can add -XX:MaxPermSize=512m at the end of eclipse.ini if you wish to keep using Java 7.</description>
		<content:encoded><![CDATA[<p>You can add -XX:MaxPermSize=512m at the end of eclipse.ini if you wish to keep using Java 7.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: blog.teamextension.com @ 2012-05-18 20:15:52 -->
