Questions tagged [solace-mq]

MQ-style messaging uses queues to make sure messages are always delivered, once and only once, in the same order they were sent.

MQ-style messaging uses queues to make sure messages are always delivered, once and only once, in the same order they were sent.

It’s used for things like order processing, risk management, inventory updates and money transfers.When a message is sent via a conventional software-based MQ messaging product , the software must send every single message to and through an external hard drive or solid state storage device as part of the message deliver process before it can be delivered to its destination.

75 questions
0
votes
1 answer

spring boot reconnect solace jms queue

I am using spring boot to connect to solace queue. I have used below tutorial to connect to the solace JMS queue. https://www.devglan.com/spring-boot/spring-jms-solace-example It is able to make connection to the solace queue. We faced one issue…
Coder Guru
  • 513
  • 3
  • 18
  • 37
0
votes
1 answer

How to slow down consumption rate in my Solace Consumer Application

I have a Spring Boot based Java application which reads messages from a Solace queue(let's say A) using javax.jms. Then my application applies a 10 seconds delay to each messages individually(using DelayedQueue). Once that 10 seconds have been…
Rohit
  • 188
  • 2
  • 18
0
votes
1 answer

Why are Solace messages hanging on the server on restart after Camel 3 upgrade?

On upgrading to Camel 3.3 we came accorss an issue while testing. So, if we restart our camel application while there are multiple messages in the queue for some reason a few messages are getting stuck in an "unacknowledged" state on the solace…
0
votes
1 answer

JMETER Error - Unable to load trust store: /var/tmp/jre1.8.0_281/lib/security/cacerts - Caused by java.io.FileNotFoundException

I am trying to run a test from my linux VM and have been facing below error while making SSL connection to Solace Broker. javax.naming.NamingException: Unable to load trust store: /var/tmp/jre1.8.0_281/lib/security/cacerts - Caused by…
DK6791
  • 5
  • 2
0
votes
1 answer

How to receive JSON message from a Solace JMS queue, the queue is already created

I am trying to receive JSON messages from a Solace JMS queue but I am not receiving any message. Below is my code @Service public class QueueConsumer { final String QUEUE_NAME = "test.Request.Q.V01"; // Latch used for synchronizing between…
Mike
  • 15
  • 7
0
votes
1 answer

Configure @JmsListener to limit rate of messages

I have implemented @JmsListener to listen the messages from Producer. APP <- Consumer <- Producer So, as shown above Consumer is consuming messages from producer and calling application(APP) to process those messages, in this case application is…
atish shimpi
  • 4,873
  • 2
  • 32
  • 50
0
votes
1 answer

solace - Failover connection

I am using solace topic to send my messages, and the session property in host has multiple comma separated IPs: (ip1:port1,ip2:port2). So in case of failover, how do I know which IP I have connected to?
0
votes
1 answer

solace message Id not viewed in solAdmin

I have published a message in the solace interface and got the messageId generated for that. From SolAdmin, When I inspect the queue, I can able to see one new messages received, but the message id which generated is not same. TextMessage txtMsg =…
Madhu
  • 59
  • 1
  • 7
0
votes
1 answer

Solace Message Broker Message Spool Active Disk Partion

What is meant by Active Disk Partition Usage: 100.00% when checking message-spool config? if this a concern how would I go about fixing it? I have zero message spooled into Solace, but getting the above status, I also had issues provisioning new…
TechNerd
  • 910
  • 1
  • 10
  • 19
0
votes
1 answer

How to automatically read/receive message from solace queue when application started?

I want to automatically read/receive messages from solace queue/topic if any message produced or published when my application is up. So is there any method in solace which can open connection automatically if there is any message available in…
JEETHESH KARKERA
  • 193
  • 1
  • 2
  • 11
0
votes
0 answers

Vertx amqp bridge message decoding exception

We are trying receive messages from Amqp broker hosted on solace vmr using vertx amqp bridge. We are receiving the following exception when there is special character in the message. Please let us know how to handle…
0
votes
1 answer

Solace C++ API for creating Multiple consumers listening to an Exclusive Queue

Where only 1 Consumer is Active Consumer and others are inactive consumers. If 1 consumer goes down how to make sure other consumer consumes? Code Help is appreciated in C++.
Ankit Saha
  • 19
  • 4
0
votes
1 answer

Solac Single thread C Application

Just now started using C APISolac. But I found that application will be multithread if I am using solac. I have C Application which is single thread and have multiple connections (eg, TCP,UDP, FILE, timerfd) I am polling using epoll. which have…
0
votes
1 answer

Spring DSL Solace Integration: How to set max message per poll

I am using spring, dsl, solace integration with spring boot. My application with one subscriber is able to poll approx 80 messages per second and 4 subscribers able to poll approx 125 messages per seconds. I want to process at least 500 messages per…
Ulhas N
  • 316
  • 4
  • 17
0
votes
1 answer

VertX client implementation for connecting Solace VMR Server

How can we implement VertX Client connectivity to Solace VMR Server? We are connecting Solace VMR using VertX Standalone program as of now. Is there any standard implementation or patterns we can use for connecting solace VMR using VertX Cient like…