Re: Camel consuming from apache mq using stomp over websockets

2013-10-14 Thread ako
need WS for this... > > http://activemq.apache.org/http-and-https-transports-reference.html > > > > On Sun, Oct 13, 2013 at 7:52 AM, ako <[hidden > email]<http://user/SendEmail.jtp?type=node&node=5741568&i=0>> > wrote: > > > Hi, > > > >

Re: Camel consuming from apache mq using stomp over websockets

2013-10-14 Thread ako
Can get it to work. 1st attempt: /* init broker */ ... BrokerService brokerSvc = new BrokerService(); brokerSvc.setBrokerName("brkr1"); brokerSvc.addConnector("ws://localhost:61613?trace=true"); ... /* route configuration */ from("stomp:top

Camel consuming from apache mq using stomp over websockets

2013-10-13 Thread ako
Hi, I want to create a camel route which consumes messages from an ActiveMQ topic. There's a firewall between the camel code and the ActiveMQ broker, the broker can only expose ports 80 and 443. Is it possible to create a camel route which receives messages from the broker using stomp over websock