1. activemq consumer enumeration stackoverflow.comIs it possible to use an activemq consumer (in .NET) like this? foreach (var msg in consumer) { // process message } such that the enumeration loop stops, without consuming CPU, until a message is ... |
2. JMS consumer with ActiveMQ network of brokers stackoverflow.comI have a JMS topic on an ActiveMQ network of brokers cluster (aka distributed topic). I have an external JMS consumer (Weblogic portal) that needs to subscribe to this topic ... |
3. ActiveMQ - sending message to specific consumer stackoverflow.comHaving single AMQ broker and 100 consumers connected. I would send the message to some specific consumer, so other consumers does not receive it (client-side filtering won't work). Simplest way is to ... |
4. Active MQ showing more than one (ghost) consumer stackoverflow.comWe have a system that uses ActiveMQ (Queues) - and have exactly one producer and one consumer (implemented as a Windows Service in .NET). Over the weekend, the infrastructure team had ... |
5. How can I configure ActiveMQ to drop a consumer if it just stops accepting data? stackoverflow.comToday, I saw many errors on my ActiveMQ 5.3.2 console: INFO | Usage Manager Memory Limit reached. Stopping producer (ID:...) to prevent flooding topic://mytopic. See |
6. Does an ActiveMQ consumer need to be open when explicit acking messages? stackoverflow.comMy application does batch processing by reading messages from ActiveMQ. I read using the async JMS API by implementing |
7. java.lang.NoClassDefFoundError when running JMS consumer stackoverflow.comI am trying to run a class I made however I get this error: Exception in thread "main" java.lang.NoClassDefFoundError: javax/jms/DestinationI don't understand why it's not working even ... |
8. ActiveMQ: starting consumer without broker stackoverflow.comI am writing a JMS client that consumes from a Queue. My broker is activemq, if it matters. One requirement is that the client should start even if the broker is down. ... |
9. How can I unregister from a JMS message group without killing the entire consumer (ActiveMQ) stackoverflow.comIn my distributed application, I am dispatching processing requests to a JMS queue. I have multiple nodes consuming from that queue (load balancing). Processing the requests requires a rather large chunk ... |
10. Queue consumer clusters with ActiveMQ stackoverflow.comHow to configure cluster of Consumers in ActiveMQ? I create simple embedded ActiveMQ application with two consumers of one Queue, whose are working in separate threads. But when I send message to ... |
11. MessageConsumer's selector issue on ActiveMQ stackoverflow.comCould someone please confirm if I'm right or wrong on this. It seems to me that "selector" operation is done within MessageConsumer implementation. (i.e. ALL messages are still dispatched from ... |
12. What is the best way to shutdown a durable consumer using JMS? stackoverflow.comI have a durable consumer on a JMS topic. I set the client ID, I can see that it's listed on the queue as a durable consumer. When I roll out ... |
13. ActiveMQ - Consumer listener that creates and shows form hangs stackoverflow.comI have a winforms form that sets up a an ActiveMQ message consumer and listener as follows:
|
14. NMS Consumer does not reconnect to ActiveMQ stackoverflow.comI have a working platform using the latest NMS and ActiveMQ. For the most part, all works great most of the time, but occasionally I find that a Consumer stops receiving ... |
15. Consumer queue remove even though cachelevel is set to CACHE_CONSUMER stackoverflow.comI realized, even after explicitly setting the property
my consumer is still removed.
See log below:
|
16. ActiveMQ C++ Synchronous consumer stackoverflow.comThere are some code samples for ActiveMQ C++ Client, which are asynchronous. What I am looking for is synchronous consumer. I just want to send and get messages. The ... |