1
vote
Write a Servlet that Talks to JMS (ActiveMQ) and OnMessage Update the Site
Have you tried reading the answers for this question which links to the …
2
votes
What are the pros and cons of using RMI or JMS between web and business tiers?
By web client do you mean web browser? If so looking at stuff like DWR or JAX-RS are my recommendations. RMI or JMS only really work when both sides are Java code.
With any remoting technol …
2
votes
Reconnecting JMS listener to JBossMQ
I'd highly recommend you use the Spring abstractions for JMS such as the MessageListenerConta …
1
vote
Tool for posting test messages onto a JMS queue?
I recommend the approach of @Will and using the Web Console of ActiveMQ which lets you post messages and browse queues or de …
1
vote
JMS (esp Tibco EMS) can I have an environment with in a message broker
I'd recommend against using the same middleware servers for both production and QA at the same time (particularly message brokers) as in QA you will probably want to do load & soak tests which …
2
votes
What are the advantages/disadvantages for distributing multi stage tasks via JMS or JavaSpaces?
If you want SEDA, sending messages from stage to stage, then JMS implementations are typically much faster and more scalable, since MOMs are designed to not require locks so they can be highly asyn …
1
vote
JMS message receiver filtering by JMSCorrelationID
BTW while its not the actual question you asked - if you are trying to implement request response over JMS I'd recommend …
1
vote
How do I set up a mock queue using mockrunner to test an xml filter?
I'd recommend having a look at using Apache Camel to create your test case. Then its really easy to switch your test case from any of …
2
votes
JNDI without a J2EE Container (with JNP? Maybe some other provider?)
Apache ActiveMQ already comes with an integrated lightweight JNDI provider. See …
11
votes
what is JMS good for?
JMS and messaging is really about 2 totally different things.
publish and subscribe (sending a message to as many consumers as are interested - a bit like sending an email to a mailin …
1
vote
Replacing a message in a jms queue
This sounds like an ideal use case for the Idempotent Consumer which removes duplicates from a queue or topic. …
2
votes
How to nest Spring JMS MessageConverters
Do you really wanna wrap MessageConverter instances inside other MessageConverter instances? The whole point of a MessageConverter is to turn a Message into something else (that is not a JMS Messag …
1
vote
How do you format the body of a JMS text message?
XML is probably the most popular along with JSON a close second - but as others have said in this thread - XML, CSV, JSON or even HTML are fine.
XSDs are overrated really - their only real …
0
votes
Best messaging medium for real-time SOA applications?
If you go down the HTTP route and you want to support more than one machine or some kind of reliability - you are going to need a load balancer capable of discovering the available web servers and …
2
votes
javax.jms does not exist - compiling activemq examples
In the lib directory are the jars you'll need to compile things. The JMS API is inside lib/geronimo-jms-1.1.jar.
How are you trying to build them BTW? You using the Ant build that …
