STOMP Client for Quarkus Websockets - quarkus

Has anyone found a STOMP client implementation that works with Quarkus Native via web sockets?
I am using Quarkus 2.7.5.Final including io.quarkus:quarkus-websockets-client

Related

How to test stomp application using postman?

I am making a chat application backend using spring WebSockets.
The protocol for communication is STOMP and I am using rabbitmq as a message broker.
I want to test my application using postman but I can't find any helpful tutorial/video.

Corda: Alternative to Spring application for performing the RPC connection to the Corda node

We are working on a POC that uses Corda 4.0, Spring 4.3.11 and Springboot 2.0.2.
AngularJs is used for Front-end and PostgreSQL for database.
Is there an alternative to Spring application that would facilitate the RPC connection to the Corda node?
Yes, you can use Braid Server with Open API generator to generate client API's in more than 40 languages; read about it here.
There's a Braid server example (with a React font-end) here.

Does vert.x support websocket using stomp over sockjs like Spring4?

Does vert.x support websocket using stomp over sockjs like Spring4?
Spring4 websocket support stomp over sockjs, but I don't found in Vert.x document about stomp over sockjs, only stomp with websocket:
https://vertx.io/docs/vertx-stomp/java/#_using_the_stomp_server_with_web_sockets.
As of Vert.x 3.5.1 it is not supported. Can you please file a feature request in the vertx-stomp project? Thanks

how can i integrate Spring Boot WebSocket with Kafka

I want to integrate kafka with Spring Boot WebSocket project, the official documentation of it uses STOMP protocol by default which don't support kafka like a brocker messages. So my question is, how can I integrate kafka with Spring Boot WebSocket ? and thank you so much.

Websocket support in a web application

I want to develop a web application using websocket.
I have found two solutions for this task:
Using Spring websocket (included in Spring 4) - I am already familiarized with Spring
Using Atmosphere framework - I've read the docs, it seems to be a mature framework.
I want from the websocket framework to provide a fallback-support in case when the
browser isn't HTML5 compliant, also, I need a client-library for android.
I see that Atmosphere provides support for Socket.IO library, which I want to use on
browser client side. I see that Spring websocket provides only SockJS support over STOMP.
Can I use the same library, Socket.IO, in Spring websocket?
Do you recommend me to use Atmosphere + Spring (for building the RESTFul API) in the same
project?
Thank you
I would suggest going for the WebSocket support in Spring. If you are already using Spring, this will give you a similar programming model plus all these features:
Fallback options with SockJS
Subprotocol support with STOMP
Integration with full blown STOMP broker (like RabbitMQ)
HttpSession and WebSocket Session sync (using Spring Session)
WebSocket security (in the upcoming Spring Security 4)
SockJS Java client (for application to application communication and performance testing, haven't tried it on Android yet but might work)
Runtime Monitoring
Active community with fast response times to requests
The WebSocket support has been around since Spring 4, tested and refined for over a year now. A production ready solution which I'm using in my projects.

Resources