PDA

View Full Version : JMS as transfer protocol in Spring Remoting



mpultz
Jun 28th, 2005, 04:09 PM
Hi,

Is it possible to use JMS as transfer protocol in Spring Remoting? From the docs (http://static.springframework.org/spring/docs/1.2.x/reference/remoting.html) I get the impression that this might be the case. Or is it planned to be included in a future release?

Regards,
Mads

charlesb
Jun 30th, 2005, 04:10 AM
AFAIK, this is not available in any official spring release yet. I understand that it is planned for 1.3 (http://opensource.atlassian.com/projects/spring/browse/SPR-988). There's some code in the sandbox which implements JMS remoting, but I couldn't say if it works or not, and it will probably change a lot before the final release.

jstrachan
Jul 7th, 2005, 02:30 AM
There's a small library called Lingo which supports Spring remoting for JMS.

http://lingo.codehaus.org/

It has support for JMS ObjectMessage for serialized request/responses or for XML based TexttMessage with XStream.

Its high performance; using JMS correlationIDs and thread multiplexing so its very fast and uses minimal JMS resources.

Finally it has support for a whole range of message exchange patterns (MEPs) such as asynchronous one way methods, synchronous request-response and asynchronous request-response.