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

Issue with STOMP on ActiveMQ being used on OSGI (KARAF)

I have installed Karaf (2.2.5) on Ubuntu Linux 10.04. Installed ActiveMQ as a feature on top of Karaf. Created a custom broker with stomp connector. Now when I try to connect to this stomp broker from Java client, I get…
-1
votes
1 answer

CORS bloks request from another port even though setAllowedOrigins is set: STOMP over WebSocket

I struggle with connecting my client (or through Postman) to websocket server: if got 404 response when I try to connect and following prompts in console: Access to XMLHttpRequest at 'http://localhost:8080/ws-endpoint/info?t=1670410538045' from…
BJagger
  • 181
  • 10
-1
votes
1 answer

Web Socket endpoints

Hello everyone I'm having some issues figuring out some websocket endpoints. I am trying to build a basic chat application to help me gain an understanding of websockets. I'm running a Java 8 Spring Boot Websocket server that is running on…
-1
votes
1 answer

Can Netty integrate STOMP?

I am currently using Netty integrated WebSocket to do a chat room, I would like to ask whether Netty supports STOMP protocol, so that Netty+ WebSocket + STOMP can be done? I can't find any examples online because the combination doesn't fit the…
Ares' hand
  • 13
  • 2
-1
votes
1 answer

Does stomp.ConnectionListener in python holds any data while dequeuing messages from ActiveMQ?

I want to pull the messages from AMQ to python. I want to use python for batch processing (like if I have 1000 messages in the queue, I need to dequeue every 100 messages and process them and take the next 100 messages and process...until all…
-1
votes
1 answer

Socket notifications

I have a screen that receives notifications from the Spring Boot backend, and I show them in a bell. When deleting a notification it deletes it well, but when another new notification arrives it loads the ones that I had already deleted. import…
dany952
  • 191
  • 3
  • 9
-1
votes
1 answer

Angular: RxStomp .Watch .Subsribe Method

I can't figure out how to use the watch method in RxStomp. subscribeToOtherAccount(otherAccount): string { const channelId = ChannelService.createChannel(this.username, otherAccount.username); this.rxStompService.watch('/channel/chat/' +…
Tinus
  • 19
  • 6
-1
votes
1 answer

Topic subscription using stompngo client

I am using stompngo client library to connect and subscribe from a topic in ActiveMQ published as STOMP. I don't see a provision to mention the Destination as TOPIC and it seems that by default the subscription is registered in ActiveMQ as a QUEUE.…
Sony Joseph
  • 189
  • 2
  • 13
-1
votes
1 answer

invalid uri: stomp://0.0.0.0:61613 [invalid broker(s): 'NoneType' object has no attribute 'groupdict']

I am trying to connect to my local ActiveMQ. On connection attempt I get the following message: invalid uri: stomp://0.0.0.0:61613 [invalid broker(s): 'NoneType' object has no attribute 'groupdict'] My activemq.xml has following…
noobie-php
  • 6,817
  • 15
  • 54
  • 101
-1
votes
1 answer

How to install stomp on php 7.3 + ubuntu?

I am using ubuntu 14.4 and PHP 7.3, I want to know that how to install PHP stomp. I have tried with this command: "sudo pecl7.X-sp install stomp" and I am getting this response: "sudo: pecl7.X-sp: command not found".
sanjay
  • 1
  • 2
-1
votes
1 answer

Fatal error: Uncaught Error: Class 'Stomp' not found

I've downloaded the library available in: https://github.com/dejanb/stomp-php and then implemented the following code:
ines pelaez
  • 473
  • 1
  • 3
  • 10
-1
votes
2 answers

How to read message from Topic in ActiveMQ + PHP + Stomp?

I have to read messages from Topic in ActiveMQ + PHP(Stomp), for that I did below code, try { $stomp = new Stomp('tcp://localhost:61613'); } catch (StompException $e) { die('Connection failed: ' .…
Mahesh J
  • 1
  • 2
-1
votes
1 answer

Store message on memory instead of JVM- ActiveMQ

I'm working on ActiveMQ where the producer is in PHP and consumer is in JAVA. I'm using STOMP to connect PHP to AMQ. A total of 10,000 messages are sent. Consider a case where the JAVA subscriber is down, i.e. there are no consumer available to…
-1
votes
1 answer

Stomp android client

I need stomp client for android. I found and tried js client from here and it works perfect, so I need something like that on js: var url = "ws://localhost:8080//myserver//hello"; stompClient = Stomp.client(url); but I need similar for android,…
Dimon
  • 763
  • 3
  • 7
  • 22
-1
votes
1 answer

How to increase the limit size of body's message PHP Stomp

My question is in the title... It work's well when I send a message, but when I read this message with stomp->readFrame() , Stomp return me false. Thank you.
PapaSku
  • 112
  • 10
1 2 3
95
96