Re: Any way to start Listener deployed in web

2010-06-08 Thread Dejan Bosanac
Hi, take a look at Failover transport http://activemq.apache.org/failover-transport-reference.html Cheers -- Dejan Bosanac - http://twitter.com/dejanb Open Source Integration - http://fusesource.com/ ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http://www.nighttale.net On Wed, J

Any way to start Listener deployed in web

2010-06-08 Thread Vyom
Hi, We have the listener in a web application. If Active MQ server is restarted in that case listener will shut down. Then do i need to restart the listener ? and how can i achieve this in Web application as i'm invoking the listener when server is started. Need suggestion -- View this message

Re: REST and http

2010-06-08 Thread Dejan Bosanac
Yeah, try something like curl -d "body=hello" http://localhost:8161/demo/message/myQ?type=queue Cheers -- Dejan Bosanac - http://twitter.com/dejanb Open Source Integration - http://fusesource.com/ ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http://www.nighttale.net On Wed, Jun

REST and http

2010-06-08 Thread arik103
Hi, There are many posts about this topic but I still can't get a clear answer to the following: I am trying to use REST to post a message to a queue. Message broker is installed with all default options. I did see an example http://localhost:8161/demo/send.html So the queston is:

Re: How to enable HTTPS when SSL is working ?

2010-06-08 Thread Dejan Bosanac
Glad that's sorted! Cheers -- Dejan Bosanac - http://twitter.com/dejanb Open Source Integration - http://fusesource.com/ ActiveMQ in Action - http://www.manning.com/snyder/ Blog - http://www.nighttale.net On Tue, Jun 8, 2010 at 4:05 PM, munger wrote: > > Ok it works ! :) > > The p

Re: How to enable HTTPS when SSL is working ?

2010-06-08 Thread munger
Ok it works ! :) The problem was very simple : i had to upgrade from activemq-optional-5.2.jar to activemq-optional-5.3.1.jar Shame on me ! hope it could help some of you guys! - --- www.maxizone.fr www.maxiblog.fr -- View this message in context: http://old.nabble.com/How

AMQ Persistence Store explanation

2010-06-08 Thread radha_mit
We are experimenting with AMQ persistent storage using activeMQ5.3.0 we have few doubts regarding the options with the AMQ persistence store maxFileLength is the max size of each data log. but we are not clear about indexBinSize, indexKeySize, indexPageSize. what is a bin in this context.

Re: How to enable HTTPS when SSL is working ?

2010-06-08 Thread munger
I feel like it seems an activemq bug, as the https transportConnector creates a plain text socket and not a ssl socket type. Where can i report this bug please ? thanks - --- www.maxizone.fr www.maxiblog.fr -- View this message in context: http://old.nabble.com/How-to-enable-HTTPS-when-SS

Re: ActiveMQ Embedded + Spring Security (3.x)

2010-06-08 Thread Dejan Bosanac
Hi, there is no current Acegi security framework integration for ActiveMQ (that I'm aware of). It shouldn't be too hard to implement one though. You can start by understanding ActiveMQ interceptors http://activemq.apache.org/interceptors.html and looking current implementations http://fisheye6

Re: Working C example?

2010-06-08 Thread Fred Moore
Hi bcmoney, did you eventually manage to have your C app running w/openwire? ...we are about to try something similar and are currently looking for hints & gotchas. Cheers, F. On Tue, Jun 1, 2010 at 1:11 PM, bcmoney wrote: > > We have a need to control a legacy application on an old Unix serv

Re: Queue configuration

2010-06-08 Thread Dejan Bosanac
Hi, Also we can't limit queue size, by number of messages (yet), but only by parameters like memory size. Take a look at the following link for more details http://activemq.apache.org/producer-flow-control.html Cheers -- Dejan Bosanac - http