Tagged Questions

The Java Message Service (JMS) API is a Java Message Oriented Middleware (MOM) API for sending messages between two or more clients. JMS is a part of the Java Platform, Enterprise Edition, and is defined by a specification developed under the Java Community Process.

learn more… | top users | synonyms

25
votes
10answers
6k views

what is JMS good for?

I'm looking for (simple) examples of problems for which JMS is a good solution, and also reasons why JMS is a good solution in these cases. In the past I've simply used the database as a means of ...
20
votes
7answers
8k views

Active MQ vs JBoss Messaging

I am going to choose a JMS message broker for a project. It is critical that the JMS server is stable and can handle a high load of messages. I have narrowed down the list to include Active MQ and ...
17
votes
9answers
1k views

What's a good Java-based Master-Slave communication mechanism?

I'm creating a Java application that requires master-slave communication between JVMs, possibly residing on the same physical machine. There will be a "master" server running inside a JEE application ...
17
votes
9answers
7k views

Which JMS implementation do you use?

We are using ActiveMQ 5.2 as our implementation of choice and we picked it a while ago. It performs well enough for our use right now. Since its been a while, I was wondering what other Java Message ...
16
votes
1answer
2k views

Scala Actors vs JMS

What are the differences using Scala Actors instead of JMS? For example from a performance and scalability perspective, what does the Scala Actor model add compared to JMS? In which cases does it ...
16
votes
5answers
6k views

When to use Spring Integration vs. Camel?

As a seasoned Spring user I was assuming that Spring Integration would make the most sense in a recent project requiring some (JMS) messaging capabilities (more details). After some days working with ...
15
votes
2answers
715 views

ActiveMQ: How to handle broker failovers while using temporary queues

On my JMS applications we use temporary queues on Producers to be able to receive replies back from Consumer applications. I am facing exactly same issue on my end as mentioned in this thread: ...
15
votes
4answers
13k views

importing an existing x509 certificate and private key in Java keystore to use in ActiveMQ ssl context

I have this in activemq config <sslContext> <sslContext keyStore="file:/home/alex/work/amq/broker.ks" keyStorePassword="password" trustStore="file:${activemq.base}/conf/broker.ts" ...
14
votes
10answers
6k views

Real world use of JMS/message queues?

I was just reading abit about JMS and Apache ActiveMQ. And was wondering what real world use have people here used JMS or similar message queue technologies for ?
12
votes
2answers
1k views

Advantages of HornetQ vs ActiveMQ vs Qpid

I was browsing for an open source messaging software and after some good bit of research I came across these three products. I've taken these out for a preliminary test drive, having had them handle ...
12
votes
4answers
2k views

Which embedded messaging system -> ActiveMQ or HornetQ

I would appreciate some general pointers and opinions regarding which of the two messaging systems is easier to manage has less gotchas or magic stuff one needs to know and avoid has less overal ...
11
votes
1answer
3k views

java.net maven repo - JMS artifact missing

I just created a new Maven project using the default archetype and added the following dependency to my POM file. <dependencies> <dependency> ...
8
votes
4answers
246 views

Unusual Java behavior - why does this work?

I've found some interesting behavior... I can't decide if it's a bug or incompetence, but currently leaning towards incompetence. This code will not enter the loop, even if there are messages ...
8
votes
2answers
1k views

When to you Akka (Scala Actors) instead of “older” messaging solutions such as WebSphere MQ or Tibco Rendevous?

I already read the discussion about Scala Actors vs. JMS: Scala Actors vs JMS I will play with Akka in the next weeks to get a better understanding about its power and good use cases. It looks really ...
8
votes
6answers
1k views

Centralized Logging for many Java Apps: Syslog vs JMS vs Http vs Local file

I what all my applications logs to be centralized (ideally in near real-time). We will use a Log4 Appender. Which one should I use: Send log event in a JMS Queue Syslog / syslog-ng Write to a ...
8
votes
3answers
590 views

Does Terracotta make JMS an unneeded layer?

We're currently writing an application for which IT has already purchased hardware for. Their approach was to buy big hardware on which we would deploy. In order to add more processing, they plan on ...
8
votes
5answers
5k views

