<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>StupidZombie &#187; apache jakarta</title>
	<atom:link href="http://stupidzombie.com/blog/tag/apache-jakarta/feed/" rel="self" type="application/rss+xml" />
	<link>http://stupidzombie.com/blog</link>
	<description>Updates and news of Blockhead</description>
	<lastBuildDate>Wed, 28 Oct 2009 15:05:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>StupidZombie 1.1: Now faster</title>
		<link>http://stupidzombie.com/blog/2009/06/13/stupidzombie-11-now-faster/</link>
		<comments>http://stupidzombie.com/blog/2009/06/13/stupidzombie-11-now-faster/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 03:26:30 +0000</pubDate>
		<dc:creator>josevnz</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[ping]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[zombie]]></category>
		<category><![CDATA[apache commons]]></category>
		<category><![CDATA[apache jakarta]]></category>
		<category><![CDATA[stupidzombie]]></category>

		<guid isPermaLink="false">http://stupidzombie.com/blog/?p=99</guid>
		<description><![CDATA[Just finished branching StupidZombie 1.1. If you want to take a look on the code (making changes) then do the following: 1 svn co https://kenai.com/svn/stupidzombie~source-code-repository/Branches/1.1 So, what&#8217;s new? Well, some speedup came for free this time. I decided to upgrade all the major libraries of StupidZombie and some of them have important improvements in term [...]]]></description>
			<content:encoded><![CDATA[<p>Just finished branching StupidZombie 1.1. If you want to take a look on the code (making changes) then do the following:</p>

<div class="wp_codebox"><table><tr id="p993"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p99code3"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">svn</span> <span style="color: #c20cb9; font-weight: bold;">co</span> https:<span style="color: #000000; font-weight: bold;">//</span>kenai.com<span style="color: #000000; font-weight: bold;">/</span>svn<span style="color: #000000; font-weight: bold;">/</span>stupidzombie~source-code-repository<span style="color: #000000; font-weight: bold;">/</span>Branches<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">1.1</span></pre></td></tr></table></div>

<p>So, what&#8217;s new? Well, some speedup came for free this time. I decided to upgrade all the major libraries of StupidZombie and some of them have important improvements in term of speed and memory utilization, like the usage of the new class &#8216;XmlRpcLiteHttpTransportFactory&#8217;:</p>

<div class="wp_codebox"><table><tr id="p994"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code" id="p99code4"><pre class="java" style="font-family:monospace;">&nbsp;
<a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Ahashmap+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">HashMap</span></a> <span style="color: #339933;">&lt;</span>String, Object<span style="color: #339933;">&gt;</span>result <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> HashMap<span style="color: #339933;">&lt;</span>String, Object<span style="color: #339933;">&gt;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
XmlRpcClient xmlrpc <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">null</span><span style="color: #339933;">;</span>
XmlRpcClientConfigImpl config <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> XmlRpcClientConfigImpl<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">try</span> <span style="color: #009900;">&#123;</span>
config.<span style="color: #006633;">setServerURL</span><span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Aurl+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">URL</span></a><span style="color: #009900;">&#40;</span>BUNDLE.<span style="color: #006633;">getString</span><span style="color: #009900;">&#40;</span>directory<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
xmlrpc <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> XmlRpcClient <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
xmlrpc.<span style="color: #006633;">setConfig</span><span style="color: #009900;">&#40;</span>config<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
xmlrpc.<span style="color: #006633;">setTransportFactory</span><span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> XmlRpcLiteHttpTransportFactory<span style="color: #009900;">&#40;</span>xmlrpc<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Aobject+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">Object</span></a><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> params <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Aobject+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">Object</span></a><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#123;</span>name, url<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
result <span style="color: #339933;">=</span>
<span style="color: #009900;">&#40;</span>HashMap<span style="color: #339933;">&lt;</span>String, Object<span style="color: #339933;">&gt;</span><span style="color: #009900;">&#41;</span> xmlrpc.<span style="color: #006633;">execute</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;weblogUpdates.ping&quot;</span>, params<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Next update is to fix (once for all) the menu handling in OSX. After that localization is the next milestone!</p>
]]></content:encoded>
			<wfw:commentRss>http://stupidzombie.com/blog/2009/06/13/stupidzombie-11-now-faster/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
