Re: Messages stuck in schedule queue on ActiveMQ 5.16.3

2023-12-14 Thread Matt Pavlovich
Hi Doug- We would need more information to draw a conclusion as to what is causing the issue. Keep in mind scheduled messages do not leave the schedule store if they are registered on a cron job or have a really high repeat count. If you have a reproducible unit test and/or specific stack trace

Re: Messages stuck in schedule queue on ActiveMQ 5.16.3

2023-12-14 Thread Doug Whitfield
Is there any information we could provide to help find a conclusion? From: Doug Whitfield Date: Friday, 8 December 2023 at 14:27 To: users@activemq.apache.org Subject: Messages stuck in schedule queue on ActiveMQ 5.16.3 Hi Team. I found https://nam12.safelinks.protection.outlook.com/?url=https

Re: Need help in connecting to embedded broker from external client

2023-12-14 Thread Robbie Gemmell
Should have read all the mails first. Your python code below is almost certainly for an AMQP 0-x protocol client but note that Artemis supports clients using the AMQP 1.0 ISO standard protocol, so you won't be able to use that client with Artemis even once you set the dependencies+acceptor up corre

Re: Need help in connecting to embedded broker from external client

2023-12-14 Thread Robbie Gemmell
You specifically note trying STOMP and AMQP clients, however you make no mention of bringing in the STOMP or AMQP protocol dependencies to enable support of those protocols. Have you? The artemis-jms-server dependency only brings in support for the CORE protocol, used by artemis-jms-client for exa

Re: Need help in connecting to embedded broker from external client

2023-12-14 Thread Shurya kumar
I was doing telnet on 8990. --telnet 127.0.0.1 8990 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. Connection closed by foreign host. - I tried with making the ports as same in the broker url and acceptor. Port used was 5672 In both the scenarios, the serv

Re: Need help in connecting to embedded broker from external client

2023-12-14 Thread Domenico Francesco Bruscino
The code line "configuration.addAcceptorConfiguration("remote", "tcp:// 0.0.0.0:5672");" is adding an acceptor with the port 5672 while the client is trying to connect to the port 8990: spring.artemis.broker-url=tcp:// 127.0.0.1:8990. What Port are you testing with telnet? On Thu, 14 Dec 2023 at 0