411 questions
0
votes
1
answer
42
views
solace,medusa js and strapi - fetch error
i tried with copilot but still error
Error: Failed to fetch data
at fetchStrapiClient (rsc://React/Server/file:///home/ihsanu/projects/full_stack/Medusa/solace-medusa-starter/.next/server/chunks/ssr/%...
0
votes
1
answer
34
views
While using @JmsListener, using "concurrency" getting active connection more than configured concurrency
While using @JmsListener I'm using the concurrency field to set max active threads for specified listener. However, I'm getting more than number of connections configured.
The listener is active with ...
0
votes
1
answer
90
views
How to publish once to a topic and route them to different queues based on the topic in the Solace broker?
I want to publish a sale of a product. I just wanted to publish once to a topic like sale/124 where each number represents an id of a store. Then each queue connected to that store only had to ...
0
votes
0
answers
128
views
How can I limit the number of created connection when I connect to Solace using qpid JMS library in an Apache Beam application?
My Apache Beam application sends messages to a Solace queue. To send the message, I use the Apache Qpid JMS library and Java Messaging Service (JMS). However, when I launch my application, more than ...
0
votes
1
answer
62
views
Publishing events with priority attribute set
How does one go about setting the priority to a given message while publishing to Solace via REST API? Is it an HTTP header? Metadata attribute?
0
votes
1
answer
159
views
Tibco ems to solace using apache camel
Is there a provision to send and receive message from a tibco queue to solace queue using apache camel?
If yes please help how? can we create a route directly .
i tried hybridedge but that is no ...
0
votes
1
answer
86
views
Converting Spring Cloud Stream message with JSON to POJO
Spring documentation highlights the ability for Spring Cloud Stream to automatically convert JSON to a POJO.
https://docs.spring.io/spring-cloud-stream/docs/current/reference/html/spring-cloud-stream....
0
votes
1
answer
392
views
Encountered sasl exception when connecting to Solace topic with AMQPLite dotnet library(AMQP 1.0)
I am suffering an error when I tried to send/publish the messages with AMQP in my C# code.
Below is the error:
{error(condition:amqp:not-implemented,description:sasl-mechanisms(sasl-server-mechanisms:[...
0
votes
1
answer
315
views
Solace message broker not unbinding disconnected flow
So here is the scenario. I have two processes trying to connect to a non-durable queue (implicitly exclusive). The first to connect successfully binds its flow to the queue, the second process fails,...
1
vote
2
answers
338
views
How to unack message on failure in solace
I want to unack message on failure and reprocess it after some time using solace-pubsubplus 1.6.0 python api.But I am not able to find such api in solace.
Can any one help me to solve this issue?
...
4
votes
1
answer
266
views
How can I check if Solace replay has completed and rejoined the live data stream
In my previous question, the codebase I am working on uses Solace's JCSMP API to trigger a replay, and uses the Spring JMS Listener annotated method to consume the replayed events.
I would like to ask,...
0
votes
2
answers
358
views
Solace batch publisher is very slow
Processor function consumes and publishes messages to solace in batch. Method signature is as below. It publishes each message in the batch as individual messages. TPS observed is around 150.
Function&...
1
vote
1
answer
829
views
Can we read or consume multiple messages with only one call from queue using solace python api
I have a queue with multiple topics subscribed to it. I published multiple messages to various topics and I want to read all those messages by making only one call. How to achieve this using solace ...
1
vote
1
answer
680
views
Solace keeps instantiating new TcpClientChannel
I wrote 25 csv files (each with about 1000+ entries) to solace. When I start replaying all the messages available in queue and publishing the messages, after a while, I get an error like this:
Client-...
0
votes
3
answers
224
views
Installation of olace-pubsubplus using pip
I want to use solace-pubsubplus python api.So I am trying to install solace-pubsubplus in ubuntu:20:04 but I am getting following error:
ERROR: Could not find a version that satisfies the requirement ...
1
vote
1
answer
283
views
JMS solace connection through proxy
I am connecting to a JMS solace queue with Spring Boot 2.7.7 with a com.solace.spring.boot:solace-spring-boot-starter.
The property setting up the host is:
solace:
jms:
host: smfs://host:port
...
0
votes
1
answer
180
views
Solace publisher error handler in Spring cloud stream
Any reason why it contains .errors at the end of the topic name in @ServiceActivator as given in the below code snippet. The documentation can be found in https://codelabs.solace.dev/codelabs/spring-...
2
votes
1
answer
612
views
Post processing after Spring cloud stream Function
Simple function like below can be consume and produce message.
@Bean
public Function<String, String> toUpperCase() {
return s -> s.toUpperCase();
}
Is there any option in spring cloud ...
1
vote
0
answers
443
views
Setting JNDI factory in solace queue consumer
I have been given a factory to connect to a Solace queue.
I am using this dependency, within a spring-boot 2.7.7 application :
<dependency>
<groupId>com.solace.spring.boot</groupId&...
1
vote
0
answers
503
views
Spring Boot & dynamic JMS queue creation with Solace
I am trying to create a list of listeners on a list of a queue using JMS and Spring Boot. In my test I am running a Solace Docker container with test container and I publish a message in one of the ...
0
votes
3
answers
923
views
Is the Solace message broker compatible with "regular" AMQP or JMS clients?
I'd like to use regular AMQP or JMS clients to connect to a Solace message broker but don't know enough about these protocols to know if they are compatible. From what I can tell Solace implements ...
0
votes
1
answer
455
views
solclient send request resulting success and fail at the same time
I'm starting a new project with Solace as the load balancer. As I follow the guideline on the official doc to build a service that can send requests to Solace, I encounter a weird issue where my ...
0
votes
1
answer
260
views
Solace via NodeJS Not Waiting for Success
I'm trying to get Solace (a queuing system) to create a session, then send a message on that session. Instead, it listens to my session creation, receives all the event handlers (I registered all of ...
0
votes
1
answer
1k
views
Is there any possibility to read topic from JMS message as a consumer
Summary:
I have created a small Spring Boot application which should consume messages from a Solace instance. In Solace the publisher has maintained a queue which is subscribed to different topics.
I, ...
0
votes
1
answer
164
views
ActiveMQ bridging messages to Solace
Is there any way I can bridge messages sent to a topic on ActiveMQ 5.14.3 to a topic on Solace 10.0.1.41?
I checked ActiveMQ documentation and it supports JMS as does Solace. However, I have no idea ...