Questions tagged [stomp]

STOMP is a simple interoperable protocol designed for asynchronous message passing between clients via mediating servers.

STOMP is a very simple and easy to implement protocol, coming from the HTTP school of design; the server side may be hard to implement well, but it is very easy to write a STOMP client to get yourself connected to a STOMP server.

Versions of the STOMP specification can be found at:

1428 questions
0
votes
1 answer

Apollo activemq ack

Hy, i use an Apollo Activemq Broker and Stomp. I wrote two methods one for sending the message to the broker and one for reading the message from the queue. When i send one message to the borker and then i read it, everything is ok, i can read and…
Cristi
  • 31
  • 6
0
votes
1 answer

Using messaging to do writes as well as reads

I come from a web background where I only have to deal with HTTP so please excuse my ignorance. I have an app which where clients listen for changes in a message queue which uses stomp. Previously the client only needed to listen to the relevant…
ChrisInCambo
  • 8,455
  • 15
  • 50
  • 63
0
votes
1 answer

Camel ActiveMQComponent when using other than openwire protocols

Following the guidelines on activemq.apache.org it's fairly easy to get up and running using openwire as transport protocol. Letting the URI have the trace option, lets you see the handshaking and all:…
jhberges
  • 87
  • 12
0
votes
1 answer

ActiveMQ + Stomp: Multi-subscriber queue

I'm interacting with ActiveMQ via STOMP. I have one application which publishes messages and a second application which subscribes and processes the messages. If I am writing messages to a queue I can be certain that, if I have two consumers, each…
JP.
  • 5,507
  • 15
  • 59
  • 100
0
votes
1 answer

Is there any documentation regarding getting message from ActiveMQ via STOMP protocol using C#

I am trying to receive/send message from queue of activeMQ using stomp protocol using c#. As I don't know much about activemq and stomp. So I'm searching for some proper document or sample code by which I can learn step by step. static void…
Manoj G
  • 87
  • 14
0
votes
1 answer

HornetQ Client STOMP

Why i can not create a simple stomp client using the hornetq-core-client.2.2.21.Final.jar? Map properties = new HashMap(); properties.put("host", "localhost"); properties.put("port", 61612); properties.put("protocol",…
CelinHC
  • 1,857
  • 2
  • 27
  • 36
0
votes
1 answer

Error in perl producer to connect to activemq server

I am trying out the perl producer to talk to ActiveMq. Please find the code which i have tried out. It is giving me an error "* Net::STOMP::Client::IO::receive_data(): cannot sysread(): EOF"** After debugging the error is at…
0
votes
1 answer

Why is my stream being closed by peer?

I have the following console program that listens to a destination (a queue or a topic, it doesn't matter) on an ActiveMQ Stomp server, and simply logs the messages it receives to the console: using System; using Apache.NMS.Stomp; using…
fretje
  • 8,322
  • 2
  • 49
  • 61
0
votes
1 answer

Testing queues in ActiveMQ using Stomp Ruby Client?

I am trying to test the following scenarios in ActiveMQ. Establish/Open a connection with ActiveMQ Validate if "Queue_name" is available in ActiveMQ If found, print the # of entities available in "Queue" Validate and print the messages from the…
nids
  • 925
  • 2
  • 11
  • 16
0
votes
1 answer

PHP Stomp client library for ActiveMQ + WebSockets

I've installed ActiveMQ with WebSocket support and I'm able to get the JS demo working. The issue that I'm facing right now is that the PHP Stomp library won't work with the WebSocket URI so when I try: $stomp = new…
user628896
  • 225
  • 2
  • 9
0
votes
1 answer

AciveMQ demo swallows messages

When I'm trying out the websocket chat demo of ActiveMQ (http://localhost:8161/demo/websocket/) it seems that not all messages are transmitted between two different browser instances. For some reason only every 2nd message gets sent to one of the…
orange
  • 7,755
  • 14
  • 75
  • 139
0
votes
2 answers

Java Producer, Stompy Python Consumer, ActiveMQ

I have a java ActiveMQ producer which produces Integer messages into an ObjectMessage instance. On the python side, I use stomp python for listening on the queue. However, I receive empty message body although all the headers are received right.…
Amm Sokun
  • 1,298
  • 4
  • 20
  • 35
0
votes
1 answer

PHP remove repeatedly remove lines after specific text to find XML

I have code to retrieve stomp messages, which works. I then want to grab the xml out of the stomp message to do stuff with, which I have code for and it works. The challenge is to strip out the cruft from the message and get only the xml. Here is a…
fowbar
  • 40
  • 1
  • 8
0
votes
1 answer

stomp protocol regular sequences for durable subscription

I'm working with the stomp protocol using the active mq implementation as stomp server/broker. I would like to have a message queue for a stomp client, that can be filled while the client is offline so that when the client connects from time to time…
user1392028
  • 11
  • 1
  • 3
0
votes
1 answer

Perl to Java Active MQ messaging using Net::Stomp

I am trying send a message to an Active MQ topic using Perl's Net::Stomp. On the other side a Java Client monitors the Topic and picks up the message from it. The Active MQ is based on Spring framework and I have the below defined in the Spring…
Anjan Biswas
  • 7,746
  • 5
  • 47
  • 77