<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for CodeDependents</title>
	<atom:link href="http://codedependents.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://codedependents.com</link>
	<description>Two Geeks Walk Into A Blog</description>
	<lastBuildDate>Tue, 03 Jan 2012 14:09:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Efficient Lightweight JMS with Spring and ActiveMQ by Benjamin Darfler</title>
		<link>http://codedependents.com/2009/10/16/efficient-lightweight-jms-with-spring-and-activemq/#comment-512</link>
		<dc:creator><![CDATA[Benjamin Darfler]]></dc:creator>
		<pubDate>Tue, 03 Jan 2012 14:09:40 +0000</pubDate>
		<guid isPermaLink="false">http://codedependents.com/?p=240#comment-512</guid>
		<description><![CDATA[@Sridhar above mentions that the xml only works with Spring 2.5.6 not 2.5.5. The issue is with the constructor for org.springframework.jms.connection.CachingConnectionFactory. I would check the javadoc for your version and make the necessary changes.]]></description>
		<content:encoded><![CDATA[<p>@Sridhar above mentions that the xml only works with Spring 2.5.6 not 2.5.5. The issue is with the constructor for org.springframework.jms.connection.CachingConnectionFactory. I would check the javadoc for your version and make the necessary changes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Efficient Lightweight JMS with Spring and ActiveMQ by Dan Be</title>
		<link>http://codedependents.com/2009/10/16/efficient-lightweight-jms-with-spring-and-activemq/#comment-511</link>
		<dc:creator><![CDATA[Dan Be]]></dc:creator>
		<pubDate>Tue, 03 Jan 2012 08:15:53 +0000</pubDate>
		<guid isPermaLink="false">http://codedependents.com/?p=240#comment-511</guid>
		<description><![CDATA[I keep getting the following error:

Error creating bean with name &#039;queueSender&#039;: Unsatisfied dependency expressed through constructor argument with index 0 of type [org.springframework.jms.core.JmsTemplate]: Error creating bean with name &#039;jmsTemplate&#039; defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Cannot resolve reference to bean &#039;connectionFactory&#039; while setting constructor argument; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name &#039;connectionFactory&#039; defined in ServletContext resource [/WEB-INF/applicationContext.xml]: 1 constructor arguments specified but no matching constructor found in bean &#039;connectionFactory&#039; (hint: specify index and/or type arguments for simple parameters to avoid type ambiguities)

did any one run into the same error?]]></description>
		<content:encoded><![CDATA[<p>I keep getting the following error:</p>
<p>Error creating bean with name &#8216;queueSender&#8217;: Unsatisfied dependency expressed through constructor argument with index 0 of type [org.springframework.jms.core.JmsTemplate]: Error creating bean with name &#8216;jmsTemplate&#8217; defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Cannot resolve reference to bean &#8216;connectionFactory&#8217; while setting constructor argument; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name &#8216;connectionFactory&#8217; defined in ServletContext resource [/WEB-INF/applicationContext.xml]: 1 constructor arguments specified but no matching constructor found in bean &#8216;connectionFactory&#8217; (hint: specify index and/or type arguments for simple parameters to avoid type ambiguities)</p>
<p>did any one run into the same error?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Synchronous Request Response with ActiveMQ and Spring by Benjamin Darfler</title>
		<link>http://codedependents.com/2010/03/04/synchronous-request-response-with-activemq-and-spring/#comment-501</link>
		<dc:creator><![CDATA[Benjamin Darfler]]></dc:creator>
		<pubDate>Wed, 14 Dec 2011 20:52:41 +0000</pubDate>
		<guid isPermaLink="false">http://codedependents.com/?p=326#comment-501</guid>
		<description><![CDATA[Yes, when you subscribe to the reply queue you do so with a selector for that correlation id. ActiveMQ takes care of the rest. You can see all this in the code samples. I promise it works ;-)]]></description>
		<content:encoded><![CDATA[<p>Yes, when you subscribe to the reply queue you do so with a selector for that correlation id. ActiveMQ takes care of the rest. You can see all this in the code samples. I promise it works <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Synchronous Request Response with ActiveMQ and Spring by Sébastien Falquier</title>
		<link>http://codedependents.com/2010/03/04/synchronous-request-response-with-activemq-and-spring/#comment-500</link>
		<dc:creator><![CDATA[Sébastien Falquier]]></dc:creator>
		<pubDate>Wed, 14 Dec 2011 20:49:22 +0000</pubDate>
		<guid isPermaLink="false">http://codedependents.com/?p=326#comment-500</guid>
		<description><![CDATA[It helps! But One more questions : does it works for several requesters (concurrent process) using the same queue with a single responder? How does each requester manage to get its correct correlation id without removing the other ones from the queue?]]></description>
		<content:encoded><![CDATA[<p>It helps! But One more questions : does it works for several requesters (concurrent process) using the same queue with a single responder? How does each requester manage to get its correct correlation id without removing the other ones from the queue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Synchronous Request Response with ActiveMQ and Spring by Benjamin Darfler</title>
		<link>http://codedependents.com/2010/03/04/synchronous-request-response-with-activemq-and-spring/#comment-499</link>
		<dc:creator><![CDATA[Benjamin Darfler]]></dc:creator>
		<pubDate>Wed, 14 Dec 2011 16:41:07 +0000</pubDate>
		<guid isPermaLink="false">http://codedependents.com/?p=326#comment-499</guid>
		<description><![CDATA[Yes the responder sends the response on a known queue with a correlation id. The requester listens on the known response queue for a message with that correlation id. Does that help?]]></description>
		<content:encoded><![CDATA[<p>Yes the responder sends the response on a known queue with a correlation id. The requester listens on the known response queue for a message with that correlation id. Does that help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Synchronous Request Response with ActiveMQ and Spring by Sébastien Falquier</title>
		<link>http://codedependents.com/2010/03/04/synchronous-request-response-with-activemq-and-spring/#comment-498</link>
		<dc:creator><![CDATA[Sébastien Falquier]]></dc:creator>
		<pubDate>Wed, 14 Dec 2011 10:27:41 +0000</pubDate>
		<guid isPermaLink="false">http://codedependents.com/?p=326#comment-498</guid>
		<description><![CDATA[Hi,

This blog post have been very helpful because &quot;it just makes more sense to use a synchronous request/response&quot; as you said ;o)

By the way, I am not sure I have understood how to use the permanent response queue. Does it mean that the request queue listener have to use a queue sender to send a response to the initial requester (that is waiting an answer on the response queue)? Or there is a smarter way to code that? How the queue listener should be coded to use the response queue?

Thanks!]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>This blog post have been very helpful because &#8220;it just makes more sense to use a synchronous request/response&#8221; as you said ;o)</p>
<p>By the way, I am not sure I have understood how to use the permanent response queue. Does it mean that the request queue listener have to use a queue sender to send a response to the initial requester (that is waiting an answer on the response queue)? Or there is a smarter way to code that? How the queue listener should be coded to use the response queue?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Decoding strings with an unknown encoding by Benjamin Darfler</title>
		<link>http://codedependents.com/2011/09/15/decoding-strings-with-an-unknown-encoding/#comment-488</link>
		<dc:creator><![CDATA[Benjamin Darfler]]></dc:creator>
		<pubDate>Tue, 29 Nov 2011 19:28:19 +0000</pubDate>
		<guid isPermaLink="false">http://codedependents.com/?p=495#comment-488</guid>
		<description><![CDATA[Well damn!]]></description>
		<content:encoded><![CDATA[<p>Well damn!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Decoding strings with an unknown encoding by Joni Salonen</title>
		<link>http://codedependents.com/2011/09/15/decoding-strings-with-an-unknown-encoding/#comment-487</link>
		<dc:creator><![CDATA[Joni Salonen]]></dc:creator>
		<pubDate>Tue, 29 Nov 2011 18:24:39 +0000</pubDate>
		<guid isPermaLink="false">http://codedependents.com/?p=495#comment-487</guid>
		<description><![CDATA[&quot;new String(bytes[], encoding) does no such thing&quot;

Sure it does. Observe:

byte[] invalidUTF8 = {-128};
String mystery = new String(invalidUTF8, &quot;UTF-8&quot;);
print((int) mystery.charAt(0)); 
// prints 65533

.. and 65533, FFFD in hex, happens to be REPLACEMENT_CHARACTER in Unicode.]]></description>
		<content:encoded><![CDATA[<p>&#8220;new String(bytes[], encoding) does no such thing&#8221;</p>
<p>Sure it does. Observe:</p>
<p>byte[] invalidUTF8 = {-128};<br />
String mystery = new String(invalidUTF8, &#8220;UTF-8&#8243;);<br />
print((int) mystery.charAt(0));<br />
// prints 65533</p>
<p>.. and 65533, FFFD in hex, happens to be REPLACEMENT_CHARACTER in Unicode.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Efficient Lightweight JMS with Spring and ActiveMQ by Benjamin Darfler</title>
		<link>http://codedependents.com/2009/10/16/efficient-lightweight-jms-with-spring-and-activemq/#comment-484</link>
		<dc:creator><![CDATA[Benjamin Darfler]]></dc:creator>
		<pubDate>Mon, 21 Nov 2011 02:51:50 +0000</pubDate>
		<guid isPermaLink="false">http://codedependents.com/?p=240#comment-484</guid>
		<description><![CDATA[Thanks! I&#039;m glad it was helpful.]]></description>
		<content:encoded><![CDATA[<p>Thanks! I&#8217;m glad it was helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Efficient Lightweight JMS with Spring and ActiveMQ by foro adolescentes</title>
		<link>http://codedependents.com/2009/10/16/efficient-lightweight-jms-with-spring-and-activemq/#comment-483</link>
		<dc:creator><![CDATA[foro adolescentes]]></dc:creator>
		<pubDate>Mon, 21 Nov 2011 02:47:52 +0000</pubDate>
		<guid isPermaLink="false">http://codedependents.com/?p=240#comment-483</guid>
		<description><![CDATA[Thank god some bloggers can write. Thank you for this piece of writing.]]></description>
		<content:encoded><![CDATA[<p>Thank god some bloggers can write. Thank you for this piece of writing.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

