<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- generator="wordpress/2.2.2" --><rss 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:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" version="2.0">

<channel>
	<title>Blogging at the speed of thought</title>
	<link>http://aruld.info</link>
	<description>Life, Technology and More</description>
	<pubDate>Tue, 22 Sep 2009 01:55:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<geo:lat>45.778852</geo:lat><geo:long>-108.574208</geo:long><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/aruld" type="application/rss+xml" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">aruld</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Accessing RESTful services configured with SSL using RestTemplate</title>
		<link>http://aruld.info/accessing-restful-services-configured-with-ssl-using-resttemplate/</link>
		<comments>http://aruld.info/accessing-restful-services-configured-with-ssl-using-resttemplate/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 05:28:20 +0000</pubDate>
		<dc:creator>Arul</dc:creator>
		
		<category><![CDATA[REST]]></category>

		<category><![CDATA[Spring]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[Web Frameworks]]></category>

		<category><![CDATA[JEE]]></category>

		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://aruld.info/accessing-restful-services-configured-with-ssl-using-resttemplate/</guid>
		<description><![CDATA[SSL enabled RESTful services are quite easier to develop and test using Jersey, Grizzly and RestTemplate.
Jersey (resource development)
Grizzly Web Server (resource configuration and deployment)
Spring 3 RestTemplate backed by Commons HTTP Client (resource access)
In a moment, you will notice how all these nicely fit the bill. Let us start with the POM for the maven fans.

 [...]]]></description>
		<wfw:commentRss>http://aruld.info/accessing-restful-services-configured-with-ssl-using-resttemplate/feed/</wfw:commentRss>
		</item>
		<item>
		<title>RestTemplate, the Spring way of accessing RESTful services</title>
		<link>http://aruld.info/resttemplate-the-spring-way-of-accessing-restful-services/</link>
		<comments>http://aruld.info/resttemplate-the-spring-way-of-accessing-restful-services/#comments</comments>
		<pubDate>Mon, 04 May 2009 03:27:34 +0000</pubDate>
		<dc:creator>Arul</dc:creator>
		
		<category><![CDATA[Spring]]></category>

		<category><![CDATA[REST]]></category>

		<category><![CDATA[Web Frameworks]]></category>

		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://aruld.info/resttemplate-the-spring-way-of-accessing-restful-services/</guid>
		<description><![CDATA[The central API for accessing RESTful services in Spring 3 is RestTemplate. It is like any other template mechanism provided by Spring for the client side access. The default implementation uses the java.net package for creating HTTP requests. RestTemplate can be backed by Commons HttpClient using ClientHttpRequestFactory. Using Commons HttpClient as the backend implementation supports [...]]]></description>
		<wfw:commentRss>http://aruld.info/resttemplate-the-spring-way-of-accessing-restful-services/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Jersey 1.0.3 improves WADL support</title>
		<link>http://aruld.info/jersey-103-improves-wadl-support/</link>
		<comments>http://aruld.info/jersey-103-improves-wadl-support/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 03:59:10 +0000</pubDate>
		<dc:creator>Arul</dc:creator>
		
		<category><![CDATA[REST]]></category>

		<category><![CDATA[Web Frameworks]]></category>

		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://aruld.info/jersey-103-improves-wadl-support/</guid>
		<description><![CDATA[Jersey 1.0.3 was released this week. This release has quite a few interesting new features and improvements to some of its existing functionality. Paul&#8217;s blog entry gives the specifics of this release. One of the cool features in this release is the ability to inject WadlApplicationContext in resources. This provides access to the WADL JAXB [...]]]></description>
		<wfw:commentRss>http://aruld.info/jersey-103-improves-wadl-support/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CXF 2.2 in Action - services design simplified</title>
		<link>http://aruld.info/cxf-22-in-action-services-design-simplified/</link>
		<comments>http://aruld.info/cxf-22-in-action-services-design-simplified/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 05:32:05 +0000</pubDate>
		<dc:creator>Arul</dc:creator>
		
		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[REST]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[SOA]]></category>

		<category><![CDATA[Architecture]]></category>

		<guid isPermaLink="false">http://aruld.info/cxf-22-in-action-services-design-simplified/</guid>
		<description><![CDATA[I was playing with CXF 2.2 over the weekend. I would like to share my experience in building a simple blogger service using CXF which provides seamless access to SOAP and REST web services. You would soon realize how services design and development has become easier with this new CXF release. Lets dive into the [...]]]></description>
		<wfw:commentRss>http://aruld.info/cxf-22-in-action-services-design-simplified/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CXF 2.2 voting begins</title>
		<link>http://aruld.info/cxf-22-voting-begins/</link>
		<comments>http://aruld.info/cxf-22-voting-begins/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 05:02:12 +0000</pubDate>
		<dc:creator>Arul</dc:creator>
		
		<category><![CDATA[REST]]></category>

		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[SOA]]></category>

		<guid isPermaLink="false">http://aruld.info/cxf-22-voting-begins/</guid>
		<description><![CDATA[I have been waiting for this release for quite some time mainly because it fully supports JSR 311 API and its very own Client API. It could become one stop solution for developers building and deploying SOAP &#038; REST web services. 
Major features of this release include :
~ JAX-RS 1.0 support
~ WS-SecurityPolicy support
~ WS-SecureConversation support
~ [...]]]></description>
		<wfw:commentRss>http://aruld.info/cxf-22-voting-begins/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Garbage First (G1) GC debuts with Java SE 6 update 14</title>
		<link>http://aruld.info/garbage-first-g1-gc-debuts-with-java-se-6-update-14/</link>
		<comments>http://aruld.info/garbage-first-g1-gc-debuts-with-java-se-6-update-14/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 18:50:36 +0000</pubDate>
		<dc:creator>Arul</dc:creator>
		
		<category><![CDATA[JVM]]></category>

		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://aruld.info/garbage-first-g1-gc-debuts-with-java-se-6-update-14/</guid>
		<description><![CDATA[Tony Printezis provided some insight into G1 in JavaOne last year. Now, we can see G1 in action with the latest JDK 6 builds. HotSpot JVM features this new collection mechanism in the recent Java SE update 14 early access builds (since b02). It is not enabled by default as this is still an experimental [...]]]></description>
		<wfw:commentRss>http://aruld.info/garbage-first-g1-gc-debuts-with-java-se-6-update-14/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Handling multiparts in Restful applications using CXF</title>
		<link>http://aruld.info/handling-multiparts-in-restful-applications-using-cxf/</link>
		<comments>http://aruld.info/handling-multiparts-in-restful-applications-using-cxf/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 08:08:12 +0000</pubDate>
		<dc:creator>Arul</dc:creator>
		
		<category><![CDATA[REST]]></category>

		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://aruld.info/handling-multiparts-in-restful-applications-using-cxf/</guid>
		<description><![CDATA[Sergey recently implemented multipart support for CXF JAXRS implementation which is available in 2.2-SNAPSHOT. He talks more about the feature in his blog here. It certainly provides a simpler programming model like any other CXF frontends, which I always liked with the CXF project and prime reason for its growing popularity among developers.  It [...]]]></description>
		<wfw:commentRss>http://aruld.info/handling-multiparts-in-restful-applications-using-cxf/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Java SE 6 Update 12 early access features 64-bit Java Plug-In</title>
		<link>http://aruld.info/java-se-6-update-12-early-access-features-64-bit-java-plug-in/</link>
		<comments>http://aruld.info/java-se-6-update-12-early-access-features-64-bit-java-plug-in/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 04:33:06 +0000</pubDate>
		<dc:creator>Arul</dc:creator>
		
		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://aruld.info/java-se-6-update-12-early-access-features-64-bit-java-plug-in/</guid>
		<description><![CDATA[Support for 64-bit Java plug-in finally available with Update 12 early access. This feature request was a 4 year old RFE in Sun&#8217;s bug database. I just installed this plug-in on my 64-bit vista. Its nice to see your 64-bit browsers verify Java by clicking here. Sun is planning to open source Java Web Start [...]]]></description>
		<wfw:commentRss>http://aruld.info/java-se-6-update-12-early-access-features-64-bit-java-plug-in/feed/</wfw:commentRss>
		</item>
		<item>
		<title>LoanDB - loan originations system reference implementation</title>
		<link>http://aruld.info/loandb-loan-originations-system-reference-implementation/</link>
		<comments>http://aruld.info/loandb-loan-originations-system-reference-implementation/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 06:27:16 +0000</pubDate>
		<dc:creator>Arul</dc:creator>
		
		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Web Frameworks]]></category>

		<category><![CDATA[JEE]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[SOA]]></category>

		<category><![CDATA[Architecture]]></category>

		<guid isPermaLink="false">http://aruld.info/loandb-loan-originations-system-reference-implementation/</guid>
		<description><![CDATA[LoanDB is a loan originations system reference implementation. This project will be developed using Java technology frameworks such as Spring (Web Beans in future?), Hibernate (JPA), CXF (JAXWS) and Jersey (JAXRS). The concepts are based on my original toy implementation for the loan processing NetBeans tutorial. The tutorial was primarily focused on developing JPA and [...]]]></description>
		<wfw:commentRss>http://aruld.info/loandb-loan-originations-system-reference-implementation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Handling multiparts in Restful applications using Jersey</title>
		<link>http://aruld.info/handling-multiparts-in-restful-applications-using-jersey/</link>
		<comments>http://aruld.info/handling-multiparts-in-restful-applications-using-jersey/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 05:28:33 +0000</pubDate>
		<dc:creator>Arul</dc:creator>
		
		<category><![CDATA[REST]]></category>

		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://aruld.info/handling-multiparts-in-restful-applications-using-jersey/</guid>
		<description><![CDATA[Multipart API in Jersey was made available by Craig in the recent 1.0.1 release. This API provides a simple mechanism to read and write body parts from within a restful application. Lets walk through a simple project resource which processes two parts, one JAXB bean and other an image. 
Add the following jersey maven dependencies [...]]]></description>
		<wfw:commentRss>http://aruld.info/handling-multiparts-in-restful-applications-using-jersey/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
