Re: Unable to connect topic queue with below configuration

2024-05-07 Thread Justin Bertram
> However, I can’t connect to this topic using MQTT in Angular clients. Can you elaborate on the problem you've having? Is it the same problem as before with the broker reporting a AMQ229017 error? If so, did you enable auto-create-queues for the appropriate address as I described previously? > C

Re: Unable to connect topic queue with below configuration

2024-05-06 Thread Pushparaj Chinnathambi
Yes, it is a JMS topic (NOTIFICATIONS). However, I can’t connect to this topic using MQTT in Angular clients. Could you please provide the configurations and methods to connect this NOTIFICATION topic in Angular using MQTT? Additionally, I need the topic settings to be compatible with both JMS and

Re: Unable to connect topic queue with below configuration

2024-05-06 Thread Justin Bertram
> Then, I send this information to the NOTIFICATION queue using JMS within the Spring Boot backend. Does it have to be a JMS queue? Can it be a JMS topic instead? If it can be a JMS topic then you should be able to use MQTT on your Angular clients. If not, then I recommend you use the STOMP protoc

Re: Unable to connect topic queue with below configuration

2024-05-06 Thread Pushparaj Chinnathambi
I totally agree with you. I am very new to Apache ActiveMQ, so I don’t fully understand the MQTT logic yet. Let me explain my scenario to you to clarify my requirements. The admin assigns tasks to users. In the backend, which is built with Spring Boot, this information is stored in a database. The

Re: Unable to connect topic queue with below configuration

2024-05-04 Thread Justin Bertram
Generally speaking, using JMS from Spring Boot for asynchronous communication makes sense. This is a common use-case. My question is why are you using a JMS queue in conjunction with MQTT. Why not a JMS topic together with MQTT or a JMS queue together with STOMP? The problem with using a JMS queu

Re: Unable to connect topic queue with below configuration

2024-05-04 Thread Pushparaj Chinnathambi
Please let me know if there are any other options to achieve this. On Sat, 4 May 2024 at 13:04, Pushparaj Chinnathambi wrote: > The reason I’m using JMS is to send messages from a Spring Boot > microservice. This is because, in my architecture, I’m utilizing > asynchronous communication between

Re: Unable to connect topic queue with below configuration

2024-05-04 Thread Pushparaj Chinnathambi
The reason I’m using JMS is to send messages from a Spring Boot microservice. This is because, in my architecture, I’m utilizing asynchronous communication between the microservices using apache activemq artemis queues. On Sat, 4 May, 2024, 10:50 am Justin Bertram, wrote: > FYI - I opened ARTEMI

Re: Unable to connect topic queue with below configuration

2024-05-03 Thread Justin Bertram
FYI - I opened ARTEMIS-4760 [1] for this issue. I'll send a PR with a fix soon. Justin [1] https://issues.apache.org/jira/browse/ARTEMIS-4760 On Fri, May 3, 2024 at 12:46 PM Justin Bertram wrote: > I believe this is a bug in the MQTT implementation. As noted in the > documentation [1]: > > >

Re: Unable to connect topic queue with below configuration

2024-05-03 Thread Justin Bertram
MQTT is fundamentally a pub/sub protocol so it doesn't really match with JMS queue semantics which are point-to-point. STOMP might be a better choice for you from Angular. Is there a specific reason you are mixing JMS queue and MQTT? Justin On Sat, May 4, 2024 at 12:11 AM Pushparaj Chinnathambi

Re: Unable to connect topic queue with below configuration

2024-05-03 Thread Pushparaj Chinnathambi
Dear Justin, I appreciate your attention to this issue. Now, I will explain my overall scenario. I'm using JMS to produce notifications for my end-users to remind them of certain actions. This JMS (in spring boot) sends messages to the ALERTS queue. I need to write a consumer to listen to this

Re: Unable to connect topic queue with below configuration

2024-05-03 Thread Justin Bertram
I believe this is a bug in the MQTT implementation. As noted in the documentation [1]: > Automatic queue creation is for queues that would not otherwise be created during normal operation. However, the MQTT implementation is deciding on whether to create the subscription queue based on the setti

Re: Unable to connect topic queue with below configuration

2024-04-30 Thread Pushparaj Chinnathambi
Hi, I’m trying to connect an ActiveMQ Artemis topic queue with the following configurations. Based on my settings, I don’t want to create dynamic queues when clients establish new connections. However, after applying this configuration, I’m unable to connect to my topic queue. Could you p

Re: Unable to connect topic queue with below configuration

2024-04-29 Thread Justin Bertram
>From what I can tell you aren't actually subscribed to the ActiveMQ users list so you will not receive any replies sent to the list and not directly to you (which is how replies are normally sent). Please subscribe [1] to the list in order to use it properly. Thanks! Also, please be aware that sc

Unable to connect topic queue with below configuration

2024-04-29 Thread Pushparaj Chinnathambi
Hi, I’m trying to connect an ActiveMQ Artemis topic queue with the following configurations. Based on my settings, I don’t want to create dynamic queues when clients establish new connections. However, after applying this configuration, I’m unable to connect to my topic queue. Could you p