JMS Messaging Performance: Lots of Topics/Queues vs. Extensive Filtering (Message Selectors)

I'm working on a project that is going to make heavy use of JBoss Messaging (JMS). I'm tasked with building an easy to use wrapper around Messaging for other developers and am thinking about using ...
8
votes
4answers
4k views

Reconnecting JMS listener to JBossMQ

We have a Java listener that reads text messages off of a queue in JBossMQ. If we have to reboot JBoss, the listener will not reconnect and start reading messages again. We just get messages in the ...
8
votes
11answers
8k views

Tool for posting test messages onto a JMS queue?

Can anyone recommend a tool for quickly posting test messages onto a JMS queue? The tool should allow the user to enter some data, perhaps an XML payload, and then submit it to a queue? I know I could ...
7
votes
2answers
555 views

JMS performance

I'm having a bit of trouble with understanding JMS from a performance perspective. We have this very straightforward code in our application: QueueConnection connection = null; QueueSession session = ...
7
votes
2answers
1k views

Potential pitfalls in using a JMS queue?

I've been asked to design and implement a system for receiving a high volume of automated sensor data from a large number of devices. This data will be produced at regular intervals and sent to the ...
7
votes
5answers
2k views

Best solution for Java HTTP push (messaging)

We want to push data from a server to clients but can only use HTTP (port 80). What is the best solution for messaging? One idea is Comet. Are there other ideas or frameworks which offer lets say JMS ...
6
votes
1answer
76 views

Decoupling Spring MVC's Controller from the HTTPServlet

I have been working with Spring for a while now to realize that not all of the incoming requests I receive in my app are HTTP-based. Some requests are email-based, and need email-based responses, ...
6
votes
3answers
251 views

Clustering a stateless Java EE application with Glassfish on Amazon AWS

What's the best way to deploy a stateless Java EE 6 application in a distributed environment in order to achieve high availability and scalability? My application is stateless. Therefore, I don't need ...
6
votes
2answers
237 views

Java Message Service and Haskell

I was wondering if there is any way to receive JMS messages from some provider like ActiveMQ or WebMQ in a Haskell program. I've seen that there is a Haskell client for ActiveMQ but it seems to be ...
6
votes
5answers
4k views

What should the Java main method be for a standalone application (for Spring JMS)?

I am interested in creating a Spring standalone application that will run and wait to receive messages from an ActiveMQ queue using Spring JMS. I have searched a lot of places and cannot find a ...
6
votes
1answer
673 views

Delivery of JMS message before the transaction is committed

I have a very simple scenario involving a database and a JMS in an application server (Glassfish). The scenario is dead simple: 1. an EJB inserts a row in the database and sends a message. 2. when ...
6
votes
2answers
932 views

Why choosing JMS for asynchronous solution ? Why is it better than a simple entity bean?

In most projects I have participated, the choice of an asynchronous solution has been a source of much discussion ... Each time a single entity bean was enough to manage a queue: we just store a ...
6
votes
5answers
4k views

Why is my JNDI lookup for a QueueConnectionFactory returning null?

I am trying to look up a QueueConnectionFactory and Queue via Geronimo's JNDI. The Queue gets returned fine, but the QueueConnectionFactory lookup always returns null. It doesn't throw a ...
5
votes
1answer
306 views

Message-driven bean (EJB3) in WebSphere 7, XA transactions, Error handling

I am a relative newb to EJB. Background: I have an MDB using the WebSphere default messaging provider receiving MapMessages that has a java.sql.DataSource to do some work, using preparedstatement, ...
5
votes
2answers
379 views

jms producer performance with spring

i created a simple producer consumer simulation based on spring, jms and activemq, i'm trying to reach high performance from both sides, producers and consumers, Connection settings : ...
5
votes
1answer
363 views

How does JMS Receive work internally?

I've been researching various communication technologies/architectures/patterns/implementations (read: buzzwords) including Web Services (WCF, Axis2), ESBs, SOA, and wanted to know more about JMS with ...
5
votes
2answers
486 views

Effective JMS processing

We have a JMS queue which receives a very large number of messages. Listener has to save message in database using a database transaction and then commit JMS transaction. So how can i do it more ...
5
votes
2answers
662 views

