-
Spring Cloud Stream solace error handling
In the codelabs example it suggests we shouldn't use global error handler as suggested by spring because binder will already be handling it. Is there a recommendation how you'd configure error handler channel for an application which uses a system property to determine the destination queue in order for the application to…
-
How to set replyTo header with OutboundMessageBuilder
Hi, we're trying to use Python and new Java APIs but are we struggling to set replyTo header on outgoing messages. In old Java API you can just call BytesMessage.setReplyTo. Is there a way to do it in Python and new Java APIs with OutboundMessageBuilder? Thanks
-
Timestamp when queue received message
Hi, does Solace durable queue store a timestamp when it received a message or can we configure it to do so? I tried InboundMessage.getTimeStamp and it always returns 0. I also tried InboundMessage.getSenderTimestamp and it's always null because I'm not filling it in the sender. According to an older question…
-
Apache Qpid Messaging C++ rejection
I'm trying to write a small program using the Apache Qpid Messaging C++ library to send AMQP1.0 messages to a Solace broker. When I send a message to the broker, it looks like I'm getting a reject: delivery 0 refused: amqp:not-allowed: SMF AD ack response error I get the same result if I use the examples provided with the…
-
Basic Authentication in JavaScript
Hi All Want to check how is basic authentication done in Web Socket protocol over JS. Is it safe to provide userid and password in JS. Won't it appear in the browser? We can see JS code on the chrome browser which includes the variable values using developer tools (breakpoint, inspect, watch variables). So even if we store…
-
Spring Cloud Stream, solace messages not going to error queue
Hi all, Here's an overview of my issue: I have two microservices, a producer and a consumer. Consumer is reading from MESSAGE.IN queue, getting an exception (as expected), then should place the message on error queue MESSAGE.IN.DLQ. Instead, consumer is consuming message, encountering exception, retrying 3 times, failing…
-
Publish message to a manually created queue
If i create the queue manually provide the owner permission and make it non-exclusive I also added topic subscription as application interacts using topic. This works fine In prod also am i supposed to do this, creating queue and adding topic subscription ? Because without doing it manually app is not able to provision the…
-
Error in launching Openstack instance.
Hi, I facing issue in launching solace broker instance. I using ubuntu Openstack. For openstack , I using qcow2 (compressed). I followed the instruction in https://docs.solace.com/Solace-SW-Broker-Set-Up/Starting-SW-Brokers-for-the-First-Time/Set-Up-in-OpenStack.htm. Have anyone faced the issue before? May I know how to…
-
Spring cloud bus
spring: cloud: bus: enabled : true When i enable it, It is creating 2 queues like springCloudBus & error/springCloudBus ( ErrorQueue). I can change the queue name using spring.cloud.bus.destination = "" but have not control over the error queue, infact i dont want error but no way to stop it. I cant disable the…