<?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>Sun, 07 Mar 2010 19:20:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/aruld" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="aruld" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>45.778852</geo:lat><geo:long>-108.574208</geo:long><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><item>
		<title>CXF + JPA Tutorial moved to Google Sites</title>
		<link>http://aruld.info/cxf-jpa-tutorial-moved-to-google-sites/</link>
		<comments>http://aruld.info/cxf-jpa-tutorial-moved-to-google-sites/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 04:18:21 +0000</pubDate>
		<dc:creator>Arul</dc:creator>
		
		<category><![CDATA[NetBeans]]></category>

		<guid isPermaLink="false">http://aruld.info/cxf-jpa-tutorial-moved-to-google-sites/</guid>
		<description><![CDATA[Last week, I migrated the tutorial &#8220;Developing a loan processing application using Apache CXF &#038; JPA in NetBeans&#8221; from NetBeans wiki to Google Sites. The NetBeans wiki migration late last year screwed up the contents of both the tutorials that I had contributed to NetBeans. Considering the future of NetBeans infrastructure, I decided to move [...]]]></description>
		<wfw:commentRss>http://aruld.info/cxf-jpa-tutorial-moved-to-google-sites/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SOAP over RESTy Client</title>
		<link>http://aruld.info/soap-over-resty-client/</link>
		<comments>http://aruld.info/soap-over-resty-client/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 07:28:52 +0000</pubDate>
		<dc:creator>Arul</dc:creator>
		
		<category><![CDATA[REST]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[SOA]]></category>

		<guid isPermaLink="false">http://aruld.info/soap-over-resty-client/</guid>
		<description><![CDATA[JAX-RS runtime allows applications to supply entity providers which maps services between representations (via @Produces and @Consumes) and their Java types. The entity provider interfaces MessageBodyReader and MessageBodyWriter defines the contract that supports the conversion of a stream to a Java type and vice versa. 
Lets write a simple JAXRS provider for handling a SOAPMessage [...]]]></description>
		<wfw:commentRss>http://aruld.info/soap-over-resty-client/feed/</wfw:commentRss>
		</item>
		<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>
	</channel>
</rss>
