Open Source Applications Using Java JMS?

Does anyone know about open source applications that are built on top of Java JMS? I am looking to find applications so that I can study them and see how they are used.

There are examples of hypothetical applications for JMS in this earlier post , but I'm looking for actual code!

Thanks Nels

+4
source share
2 answers

Apache CXF supports JMS as a transport for SOAP messages. Lots of source code to read.

+2
source

Do you just want to learn the JMS API? If so, this is actually one of the simplest parts of Java EE, so you should have no problem finding more specific help.

To more accurately answer your question, have you looked at Apache ActiveMQ or JBoss Messaging ? Both are open source JMS providers, and they have many sample APIs and documentation on their sites.

+2
source

All Articles