Apache ActiveMQ is an open source (Apache 2.0 licensed) message broker which fully implements the Java Message Service 1.1 (JMS). It provides "Enterprise Features" like clustering, multiple message stores, and ability to use any database as a JMS persistence provider besides VM, cache, and journal ...
0
votes
1answer
8 views
Retrieve Statistics from ActiveMQ with Stompy
Really simple question, is the a way to access the statistic of an ActiveMQ broker using the Stompy module or something similar?
0
votes
1answer
19 views
How to call Apache NMS from in a sandbox?
I'm trying to call Apache ActiveMQ NMS Version 1.6.0 from my code ('IntPub') that must run in a sandbox in a .NET 4.0 environment for security reasons. The program that creates the sandbox makes my ...
0
votes
0answers
19 views
Activemq stop broker client jms connection from server side
I am new to activeMQ. I am using it for client and broker connection for receiving client side messages. Actually I want to stop broker and client connection from server side, which is based on when ...
0
votes
0answers
23 views
ActiveMQ Advisory for terminating connection
What I am looking for is a way in ActiveMQ to detect when a connection is created or closed using the available advisory topics. As I understand from this article ...
-1
votes
0answers
15 views
How to find all client side code of ZeroMQ/ActiveMq in application
How to find all client side code(message absorb-er) of ZeroMQ/ActiveMq in large application.
client can be in ruby code or java code.
I have found the message publisher in the application, but how to ...
1
vote
1answer
31 views
Configuring AMQP transport connector for ActiveMQ broker in Camel
Goal i'm trying to achieve is to start AMQP protocol listening from Apache Camel's ActiveMQ broker.
I've did create maven module from org.apache.camel.archetypes:camel-archetype-activemq (Creates a ...
0
votes
1answer
25 views
Failed to start ActiveMQ JMS Message Broker
I am trying to run my project using jetty-debug. It was working fine yesterday, but today when I tried to running the project it threw me the included errors.
Any idea how I could resolve this? I ...
0
votes
1answer
13 views
Can ActiveMQ accept messages with Enum headers from Camel?
I am sending a Camel exchange to activeMQ. Looks essentially like this:
public enum MyEnum {
ENUM_VALUE;
}
// Elsewhere, my route
from( INPUT_URI )
.setHeader( "someHeader", constant( ...
1
vote
1answer
23 views
Sending a JMS Message from Oracle Database on DML Event
I'm trying to determine if it is possible to configure Oracle Database 11g to send a JMS message to a broker (ActiveMQ in my case) when a particular DML event (say an insert or update to a particular ...
0
votes
1answer
15 views
ActiveMQ Message Forwarding
I have the following problem:
I have access to the transportConnector of ActiveMQ broker A. Lets say the uri is tcp://123.123.123.123:61616. I need to set up broker B on another ActiveMQ instance in ...
0
votes
1answer
17 views
How to make ActiveMQ transportConnector property environmentaly-dependent
I'm looking for a way to replace this on my ActiveMQ config:
<transportConnector uri="tcp://localhost:60019"> disableAsyncDispatch="false"/>
with a "not-hardcoded" URI (e.g., replacing ...
0
votes
0answers
18 views
Unique scheduled jobs in ActiveMQ
I've multiple nodes (let's say instances of an application in a cluster) able to publish scheduled messages to ActiveMQ (cron-like). What I want to achieve is to have only unique jobs scheduled (to ...
1
vote
4answers
78 views
Sytem.exit vs break or return
I am executing following ActiveMq program, to put the files in queues.
public static void main(String[] args) throws JMSException, IOException {
FileInputStream in;
...
0
votes
0answers
19 views
Error managing STOMP connections Node.js
I have this node.js for websocket pushing application, where I have in one hand the web front end cilents connected to the websockets server, using Socket.io; these clients send a JSON to apply ...
0
votes
1answer
22 views
Sending Files using Active MQ with BlobMessage
I have an requirement in my application to send files from one application to another over HTTP/FTP protocol. I found following link which tells that the same can be done using Active MQ with supoort ...