<?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 on: SOAP over JMS?</title>
	<atom:link href="http://www.subbu.org/blog/2005/03/soap-over-jms/feed" rel="self" type="application/rss+xml" />
	<link>http://www.subbu.org/blog/2005/03/soap-over-jms</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 19:04:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Subbu Allamaraju</title>
		<link>http://www.subbu.org/blog/2005/03/soap-over-jms/comment-page-1#comment-96188</link>
		<dc:creator>Subbu Allamaraju</dc:creator>
		<pubDate>Mon, 18 Oct 2010 16:04:58 +0000</pubDate>
		<guid isPermaLink="false">http://wp.subbu.org/2005/03/soap-over-jms/#comment-96188</guid>
		<description>Note that JMS is an API and not a protocol. Unless you standardize on a single implementation of JMS, sending SOAP messages over JMS does not buy you much.</description>
		<content:encoded><![CDATA[<p>Note that JMS is an API and not a protocol. Unless you standardize on a single implementation of JMS, sending SOAP messages over JMS does not buy you much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://www.subbu.org/blog/2005/03/soap-over-jms/comment-page-1#comment-95504</link>
		<dc:creator>James</dc:creator>
		<pubDate>Fri, 15 Oct 2010 02:33:45 +0000</pubDate>
		<guid isPermaLink="false">http://wp.subbu.org/2005/03/soap-over-jms/#comment-95504</guid>
		<description>Shaurabh Bharti,

Here is a good link that provides a SOAP over JMS implementation in WebSphere Studio.  http://www.ibm.com/developerworks/websphere/library/techarticles/0402_du/0402_du.html

Keep in mind that the W3C specification is not yet finalized.  I talked with the IBM folks in the UK and there are some minor coding changes that need to be done to get the latest spec implemented in WAS.  Apache CFX is under way from an implementation perspective too.</description>
		<content:encoded><![CDATA[<p>Shaurabh Bharti,</p>
<p>Here is a good link that provides a SOAP over JMS implementation in WebSphere Studio.  <a href="http://www.ibm.com/developerworks/websphere/library/techarticles/0402_du/0402_du.html" rel="nofollow">http://www.ibm.com/developerworks/websphere/library/techarticles/0402_du/0402_du.html</a></p>
<p>Keep in mind that the W3C specification is not yet finalized.  I talked with the IBM folks in the UK and there are some minor coding changes that need to be done to get the latest spec implemented in WAS.  Apache CFX is under way from an implementation perspective too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shaurabh Bharti</title>
		<link>http://www.subbu.org/blog/2005/03/soap-over-jms/comment-page-1#comment-36</link>
		<dc:creator>Shaurabh Bharti</dc:creator>
		<pubDate>Wed, 31 May 2006 00:25:37 +0000</pubDate>
		<guid isPermaLink="false">http://wp.subbu.org/2005/03/soap-over-jms/#comment-36</guid>
		<description>SOAP over JMS does makes sense a lot! Actually, within smaller network (as said in 1st reference), it makes a lot of sense to use JMS for reliable messaging. However, in bigger networks as HTTP is quite default and easy supported by servers (which might not be case by all servers), hence, jms-http-http-jms is no bad soln.

I&#039;m looking for an example implementatino for SOAP over JMS. Any pointers?

Thanks...
</description>
		<content:encoded><![CDATA[<p>SOAP over JMS does makes sense a lot! Actually, within smaller network (as said in 1st reference), it makes a lot of sense to use JMS for reliable messaging. However, in bigger networks as HTTP is quite default and easy supported by servers (which might not be case by all servers), hence, jms-http-http-jms is no bad soln.</p>
<p>I&#8217;m looking for an example implementatino for SOAP over JMS. Any pointers?</p>
<p>Thanks&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abeers</title>
		<link>http://www.subbu.org/blog/2005/03/soap-over-jms/comment-page-1#comment-35</link>
		<dc:creator>abeers</dc:creator>
		<pubDate>Thu, 23 Feb 2006 14:47:22 +0000</pubDate>
		<guid isPermaLink="false">http://wp.subbu.org/2005/03/soap-over-jms/#comment-35</guid>
		<description>Subbu,
&quot;SOAP over JMS&quot; indeed makes sense (at least to me and authors) and here is how..

JMS is not just an API or MDB - it&#039;s a messaging Service - simply put, a store and forward mechanism. You can send SOAP or any other text messages using the messaging service.
Let&#039;s say application &#039;A&#039; with a SOAP engine writes a SOAP request message into messaging service(queue) and application &#039;B&#039; with a SOAP engine reads that SOAP message from the message service(queue), processes it and then responds in similar fashion - see there is no HTTP or SMTP used in this scenario, offcourse there are lower level protocols such as TCP/IP are involved.

You are right in that JMS is not a protocol like HTTP or SMTP, but one can send SOAP messages bw apps using a JMS provider.
</description>
		<content:encoded><![CDATA[<p>Subbu,<br />
&#8220;SOAP over JMS&#8221; indeed makes sense (at least to me and authors) and here is how..</p>
<p>JMS is not just an API or MDB &#8211; it&#8217;s a messaging Service &#8211; simply put, a store and forward mechanism. You can send SOAP or any other text messages using the messaging service.<br />
Let&#8217;s say application &#8216;A&#8217; with a SOAP engine writes a SOAP request message into messaging service(queue) and application &#8216;B&#8217; with a SOAP engine reads that SOAP message from the message service(queue), processes it and then responds in similar fashion &#8211; see there is no HTTP or SMTP used in this scenario, offcourse there are lower level protocols such as TCP/IP are involved.</p>
<p>You are right in that JMS is not a protocol like HTTP or SMTP, but one can send SOAP messages bw apps using a JMS provider.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

