User James Strachan - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T04:56:45Z http://stackoverflow.com/feeds/user/12235 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/703659/activemq-message-grouping-performance/705648#705648 2 Answer by James Strachan for ActiveMQ message grouping performance James Strachan 2009-04-01T14:02:50Z 2009-04-01T14:02:50Z <p>I've used Message Groups on many projects and it works great. Though for full disclosure I was one of the folks pushing for Message Groups and did much of the initial implementation work.</p> <p>The use case of Message Groups came from partitioning large topic hierarchies; such as dealing with financial stock symbols and the like. We wanted message groups to be able to use very fine grained correlation expressions (JMSXGroupID strings) - so you could use the date, stock symbol and product type as groupID - or the customer or business transaction ID or whatever.</p> <p>To avoid having to keep every group ID string in memory, the default provider uses hash buckets - so we only store the mapping of hash buckets to consumers - not the individual strings. So it scales to as many group IDs as you want to use! It also means we don't have to 'clean' the old message group IDs out etc</p> http://stackoverflow.com/questions/567478/apache-camel-for-asynchronous-calls/581420#581420 1 Answer by James Strachan for Apache Camel for Asynchronous Calls James Strachan 2009-02-24T11:28:06Z 2009-02-24T11:28:06Z <p>Even if you are not using any Enterprise Integration Patterns (yet) - Camel is great at integrating messaging into your application while <a href="http://camel.apache.org/hiding-middleware.html" rel="nofollow">hiding all of the middleware APIs</a> while letting you easily switch between all the <a href="http://camel.apache.org/components.html" rel="nofollow">various different middleware technologies</a> usually by just changing one or two strings.</p> <p>e.g. see these links for more detail</p> <ul> <li><a href="http://camel.apache.org/pojo-producing.html" rel="nofollow">POJO producing</a></li> <li><a href="http://camel.apache.org/pojo-consuming.html" rel="nofollow">POJO consuming</a></li> <li><a href="http://camel.apache.org/spring-remoting.html" rel="nofollow">Spring remoting</a> </li> </ul> <p>There is a <a href="http://camel.apache.org/pojo-messaging-example.html" rel="nofollow">POJO Messaging Example</a> that walks you through using Camel purely as a way to integrate messaging into your POJOs</p> http://stackoverflow.com/questions/454084/dynamic-throtlling-off-an-activemq-message-queue-with-camel/457458#457458 1 Answer by James Strachan for Dynamic throtlling off an ActiveMQ message queue with Camel James Strachan 2009-01-19T12:38:16Z 2009-01-19T12:38:16Z <p>You could just use Camel's existing <a href="http://activemq.apache.org/camel/throttler.html" rel="nofollow">throttler</a> then using a different queue for each type of messages where you need to configure a different throttle rate?</p> <p>e.g.</p> <pre><code>from("activemq:Queue1.Input"). throttle(20). to("activemq:Queue1.Output"); from("activemq:Queue2.Input"). throttle(5). to("activemq:Queue2.Output"); </code></pre> http://stackoverflow.com/questions/444271/connecting-http-request-response-model-with-asynchronous-queue/444736#444736 0 Answer by James Strachan for Connecting http request/response model with asynchronous queue James Strachan 2009-01-14T21:20:41Z 2009-01-14T21:20:41Z <p>Here's <a href="http://activemq.apache.org/how-should-i-implement-request-response-with-jms.html" rel="nofollow">how to implement request-response efficiently on JMS</a> which might be helpful (though Java/JMS centric). The general idea is to create a temporary queue per client/thread then use correlationIDs to correlate requests to replies etc.</p> http://stackoverflow.com/questions/435640/activemq-issue-with-queue-lookup/436833#436833 2 Answer by James Strachan for ActiveMQ: Issue with queue lookup James Strachan 2009-01-12T20:12:24Z 2009-01-12T20:12:24Z <p>Firstly you don't have to <a href="http://activemq.apache.org/how-do-i-create-new-destinations.html" rel="nofollow">explicitly create any queues in the broker</a> though it does no harm.</p> <p>Also the destinations available in the broker are not auto-magically mapped into a JNDI context for you using some kind of JNDI name.</p> <p>You can do this <a href="http://activemq.apache.org/jndi-support.html" rel="nofollow">explicitly as described here</a>. If you want auto-magical population of JNDI then use the JNDI naming convention of <em>dynamicQueues/DUMMY</em> as the JNDI name you lookup (as described in the <a href="http://activemq.apache.org/jndi-support.html" rel="nofollow">Dynamically creating destinations</a>)</p> http://stackoverflow.com/questions/432461/spring-ws-or-axis2-or-something-else-for-contract-first-approach-to-ws/435162#435162 0 Answer by James Strachan for Spring-ws or Axis2 or Something else for "Contract-First" approach to WS James Strachan 2009-01-12T11:30:05Z 2009-01-12T11:30:05Z <p>For contract first I'd recommend using JAX-WS. Either CXF or Metro seem to be the best implementations around that can take any WSDL contract and generate the POJOs (or vice versa)</p> http://stackoverflow.com/questions/432188/is-anyone-using-google-protocol-buffers-in-large-scale-production-applications/435156#435156 4 Answer by James Strachan for Is anyone using Google protocol buffers in large scale production applications? James Strachan 2009-01-12T11:28:29Z 2009-01-12T11:28:29Z <p>BTW <a href="http://activemq.apache.org" rel="nofollow">Apache ActiveMQ 6</a> will probably be using Protocol Buffers as its default marshalling layer. Early experiences are very favourable; as its easy to have each endpoint on different versions and yet still be able to parse the binary protocol - plus it seems very fast. A great alternative to JSON/XML when you need a performance boost</p> http://stackoverflow.com/questions/426532/how-do-you-preserve-message-order-when-consuming-messages-from-activemq/427527#427527 0 Answer by James Strachan for How do you preserve message order when consuming messages from ActiveMQ? James Strachan 2009-01-09T09:39:45Z 2009-01-09T09:39:45Z <p>Everything Jason just said. A few other things to be careful of. You are keeping the consumer open for lots of messages right? You're not creating a consumer for a few messages then closing it? Only closing a consumer causes messages associated with a consumer to be put back onto a queue which can break order.</p> <p>Is it related to rollbacks? (Are you rolling back any transactions?).</p> <p>Finally, you can always ensure order by using a <a href="http://activemq.apache.org/camel/resequencer.html" rel="nofollow">Resequencer</a> to reorder things for you.</p> http://stackoverflow.com/questions/390044/activemq-message-receipt-event-only-one-message-per-second/402488#402488 0 Answer by James Strachan for ActiveMQ Message Receipt Event Only One Message Per Second? James Strachan 2008-12-31T07:44:55Z 2008-12-31T07:44:55Z <p>I'd suggest reporting this to the <a href="http://activemq.apache.org/camel/discussion-forums.html" rel="nofollow">User Forum</a> along with maybe raising a <a href="http://activemq.apache.org/camel/support.html" rel="nofollow">support issue</a> as this sounds like it could be some issue with the NMS client code and all the NMS developers are on that list and might respond</p> http://stackoverflow.com/questions/371321/securing-activemq-externally-by-ip-filtering/371744#371744 2 Answer by James Strachan for Securing ActiveMQ externally by IP filtering James Strachan 2008-12-16T16:02:01Z 2008-12-16T16:02:01Z <p>There's not currently a distinction in the STOMP transport between IP ranges or internal v external IP addresses. </p> <p>Could you use user roles though; having special users &amp; roles for internal connections? Then use the normal access control lists so that external connections can only consume from topics and not publish?</p> <p>See <a href="http://activemq.apache.org/security.html" rel="nofollow">the ActiveMQ Security Support</a></p> http://stackoverflow.com/questions/346105/how-do-i-write-message-queue-handling-in-an-object-oriented-way/348885#348885 0 Answer by James Strachan for How do I write message queue handling in an object-oriented way? James Strachan 2008-12-08T07:58:43Z 2008-12-08T07:58:43Z <p>The best way of building OO code when doing messaging or dealing with any kind of middleware is to hide the middleware APIs from your code and just deal with business logic.</p> <p>e.g. see these examples</p> <ul> <li><a href="http://activemq.apache.org/camel/pojo-consuming.html" rel="nofollow">POJO Consuming</a> which is pretty much the use case you describe and</li> <li><a href="http://activemq.apache.org/camel/pojo-producing.html" rel="nofollow">POJO Producing</a> if ever you need to send messages to a message queue.</li> </ul> <p>Then you just need to define what your <em>Data Transfer Objects</em> look like; how you want to encode things on the wire in XML / JSON / whatever.</p> <p>The great thing about this approach is your code is now totally middleware agnostic - you could swap out your message queue and use a <a href="http://activemq.apache.org/camel/components.html" rel="nofollow">database or JavaSpace or in-memory SEDA or files or any other communication protocol or middleware API</a>.</p> http://stackoverflow.com/questions/344078/is-this-a-realistic-expectation-of-a-distributed-mechanism/344313#344313 4 Answer by James Strachan for Is this a realistic expectation of a distributed mechanism? James Strachan 2008-12-05T16:02:05Z 2008-12-05T16:02:05Z <p>You are testing the <a href="http://activemq.apache.org/producer-flow-control.html" rel="nofollow">'slow consumer' and producer flowcontrol</a> issue all message brokers have to deal with. Do you wanna fail producers, block them or spool to disk? </p> <p>Basically the out of the box default in ActiveMQ is to block producers. But you can <a href="http://activemq.apache.org/message-cursors.html" rel="nofollow">configure message cursors to spool to disk</a>.</p> <p>BTW you've not said if you are using queues/topics or persistent/non-persistent; if you are using non persistent topics there are other strategies you can use for discarding messages etc.</p> http://stackoverflow.com/questions/239647/how-do-i-specify-a-tcp-transport-is-server-mode-listening-or-client-mode-in-act/343243#343243 1 Answer by James Strachan for How do I specify a TCP transport is server mode (listening) or client mode in activemq? James Strachan 2008-12-05T08:53:57Z 2008-12-05T08:53:57Z <p>was this answered on <a href="http://www.nabble.com/Usage-of-Mina-in-camelContext-for-TCP-loop.-td20348095s22882.html" rel="nofollow">the thread here</a>?</p> http://stackoverflow.com/questions/325216/apache-camel-question-on-routing-via-javadsl/343241#343241 1 Answer by James Strachan for Apache Camel question on routing via javaDSL James Strachan 2008-12-05T08:52:42Z 2008-12-05T08:52:42Z <p>1) uses a single consumer from A then sends to B and sends the result of invoking B (if B returns some output) to C. So its a pipeline.</p> <p>2) uses a consumer on B to send to C and won't send the output of B to C</p> http://stackoverflow.com/questions/341911/unable-to-start-camel-1-5-0/343237#343237 1 Answer by James Strachan for Unable to start Camel 1.5.0 James Strachan 2008-12-05T08:50:05Z 2008-12-05T08:50:05Z <p>So it works fine under maven - but not if you run it how? In your IDE or something?</p> <p>If you are using eclipse / intellij you can create an IDE project for the maven project using maven.</p> <pre><code>mvn eclipse:eclipse </code></pre> <p>or </p> <pre><code>mvn idea:idea </code></pre> <p>If you are writing some shell script or running it from the command line then its likely you are missing some jars; you'll need spring + jaxb + commons-logging + camel-core, camel-spring and camel-jms.</p> <p>To get an accurate list of the dependencies in maven type</p> <pre><code>mvn dependency:tree </code></pre> http://stackoverflow.com/questions/340266/is-maintenance-on-long-lived-jms-connections-necessary/340514#340514 2 Answer by James Strachan for Is maintenance on long lived JMS connections necessary? James Strachan 2008-12-04T13:05:57Z 2008-12-04T13:05:57Z <p>A good JMS provider will deal with network outages such as a dropped socket or a message broker failing over or being rebooted. e.g. here is how you <a href="http://activemq.apache.org/how-do-i-configure-automatic-reconnection.html" rel="nofollow">enable automatic reconnection</a> in <a href="http://activemq.apache.org/" rel="nofollow">Apache ActiveMQ</a>.</p> <p>Its often quite a pain to recreate all of your JMS resources (connection, sessions, producers, consumers) - its much easier for the JMS provider to do it for you.</p> <p>If you must use a provider which can't support this feature - consider either switching, or using the Spring JMS helper classes which can do some of this for you. </p> http://stackoverflow.com/questions/337751/making-a-service-layer-call-from-presentation-layer/337839#337839 1 Answer by James Strachan for Making a Service Layer call from Presentation layer James Strachan 2008-12-03T16:46:28Z 2008-12-03T16:46:28Z <p>It mostly boils down to do you want to use Spring Remoting (which Spring RMI and <a href="http://activemq.apache.org/camel/spring-remoting.html" rel="nofollow">Apache Camel</a> are implementations of) - or do you want to use JAX-WS for web services (which CXF or Metro implement). i.e. do you want automatic remoting for your POJOs - or do you want WS with WSDL contracts and so forth.</p> <p>Once you've decided on the remoting technology; your next decision is do you want to bundle it inside your application as a library (e.g. Spring RMI or Camel) - or do you want to deploy it in an ESB container like ServiceMix to be able to hot-redeploy modules and so forth.</p> <p>If the latter is your choice then use Apache ServiceMix - or use the FUSE ESB if you want a commercial distribution with more documentation, frequent releases, commercial support and so forth.</p> http://stackoverflow.com/questions/331280/serializing-objects-for-asynchronous-messaging/333440#333440 0 Answer by James Strachan for Serializing objects for asynchronous messaging James Strachan 2008-12-02T09:22:24Z 2008-12-02T09:22:24Z <p>XML or JSON are probably the easiest. Protocol buffers is cool but I'd treat it as an optimisation to think of later on if you really need to (as its a bit harder to use being essentially a binary wire format).</p> <p>BTW you might want to look at Stomp rather than AMQP; its got way more client libraries and supported message brokers. e.g. <a href="http://activemq.apache.org/" rel="nofollow">Apache ActiveMQ</a> which is way more popular than qpid or rabbitmq - or indeed any <a href="http://stomp.codehaus.org/StompConnect" rel="nofollow">JMS provider</a> would work just fine.</p> http://stackoverflow.com/questions/329779/asp-net-best-queue-system-for-a-new-application/330476#330476 0 Answer by James Strachan for ASP.NET - best queue system for a new application James Strachan 2008-12-01T10:39:28Z 2008-12-01T10:39:28Z <p>You could look at using an open source message broker such as <a href="http://activemq.apache.org/" rel="nofollow">Apache ActiveMQ</a></p> http://stackoverflow.com/questions/314765/java-activemq-client-fails-to-receive-messages/320175#320175 0 Answer by James Strachan for Java ActiveMQ client fails to receive messages James Strachan 2008-11-26T09:47:12Z 2008-11-26T09:47:12Z <p>Its a classic issue with messaging; what to do with slow consumers. FWIW more recent ActiveMQ releases such as 5.2 allow you to spool to disk rather than blocking producers when memory gets low</p> http://stackoverflow.com/questions/318193/activemq-web-console-doesnt-work-with-embedded-broker/320168#320168 1 Answer by James Strachan for ActiveMQ web console doesn't work with embedded broker James Strachan 2008-11-26T09:43:29Z 2008-11-26T09:43:29Z <p>If you are using Java code and not using Spring then just create your own servlet container yourself and register the admin WAR inside it. </p> <p>This <a href="http://svn.apache.org/viewvc/activemq/trunk/activemq-web-console/src/test/java/org/apache/activemq/web/tool/Main.java?view=markup" rel="nofollow">example shows how to do it in Java code</a> which is taken from the source of the web console.</p> <p>It will probably take you quite a few trial and errors to get all the required jars on your classpath mind you - you'll need all of Jetty, JSP, Serlvets, JSTL and more - plus the ActiveMQ stuff too</p> http://stackoverflow.com/questions/309374/message-oriented-middleware-mom-vs-enterprise-service-bus-esb/314701#314701 8 Answer by James Strachan for Message Oriented Middleware (MoM) Vs. Enterprise Service Bus (ESB) James Strachan 2008-11-24T16:36:19Z 2008-11-24T16:36:19Z <p>Messaging tends to concentrate on the reliable exchange of messages around a network; using queues as a reliable load balancer and topics to implement publish and subscribe.</p> <p>An ESB typically tends to add different features above and beyond messaging such as orchestration, routing, transformation and mediation.</p> <p>I'd recommend reading about the <a href="http://www.enterpriseintegrationpatterns.com/toc.html" rel="nofollow">Enterprise Integration Patterns</a> which gives an overview of common patterns you'll tend to use in integration problems which are all based above a message bus (though can be used with other networking technologies too).</p> <p>For example using open source; <a href="http://activemq.apache.org/" rel="nofollow">Apache ActiveMQ</a> provides a loosely coupled reliable exchange of messages. Then you can use <a href="http://activemq.apache.org/camel/" rel="nofollow">Apache Camel</a> to implement the <a href="http://activemq.apache.org/camel/enterprise-integration-patterns.html" rel="nofollow">Enterprise Integration Patterns</a> for smart routing, transformation, orchestration, <a href="http://activemq.apache.org/camel/components.html" rel="nofollow">working with other technologies</a> and so forth.</p> http://stackoverflow.com/questions/310490/jms-dds-integration/314628#314628 0 Answer by James Strachan for JMS/DDS Integration James Strachan 2008-11-24T16:15:31Z 2008-11-24T16:15:31Z <p>You could try create a DDS implementation which just delegates to the C++ API of a JMS provider such as using the <a href="http://activemq.apache.org/cms/" rel="nofollow">Apache CMS API</a> which works great with <a href="http://activemq.apache.org/" rel="nofollow">Apache ActiveMQ</a></p> http://stackoverflow.com/questions/294990/using-stomp-and-apache-activemq-as-reliable-syslog/295488#295488 2 Answer by James Strachan for Using Stomp and Apache ActiveMQ as reliable syslog James Strachan 2008-11-17T12:34:48Z 2008-11-17T12:34:48Z <p>That all sounds fine to me</p> http://stackoverflow.com/questions/290928/using-activemq-5-is-it-possible-to-configure-the-broker-with-in-memory-and-netwo/295483#295483 1 Answer by James Strachan for Using ActiveMQ 5, is it possible to configure the broker with in memory and network connections? James Strachan 2008-11-17T12:33:32Z 2008-11-17T12:33:32Z <p>The inVM connections only work if the applications are within the same JVM. </p> <p>If they are on the same box but in different processes, then TCP is the best bet. Most operating systems will use efficient TCP implementations so that you are not actually going onto the network to communicate between the local processes.</p> <p>Messaging is stream based, so shared memory doesn't really help with ActiveMQ. Its really just a choice of TCP or VM if your application is within the same JVM as the broker</p> http://stackoverflow.com/questions/270788/is-there-a-way-to-get-the-origin-ip-address-from-a-jms-message/277601#277601 3 Answer by James Strachan for Is there a way to get the origin IP address from a JMS message? James Strachan 2008-11-10T10:55:33Z 2008-11-10T10:55:33Z <p>There is an optional JMS header mentioned in the JMS specification called <em>JMSXUserID</em> which which identifies the user sending a message (which the broker validates and ensures is correct to avoid spoofing) which some JMS providers support.</p> <p>For example here is <a href="http://activemq.apache.org/jmsxuserid.html" rel="nofollow">how to enable it in Apache ActiveMQ</a></p> http://stackoverflow.com/questions/274051/long-lived-jms-sessions-is-keeping-jms-connections-jms-sessions-allways-open-a/277594#277594 1 Answer by James Strachan for Long lived JMS sessions. Is Keeping JMS connections / JMS sessions allways open a bad pratice? James Strachan 2008-11-10T10:51:29Z 2008-11-10T10:51:29Z <p>Agreed. Here are some <a href="http://activemq.apache.org/how-do-i-use-jms-efficiently.html" rel="nofollow">good tips on how to use JMS efficiently</a> which includes keeping around connections/sessions/producers/consumers.</p> <p>You might also want to check the <a href="http://activemq.apache.org/should-i-use-transactions.html" rel="nofollow">recommendation on using transactions</a> too if you are interested in maximising performance.</p> http://stackoverflow.com/questions/72895/is-async-messaging-in-particular-pub-sub-style-messaging-viable-as-a-domain-ser/73944#73944 4 Answer by James Strachan for Is Async Messaging (In particular pub/sub style messaging) viable as a domain service architecture or only in an SOA-focused environment? James Strachan 2008-09-16T16:01:12Z 2008-11-08T07:59:59Z <p>Great question :). The main problem with asynchronous messaging is that when folks use procedural or object oriented languages, working in an asynchronous or event based manner is often quite tricky and complex and hard for the programmer to read &amp; understand. Business logic is often way simpler if its built in a kinda synchronous manner - invoking methods and getting results immediately etc :).</p> <p>My rule of thumb is generally to try use simpler synchronous programming models at the micro level for business logic; then use asynchrony and SEDA at the macro level. </p> <p>For example submitting a purchase order might just write a message to a message queue; but the processing of the purchase order might require 10 different steps all being asynchronous and parallel in a high performance distributed system with many concurrent processes &amp; threads processing individual steps in parallel. So the macro level wiring is based on a SEDA kind of approach - but at the micro level the code for the individual 10 steps could be written mostly in a synchronous programming style.</p> http://stackoverflow.com/questions/266283/activemq-setup-of-tcp-socket-using-mina/267882#267882 0 Answer by James Strachan for ActiveMQ setup of tcp socket using mina James Strachan 2008-11-06T07:46:59Z 2008-11-06T12:34:58Z <p>Do you have camel-mina.jar and the mina jars on the classpath?</p> <p>Based on <a href="http://www.nabble.com/Usage-of-Mina-in-camelContext-for-TCP-loop.-td20348095s22882.html" rel="nofollow">the thread here</a> it seems to have fixed it.</p> http://stackoverflow.com/questions/265361/simple-routing-of-tcp-endpoints-in-activemq-whats-wrong/265539#265539 1 Answer by James Strachan for Simple Routing of TCP Endpoints in activemq whats wrong?? James Strachan 2008-11-05T15:45:36Z 2008-11-05T15:45:36Z <p>I'm a bit confused by your configuration file. What exactly are you trying to do? </p> <p>You've defined 2 endpoints for using MINA (which won't use ActiveMQ at all); then you are using a route from an ActievMQ queue listener_A to listener_B then listener_B to listener_A (which is a recursive loop).</p> <p>Maybe if you start describing what you want to do we can figure out what the XML should look like.</p> <p>Incidentally if you just want to refer to endpoints you've defined, use the <em>ref="name"</em> attribute rather than <em>uri="..."</em>.</p> <p>e.g.</p> <pre><code>&lt;route&gt; &lt;from ref="listener_A"/&gt; &lt;to ref="listener_B"/&gt; &lt;/route&gt; </code></pre> <p>All that being said - you tend to get better &amp; faster support on Camel via the <a href="http://activemq.apache.org/camel/discussion-forums.html" rel="nofollow">Camel User Forum</a></p> http://stackoverflow.com/questions/432188/is-anyone-using-google-protocol-buffers-in-large-scale-production-applications Comment by James Strachan on Is anyone using Google protocol buffers in large scale production applications? James Strachan 2009-01-12T11:26:46Z 2009-01-12T11:26:46Z Google use it for lots of things internally http://stackoverflow.com/questions/265361/simple-routing-of-tcp-endpoints-in-activemq-whats-wrong/265539#265539 Comment by James Strachan on Simple Routing of TCP Endpoints in activemq whats wrong?? James Strachan 2008-11-06T12:31:19Z 2008-11-06T12:31:19Z but do you want an infinite loop - where sending 1 message is gonna pretty much take down MINA/ActiveMQ processing the same single message going round and around? Loops in message queues / async programs are normally really bad http://stackoverflow.com/questions/222017/what-is-jms-good-for/222215#222215 Comment by James Strachan on what is JMS good for? James Strachan 2008-11-03T12:40:56Z 2008-11-03T12:40:56Z Even row level locking doesn't help. How in SQL do you get many competing JDBC connections to do a query that says 'get me the next message in the queue without locking any of the other clients' Even with row level locking, each client would just block on the same row :) http://stackoverflow.com/questions/241185/how-to-nest-spring-jms-messageconverters/242375#242375 Comment by James Strachan on How to nest Spring JMS MessageConverters James Strachan 2008-10-28T18:18:02Z 2008-10-28T18:18:02Z How do you plan on implementing the TextMessage API while using gzip underneath? Wouldn't you then have to facade a TextMessage onto an ObjectMessage? BTW gzip compression is something that usually a JMS provider does for you under the covers - its certainly the case with ActiveMQ http://stackoverflow.com/questions/241185/how-to-nest-spring-jms-messageconverters/242375#242375 Comment by James Strachan on How to nest Spring JMS MessageConverters James Strachan 2008-10-28T18:17:29Z 2008-10-28T18:17:29Z So long as you delegate pretty much all the Message APIs to the real JMS message you should be OK; but it sounds like loads of work for little in the way of value. e.g. why not just add your own API that supports chaining without having to wrap each Message? http://stackoverflow.com/questions/192718/jndi-without-a-j2ee-container-with-jnp-maybe-some-other-provider/197073#197073 Comment by James Strachan on JNDI without a J2EE Container (with JNP? Maybe some other provider?) James Strachan 2008-10-14T08:07:42Z 2008-10-14T08:07:42Z Sorry - cut and paste issue. I've just updated the <i>java.naming.provider.url</i> entry so it uses TCP - and uses failover which you should use by default to reconnect if a socket fails or a broker is bounced http://stackoverflow.com/questions/192718/jndi-without-a-j2ee-container-with-jnp-maybe-some-other-provider/192936#192936 Comment by James Strachan on JNDI without a J2EE Container (with JNP? Maybe some other provider?) James Strachan 2008-10-13T09:11:40Z 2008-10-13T09:11:40Z Note the JNDI provider you are using is not Simple JNDI - but the JNDI provicder that comes with ActiveMQ :). See the class name of the <i>java.naming.factory.initial</i> entry :) http://stackoverflow.com/questions/109343/batching-in-rest/127034#127034 Comment by James Strachan on Batching in REST James Strachan 2008-09-29T10:01:47Z 2008-09-29T10:01:47Z Agreed - plus HTTP supports keep alive so with HTTP pipelining and keep alive you get the effect of batching while using the same REST API - there's usually no need for another REST API to your service http://stackoverflow.com/questions/90451/why-would-one-use-rest-instead-of-web-services/90473#90473 Comment by James Strachan on Why would one use REST instead of Web services? James Strachan 2008-09-18T09:05:58Z 2008-09-18T09:05:58Z Working great with web browsers to provide a universal client to your services also helps :) http://stackoverflow.com/questions/90451/why-would-one-use-rest-instead-of-web-services/90473#90473 Comment by James Strachan on Why would one use REST instead of Web services? James Strachan 2008-09-18T09:05:16Z 2008-09-18T09:05:16Z Also working great with HTTP infrastructure - e.g. GETs are cached aggressively along with the use of last modified and etags