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

Need help in connecting to embedded broker from external client

2023-12-13 Thread Shurya kumar
Hi all, I am using an embedded Artemis broker in my Springboot application. I am able to use the broker from the java application. However, when i try to connect to broker from the python client using stomp/amqp, it is not getting connected. But the telnet command is able to the port. Is there s