<?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 Insane Programming</title>
	<atom:link href="http://www.insaneprogramming.be/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.insaneprogramming.be</link>
	<description>Java ramblings and finds on the net</description>
	<lastBuildDate>Fri, 25 Jan 2013 15:33:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Hibernate’s bidirectional @OneToOne and lazy loading by Connie Singleton</title>
		<link>http://www.insaneprogramming.be/?p=355&#038;cpage=1#comment-424</link>
		<dc:creator>Connie Singleton</dc:creator>
		<pubDate>Fri, 25 Jan 2013 15:33:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.insaneprogramming.be/?p=355#comment-424</guid>
		<description>Which ConnnectionProvider are you using? If its not DatasourceConnectionProvider, then it is probably doing connection pooling. This can cause problems in certain environments. Pooling may be disabled for DriverManagerConnectionProvider by setting hibernate.connection.pool_size=0 in hibernate.properties.</description>
		<content:encoded><![CDATA[<p>Which ConnnectionProvider are you using? If its not DatasourceConnectionProvider, then it is probably doing connection pooling. This can cause problems in certain environments. Pooling may be disabled for DriverManagerConnectionProvider by setting hibernate.connection.pool_size=0 in hibernate.properties.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a REST service with CXF and Spring in 10 minutes by jcllings</title>
		<link>http://www.insaneprogramming.be/?p=140&#038;cpage=2#comment-313</link>
		<dc:creator>jcllings</dc:creator>
		<pubDate>Sun, 15 Jul 2012 05:51:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.insaneprogramming.be/?p=140#comment-313</guid>
		<description>Could use some tips on how to convert this to an XML base. Tried just changing the @Produces to &quot;application/xml&quot; but then in my browser I get a &quot;not well formed&quot; error. This tells me that the mime type changed but the output was not actually XML. 

What I want is to add enough info the the code example so that the user can  do this easily.</description>
		<content:encoded><![CDATA[<p>Could use some tips on how to convert this to an XML base. Tried just changing the @Produces to &#8220;application/xml&#8221; but then in my browser I get a &#8220;not well formed&#8221; error. This tells me that the mime type changed but the output was not actually XML. </p>
<p>What I want is to add enough info the the code example so that the user can  do this easily.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why I never use the Maven release plugin by Aaron</title>
		<link>http://www.insaneprogramming.be/?p=362&#038;cpage=1#comment-311</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Sat, 14 Jul 2012 11:56:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.insaneprogramming.be/?p=362#comment-311</guid>
		<description>Just a couple of observations I find the release plugin works perfectly fine for individual components such as shared libraries and to some extend war files. What your talking about is the overall release and deployment process and I agree this can&#039;t be solved by a single plugin.

The original intent of the release plugin as I understand it was around releasing a single artifact and not an entire application and like a lot of other things in maven if you try and color outside the lines your in for a world of pain :)

What I tend to find where the release plugin falls over is when you attempt to use it on a monolithic project where you have a single source repo with a whole bunch or jar/war modules that get packaged together maybe by an assembly. So the version of the jar modules is almost irrelevant as they get bundled into the war module to having them in a central maven repo isn&#039;t required as they are only ever included in a war.

One other thing I&#039;m a big advocate for using the same binary artifact that was built by my CI process in all environments. So when I make a Candiate Release and it finally passes QA I simply re-tag the CR release as the production release rather than cut another release. Because in reality these newly created artifacts aren&#039;t the same as the one that got QA&#039;ed and unless you go through the QA process again you can&#039;t be 100% confident. So rather than using the CR convention I tend to use a build number and use this a communication tool between the different teams. E.g version 1.2.1-build-54 passed QA and is ready for production.

Just my 2cents</description>
		<content:encoded><![CDATA[<p>Just a couple of observations I find the release plugin works perfectly fine for individual components such as shared libraries and to some extend war files. What your talking about is the overall release and deployment process and I agree this can&#8217;t be solved by a single plugin.</p>
<p>The original intent of the release plugin as I understand it was around releasing a single artifact and not an entire application and like a lot of other things in maven if you try and color outside the lines your in for a world of pain <img src='http://www.insaneprogramming.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>What I tend to find where the release plugin falls over is when you attempt to use it on a monolithic project where you have a single source repo with a whole bunch or jar/war modules that get packaged together maybe by an assembly. So the version of the jar modules is almost irrelevant as they get bundled into the war module to having them in a central maven repo isn&#8217;t required as they are only ever included in a war.</p>
<p>One other thing I&#8217;m a big advocate for using the same binary artifact that was built by my CI process in all environments. So when I make a Candiate Release and it finally passes QA I simply re-tag the CR release as the production release rather than cut another release. Because in reality these newly created artifacts aren&#8217;t the same as the one that got QA&#8217;ed and unless you go through the QA process again you can&#8217;t be 100% confident. So rather than using the CR convention I tend to use a build number and use this a communication tool between the different teams. E.g version 1.2.1-build-54 passed QA and is ready for production.</p>
<p>Just my 2cents</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a REST service with CXF and Spring in 10 minutes by jcllings</title>
		<link>http://www.insaneprogramming.be/?p=140&#038;cpage=1#comment-309</link>
		<dc:creator>jcllings</dc:creator>
		<pubDate>Thu, 12 Jul 2012 15:25:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.insaneprogramming.be/?p=140#comment-309</guid>
		<description>What I would like to do, if I have time, is come up with a maintained and educationally useful assortment of archetypes and examples of which the one up on Google Code would be the first.  Since it is so simple, the example provided seems like an exelent basis for a demo of all the maven CXF goodies, for example.  :-)</description>
		<content:encoded><![CDATA[<p>What I would like to do, if I have time, is come up with a maintained and educationally useful assortment of archetypes and examples of which the one up on Google Code would be the first.  Since it is so simple, the example provided seems like an exelent basis for a demo of all the maven CXF goodies, for example.  <img src='http://www.insaneprogramming.be/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a REST service with CXF and Spring in 10 minutes by Lieven Doclo</title>
		<link>http://www.insaneprogramming.be/?p=140&#038;cpage=1#comment-308</link>
		<dc:creator>Lieven Doclo</dc:creator>
		<pubDate>Mon, 09 Jul 2012 07:20:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.insaneprogramming.be/?p=140#comment-308</guid>
		<description>Nope, you&#039;re free to use it in any way you want. All code presented on this blog is free to use, I just don&#039;t give any warranty or accept liability for any and all code found here.</description>
		<content:encoded><![CDATA[<p>Nope, you&#8217;re free to use it in any way you want. All code presented on this blog is free to use, I just don&#8217;t give any warranty or accept liability for any and all code found here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a REST service with CXF and Spring in 10 minutes by Lieven Doclo</title>
		<link>http://www.insaneprogramming.be/?p=140&#038;cpage=1#comment-307</link>
		<dc:creator>Lieven Doclo</dc:creator>
		<pubDate>Mon, 09 Jul 2012 07:18:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.insaneprogramming.be/?p=140#comment-307</guid>
		<description>Not all webservices return XML. RESTful services return resources, which may be XML documents, JSON documents or even PDF&#039;s. It&#039;s all based on the MIME type in the accept header. HTTP is a REST implementation.
In this case, the client can simply be a browser, which is one of the strengths of REST webservices.</description>
		<content:encoded><![CDATA[<p>Not all webservices return XML. RESTful services return resources, which may be XML documents, JSON documents or even PDF&#8217;s. It&#8217;s all based on the MIME type in the accept header. HTTP is a REST implementation.<br />
In this case, the client can simply be a browser, which is one of the strengths of REST webservices.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a REST service with CXF and Spring in 10 minutes by jcllings</title>
		<link>http://www.insaneprogramming.be/?p=140&#038;cpage=1#comment-306</link>
		<dc:creator>jcllings</dc:creator>
		<pubDate>Mon, 09 Jul 2012 06:00:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.insaneprogramming.be/?p=140#comment-306</guid>
		<description>P.S. if the author prefers to own the code mentioned, I would be more than willing to turn it over.</description>
		<content:encoded><![CDATA[<p>P.S. if the author prefers to own the code mentioned, I would be more than willing to turn it over.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a REST service with CXF and Spring in 10 minutes by jcllings</title>
		<link>http://www.insaneprogramming.be/?p=140&#038;cpage=1#comment-305</link>
		<dc:creator>jcllings</dc:creator>
		<pubDate>Mon, 09 Jul 2012 05:59:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.insaneprogramming.be/?p=140#comment-305</guid>
		<description>I am curious as to how this is an example of Web Services though, since there isn&#039;t any XML at all, and no client. 

For those having trouble, I have a working copy up on google code. Search for:
 webservice-rest-get-cxf-spring-maven-tomcat6-example. Credit to the original author whom is not me.  Note that when I say &quot;working&quot; I don&#039;t mean that the cargo deployment plugin is working for me. It isn&#039;t but the example is fine.</description>
		<content:encoded><![CDATA[<p>I am curious as to how this is an example of Web Services though, since there isn&#8217;t any XML at all, and no client. </p>
<p>For those having trouble, I have a working copy up on google code. Search for:<br />
 webservice-rest-get-cxf-spring-maven-tomcat6-example. Credit to the original author whom is not me.  Note that when I say &#8220;working&#8221; I don&#8217;t mean that the cargo deployment plugin is working for me. It isn&#8217;t but the example is fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a REST service with CXF and Spring in 10 minutes by Jim C.</title>
		<link>http://www.insaneprogramming.be/?p=140&#038;cpage=1#comment-302</link>
		<dc:creator>Jim C.</dc:creator>
		<pubDate>Sat, 07 Jul 2012 13:39:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.insaneprogramming.be/?p=140#comment-302</guid>
		<description>Soon, I&#039;m going to create a working example for all to look at and put it up on Google Code. Might do this today, if I have time.  I&#039;ve already had this working once before.</description>
		<content:encoded><![CDATA[<p>Soon, I&#8217;m going to create a working example for all to look at and put it up on Google Code. Might do this today, if I have time.  I&#8217;ve already had this working once before.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a REST service with CXF and Spring in 10 minutes by prasad</title>
		<link>http://www.insaneprogramming.be/?p=140&#038;cpage=1#comment-297</link>
		<dc:creator>prasad</dc:creator>
		<pubDate>Wed, 20 Jun 2012 05:06:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.insaneprogramming.be/?p=140#comment-297</guid>
		<description>Hi ,

could you please suggest how we can run this application on jboss? is there any extra configuration needed?</description>
		<content:encoded><![CDATA[<p>Hi ,</p>
<p>could you please suggest how we can run this application on jboss? is there any extra configuration needed?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