JMS queue is full

My JEE application sends JMS to queue continuously, but sometimes the JMS consumer application stopped receiving JMS. It causes the JMS queue very large even full, that collapses the server. My server ...
5
votes
2answers
1k views

JMS - Going from one to multiple consumers

I have a JMS client which is producing messages and sending over a JMS queue to its unique consumer. What I want is more than one consumer getting those messages. The first thing that comes to my ...
5
votes
2answers
272 views

Best solution architecture for user notifications in Java/Grails environment?

I am building a community website using Grails and I want to implement user notifications exactly like stackoverflow.com. For instance, user will get notified for new events ('You have new comments', ...
5
votes
2answers
229 views

Is JMS (or any messaging solution) appropriate for a follower/following model

For the sake of simplicity, let's assume I'm cloning twitter (I'm not). So every user can follow other users, and be followed by other users. For each user you follow, you receive all tweets he sends. ...
5
votes
3answers
728 views

JMS transport v/s MQ transport

I am using Oracle Service Bus(OSB) as the MOM, and the destination URI is a IBM MQ queue. I just want to know which would be the preferred transport. OSB provides 2 adapters for the same, JMS adapter ...
5
votes
2answers
2k views

HornetQ on Tomcat

Is that possible to run HornetQ (JBoss JMS implementation) on Tomcat? The HornetQ documentation is all about JBoss AS or standalone scenarios... Update: This is from HornetQ feature list: "HornetQ ...
5
votes
1answer
685 views

What is the purpose of a JMS session?

What is the purpose of a JMS session? Why isn't a connection alone sufficient to exchange JMS messages between senders and receivers?
5
votes
1answer
2k views

What happens on a JMS queue when onMessage() throws a JMSException?

I'm using Spring 2.5 with my custom class that implements MessageListener. If a JmsException is thrown in my onMessage( ) method, what happens to the state of the queue? Is the message considered ...
5
votes
3answers
2k views

Lightweight JMS broker

I'm looking for a small and yet efficient enough lightweight JMS broker solution with no or minimum of dependencies. My messaging code should be running in the environment with a lot of dependencies I ...
5
votes
2answers
599 views

J2EE/Glassfish Application Logic

I am trying to understand where some of my application logic should go in my J2EE Application. I am new to J2EE and am looking at loading a lot of unstructured data from a legacy database and building ...
5
votes
6answers
669 views

Confused as to when you would use JMS (or a queue in general) versus a database

When you store a message in a queue, isn't it more of meta data information so whoever pulls from the queue knows how to process the data? the actual information in the queue doesn't always hold all ...
5
votes
4answers
907 views

Using Websphere MQ with JMS from a .NET application

I'm trying to send a message to a java server over a Websphere MQ which uses JMS as the transport protocol. I can happily drop messages on the MQ using the IBM supplied libraries, but the server ...
5
votes
6answers
4k views

JMS vs Webservices

What are the big advantages from JMS over Webservices or vice versa? (Are webservices bloated? Is JMS overall better for providing interfaces?)
4
votes
2answers
70 views

How can I control the rate at which Spring receives from a queue?

I am using Spring's message-driven POJO framework (and DefaultMessageListenerContainer in particular) to listen to several queues and topics. In the case of one particularly queue, there is a need to ...
4
votes
1answer
39 views

Is there an enterprise message queue which can drop duplicate messages (first value stays)?

I am looking looking for a message queue with these requirements. Couldn't find it; maybe the closest was the rabbitmq-lvc plugin (but I need the first value in the line to stick and stay in front). ...
4
votes
4answers
120 views

Asynchronous execution in Java EE

I'm learning Java EE currently (moving from SE) and I am confused about asynchronous execution in Java EE environment. Basically what I understand creating Thread or Timer is not exactly recommended. ...
4
votes
5answers
290 views

How to build a auto reply JMS listener in JUnit (in OpenEJB)

I have a EJB to send a message to JMS queue and wait the reply from it. I want to test the EJB, it's easy to use OpenEJB to do the JUnit test of the EJB. But the problem is this EJB will wait the JMS ...

1 2 3 4 5 25