projectodd / stilts

Stomp Integration Layer and Transaction Server
http://stilts.projectodd.org/
Apache License 2.0
38 stars 30 forks source link

Java client to Rabbit Mq doesn't work #28

Open bogdartysh opened 8 years ago

bogdartysh commented 8 years ago

Steps to reproduce:

  1. install rabbit MQ as described in http://www.rabbitmq.com/web-stomp.html
  2. write a simple client based on https://github.com/projectodd/stilts with StompClient client = new StompClient(new URI("stomp+ws", null, "localhost", 15674, "/stomp", null, null););
  3. it failed to connect with

java.util.concurrent.TimeoutException: Connection timed out.

Looks like the reason is : rabbitMq has a not-empty path ("/stomp")

bogdartysh commented 8 years ago

could be connected with https://github.com/projectodd/stilts/pull/23/commits ?