Tagged Questions
Apache ActiveMQ-CPP provides a rich C++ client for Apache ActiveMQ the most popular and powerful open source message broker
2
votes
2answers
407 views
HornetQ, consumer can't find queue
I'm trying to use ActiveMQ-CPP with HornetQ. I'm using the ActiveMQ-CPP bundled example, but I'm having a hard time with it.
The producer works like a charm, but the consumer gives me the following ...
1
vote
1answer
95 views
ActiveMQ C++ Synchronous Client
I have the following code from apache's svn. As you can see this is an asynchronous client. What i want is a synchronous client, so that clients, can ask my consumer "can i get a message please", and ...
1
vote
1answer
212 views
c++ ActiveMQ sending binary messages
Is it possible to send a stringstream containing binary over activemq? If so, how is this done?
I know the Java version of activemq has a feature called BlobMessage or StreamMessage to do so, ...
1
vote
1answer
191 views
Durability Problem with ActiveMQ-cpp and stomp
I have a problem creating durable consumers and producers with ActiveMQ-CPP and stomp protocol. I am trying to connect to HornetQ using stomp, and capable of sending and receiving messages in ...
1
vote
1answer
863 views
My C++ ActiveMQ client can send messages, but not receive messages
I have the ActiveMQ-CPP 2.2.1 Visual Studio 2005 project compiling and running. In the console window, it shows the messages are being sent, though they're not being received. I can both send and ...
0
votes
1answer
44 views
activemq-cpp how can I get the status send or receive timeout
I have set the timeout property for a activemq connection when I send message to broker.
But I couldn't get any exception or return when it send timeout.
I couldn't gain the status of sending ...
0
votes
1answer
40 views
activemq-cpp receive timeout when the message send to the queue with property timetolive
I send a message to the queue with property "timetolive" with activemq producer and then receive with activemq consumer function receive(long long timeout).After receive some messages the receive ...
0
votes
1answer
112 views
Segmentation Fault Fail?
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread -177935456 (LWP 5483)]
0xf79ff2ca in activemq::core::ActiveMQSessionExecutor::dispatch (this=0xf4b04bc0,
...
0
votes
1answer
49 views
ActiveMQ C++ Synchronous consumer
There 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 code I have pointed out uses ...
0
votes
1answer
30 views
Why does ActiveMQ Message server requires JDK, Not JRE?
ActiveMQ Message broker requires Java JDK (not the Java runtime JRE). Does anyone know why?
Thank you.
0
votes
1answer
55 views
Message Compression in ActiveMQ STOMP Client
Is it possible to implement text message compression on publishing to a queue/topic(with out modifying the server or consumer)? I want to know if the existing Java STOMP client or CPP STOMP Client ...
0
votes
1answer
27 views
ActiveMQ-CPP prefetchSize 3.2.2
So far I am unable to get the prefetch size to function.
I have tried:
mySession->createQueue([quename]?consumer.prefetchSize=5);
tcp://localhost:61616?prefetchPolicy.all=5
I am using the ...
0
votes
2answers
88 views
How do I ensure a topic is removed from an ActiveMQ broker
I am having some trouble with an ActiveMQ broker not removing unused topics from it's memory.
Currently our system is designed to generate many topics dynamically with names designated at runtime. ...
0
votes
1answer
193 views
Activemq-cpp BytesMessage
I'm working with activemq-cpp and I am attempting to send binary data using BytesMessage. I have a producer and a consumer set up to send and receive the message. The connection and session is working ...
0
votes
1answer
90 views
ActiveMQ CPP brokers URI problem
I'm using ActiveMQ CPP 5.2.3.
I'm trying to add transport.commandTracingEnabled=true to tcp transport layer:
...
0
votes
1answer
292 views
ActiveMQCPP connection.start() hangs up
I'm using ActiveMQ CPP 5.2.3 if it matters.
I have JMS producer that connects using failover transport to JMS network of brokers.
When I call connection->start() it hangs up (see AMQ-2114).
If I ...
0
votes
3answers
562 views
Can ActiveMQ CPP Api be used to Talk to RabbitMQ Broker?
We have C++ Software that needs to send message via RabbitMQ broker, has somebody tried ActiveMQ CPP lib (CMS) to send/receive messages to RabbitMQ broker?