<?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 on: Implementing Request-Response with ActiveMQ and NMS</title>
	<atom:link href="http://remark.wordpress.com/articles/implementing-request-response-with-activemq-and-nms/feed/" rel="self" type="application/rss+xml" />
	<link>http://remark.wordpress.com</link>
	<description>My Life As A Blog</description>
	<lastBuildDate>Mon, 09 Nov 2009 11:05:39 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Diane</title>
		<link>http://remark.wordpress.com/articles/implementing-request-response-with-activemq-and-nms/#comment-8274</link>
		<dc:creator>Diane</dc:creator>
		<pubDate>Wed, 04 Nov 2009 23:47:47 +0000</pubDate>
		<guid isPermaLink="false">http://remark.wordpress.com/implementing-request-response-with-activemq-and-nms/#comment-8274</guid>
		<description>You show setting the NMSCorrelationID when sending the message and also when sending the response message but you don&#039;t show how to receive based on NMSCorrelationID and I cannot find anywhere so far how to make my consumer do so.  I want to be able to receive the response message based on this value.  I have it working in JMS just fine, but am struggling with NMS.

Am setting my consumer like this, but it doesn&#039;t seem to matter what the value is, it receives all messages:
using (IMessageConsumer consumer = session.CreateConsumer(destination, &quot;NMSCorrelationID = abc&quot; ))</description>
		<content:encoded><![CDATA[<p>You show setting the NMSCorrelationID when sending the message and also when sending the response message but you don&#8217;t show how to receive based on NMSCorrelationID and I cannot find anywhere so far how to make my consumer do so.  I want to be able to receive the response message based on this value.  I have it working in JMS just fine, but am struggling with NMS.</p>
<p>Am setting my consumer like this, but it doesn&#8217;t seem to matter what the value is, it receives all messages:<br />
using (IMessageConsumer consumer = session.CreateConsumer(destination, &#8220;NMSCorrelationID = abc&#8221; ))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Palmer</title>
		<link>http://remark.wordpress.com/articles/implementing-request-response-with-activemq-and-nms/#comment-8098</link>
		<dc:creator>Nathan Palmer</dc:creator>
		<pubDate>Tue, 20 Oct 2009 04:12:07 +0000</pubDate>
		<guid isPermaLink="false">http://remark.wordpress.com/implementing-request-response-with-activemq-and-nms/#comment-8098</guid>
		<description>I had the same SharedConnection problem you guys are experiencing. I&#039;m not sure if this is the &quot;correct&quot; way of fixing it because I&#039;m going through the same tutorial that you are but this is how I fixed mine.

Change the line 

using (ISession session = this.container.SharedConnection.CreateSession())

to

using (ISession session = this.container.ConnectionFactory.CreateConnection().CreateSession())

Nathan Palmer</description>
		<content:encoded><![CDATA[<p>I had the same SharedConnection problem you guys are experiencing. I&#8217;m not sure if this is the &#8220;correct&#8221; way of fixing it because I&#8217;m going through the same tutorial that you are but this is how I fixed mine.</p>
<p>Change the line </p>
<p>using (ISession session = this.container.SharedConnection.CreateSession())</p>
<p>to</p>
<p>using (ISession session = this.container.ConnectionFactory.CreateConnection().CreateSession())</p>
<p>Nathan Palmer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kash</title>
		<link>http://remark.wordpress.com/articles/implementing-request-response-with-activemq-and-nms/#comment-7414</link>
		<dc:creator>Kash</dc:creator>
		<pubDate>Wed, 26 Aug 2009 17:03:26 +0000</pubDate>
		<guid isPermaLink="false">http://remark.wordpress.com/implementing-request-response-with-activemq-and-nms/#comment-7414</guid>
		<description>i am getting the below exception while compiling the ...

The property or indexer ‘Spring.Messaging.Nms.Listener.AbstractListenerContainer.SharedConnection’ cannot be used in this context because the get accessor is inaccessible	


any idea ??</description>
		<content:encoded><![CDATA[<p>i am getting the below exception while compiling the &#8230;</p>
<p>The property or indexer ‘Spring.Messaging.Nms.Listener.AbstractListenerContainer.SharedConnection’ cannot be used in this context because the get accessor is inaccessible	</p>
<p>any idea ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kash</title>
		<link>http://remark.wordpress.com/articles/implementing-request-response-with-activemq-and-nms/#comment-7393</link>
		<dc:creator>Kash</dc:creator>
		<pubDate>Tue, 25 Aug 2009 20:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://remark.wordpress.com/implementing-request-response-with-activemq-and-nms/#comment-7393</guid>
		<description>Error	2	The property or indexer &#039;Spring.Messaging.Nms.Listener.AbstractListenerContainer.SharedConnection&#039; cannot be used in this context because the get accessor is inaccessible	C:\Documents and Settings\V644700\My Documents\Visual Studio 2008\Projects\ActiveMqRequestResponseConsole\ActiveMqServer\Listener.cs	26	39	ActiveMqServer</description>
		<content:encoded><![CDATA[<p>Error	2	The property or indexer &#8216;Spring.Messaging.Nms.Listener.AbstractListenerContainer.SharedConnection&#8217; cannot be used in this context because the get accessor is inaccessible	C:\Documents and Settings\V644700\My Documents\Visual Studio 2008\Projects\ActiveMqRequestResponseConsole\ActiveMqServer\Listener.cs	26	39	ActiveMqServer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthavio Lenz</title>
		<link>http://remark.wordpress.com/articles/implementing-request-response-with-activemq-and-nms/#comment-4149</link>
		<dc:creator>Anthavio Lenz</dc:creator>
		<pubDate>Fri, 30 Jan 2009 10:50:49 +0000</pubDate>
		<guid isPermaLink="false">http://remark.wordpress.com/implementing-request-response-with-activemq-and-nms/#comment-4149</guid>
		<description>Reuse at least connection and performance will boost. Even java version of MessageListenerContainer openc and closed connection by default on every Recieve if not reconfigured.</description>
		<content:encoded><![CDATA[<p>Reuse at least connection and performance will boost. Even java version of MessageListenerContainer openc and closed connection by default on every Recieve if not reconfigured.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: remark</title>
		<link>http://remark.wordpress.com/articles/implementing-request-response-with-activemq-and-nms/#comment-3561</link>
		<dc:creator>remark</dc:creator>
		<pubDate>Sat, 31 May 2008 07:57:07 +0000</pubDate>
		<guid isPermaLink="false">http://remark.wordpress.com/implementing-request-response-with-activemq-and-nms/#comment-3561</guid>
		<description>I haven&#039;t done any performance profiling.  One message per 20 seconds does sound poor.  I&#039;d suggest trying the forums.  I wonder what other people&#039;s experience has been.</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t done any performance profiling.  One message per 20 seconds does sound poor.  I&#8217;d suggest trying the forums.  I wonder what other people&#8217;s experience has been.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hamzeh</title>
		<link>http://remark.wordpress.com/articles/implementing-request-response-with-activemq-and-nms/#comment-3560</link>
		<dc:creator>Hamzeh</dc:creator>
		<pubDate>Sat, 31 May 2008 07:32:03 +0000</pubDate>
		<guid isPermaLink="false">http://remark.wordpress.com/implementing-request-response-with-activemq-and-nms/#comment-3560</guid>
		<description>Hi.
How is the throughput? I&#039;ve implemented an SSL tunnel and saw that throughput is one message per 20 seconds; and obviously it&#039;s awful. Is there any problem that I did? I think there maybe some misunderstanding!?</description>
		<content:encoded><![CDATA[<p>Hi.<br />
How is the throughput? I&#8217;ve implemented an SSL tunnel and saw that throughput is one message per 20 seconds; and obviously it&#8217;s awful. Is there any problem that I did? I think there maybe some misunderstanding!?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
