Re: Portfolio demo application

2008-05-14 Thread Eric Rodriguez
I have extended MessageListenerServlet and WebClient to fit the needs of my project and so far Comet has been working nicely. We are not in production stage but approaching a third pre-release and has been tested by many users without complains. Cheers, Eric petrkorda wrote: I am encounterin

Re: MessageServlet in Glassfish

2008-05-13 Thread Eric Rodriguez
I don't know how OpenMQ works, I can tell you however that you can point it to an external broker such as tcp://host.port and many more protocols: http://activemq.apache.org/uri-protocols.html Hope this helps, Eric lancedv wrote: Hi to all, I was wondering if i could use the MessageServlet

Re: Does MessageServlet do any http authentication?

2008-05-06 Thread Eric Rodriguez
Fixed! https://issues.apache.org/activemq/secure/ManageAttachments.jspa?id=26295 Regards, Brad Clements wrote: Eric Rodriguez wrote: I had to extend MessageListenerServlet and WebClient to add authentication. How you implement it is up to you but this might be a good starting point: https

Re: Does MessageServlet do any http authentication?

2008-05-06 Thread Eric Rodriguez
My bad, let me fix it. Brad Clements wrote: Eric Rodriguez wrote: I had to extend MessageListenerServlet and WebClient to add authentication. How you implement it is up to you but this might be a good starting point: https://issues.apache.org/activemq/browse/AMQ-1547 Hi, I looked at that

Re: Does MessageServlet do any http authentication?

2008-05-06 Thread Eric Rodriguez
I had to extend MessageListenerServlet and WebClient to add authentication. How you implement it is up to you but this might be a good starting point: https://issues.apache.org/activemq/browse/AMQ-1547 Brad Clements wrote: Hi, I have looked at MessageServlet, MesageServletSupport and WebCli

Re: Should I use 5.2 snapshot or 5.1? amq.js is missing from 5.2 chat demo

2008-05-06 Thread Eric Rodriguez
I haven't seen 5.2, but amq.js has always been inside the activemq-web.jar and it's served from there. Cheers, Brad Clements wrote: Hi, I am trying to a) find detailed documentation on setup and configuration of the REST interface (best I can find is copying demo web.xml) b) find out wha

Re: Where are the command line tools?

2008-03-24 Thread Eric Rodriguez
Now you access the same functionalities from activemq-admin.bat for instance: c:\apache-activemq-5.0.0>activemq-admin query -h Eric Andrew M wrote: I don't find those command line tools in that archive. I'm looking for shutdown.bat, query.bat, etc. E:\erase\apache-activemq-5.0.0>dir *.bat /s

Re: Consumers not always being released

2008-03-14 Thread Eric Rodriguez
will a fix be ready? Thanks, Eric Joe Fernandez wrote: -Original Message- From: Rob Davies [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2008 4:21 PM To: users@activemq.apache.org Subject: Re: Consumers not always being released On 11 Mar 2008, at 19:55, Eric Rodriguez wrote: Mike M

Re: Consumers not always being released

2008-03-13 Thread Eric Rodriguez
sed On 11 Mar 2008, at 19:55, Eric Rodriguez wrote: Mike Miljour wrote: After further investigation, it turns out there was a configuration issue, which could have been avoided with clearer documentation. (it might have helped if i had included my configuration as well!) We had set the value

Re: Problem with Master/Slave, how to configure it? (I'm using Servicemix)

2008-03-12 Thread Eric Rodriguez
It seems your master and slave are out of synch. Take a look at here: http://activemq.apache.org/masterslave.html#MasterSlave-RecoveryingaMasterSlavetopology Jorge S. wrote: On the other hand, I'm trying 5.0.0 release and I get this error in Slave node, so communication between master and slav

Re: Consumers not always being released

2008-03-12 Thread Eric Rodriguez
To: users@activemq.apache.org Subject: Re: Consumers not always being released On 11 Mar 2008, at 19:55, Eric Rodriguez wrote: Mike Miljour wrote: After further investigation, it turns out there was a configuration issue, which could have been avoided with clearer documentation. (it might have

Re: Consumers not always being released

2008-03-11 Thread Eric Rodriguez
Mike Miljour wrote: After further investigation, it turns out there was a configuration issue, which could have been avoided with clearer documentation. (it might have helped if i had included my configuration as well!) We had set the value for broker name differently in our two running instan

Re: "WARNING: Transport failed" ... org.apache.activemq.transport.failover.FailoverTransport handleTransportFailure

2008-03-07 Thread Eric Rodriguez
Is this timeout the same as the: soTimeout (long) sets the SO_TIMEOUT value (in milliseconds) on the socket configured on the TCP Transport and described here: http://activemq.apache.org/activemq-3-transport-configurations.html I'm a bit confused about the different tiemouts that can be specifi

Re: JMS Selector/ Javascript

2008-03-07 Thread Eric Rodriguez
Hi I was talking about this patch: https://issues.apache.org/activemq/browse/AMQ-1547 but it seems you got my second email first. Basically it adds a parameter to the MessageListenerServlet, this passes the parameter to the WebClient which looks for the parameter value on the request headers

Re: JMS Selector/ Javascript

2008-03-06 Thread Eric Rodriguez
https://issues.apache.org/activemq/browse/AMQ-1547 forgot the link.. skydriver_sv wrote: Hi, I wonder if the library amq.js to javascript, if there is a way to use JMS selector? Thanks.

Re: JMS Selector/ Javascript

2008-03-06 Thread Eric Rodriguez
It doesn't but I submitted a patch wich may help you. Take a look at the comments on the code since this is easily implemented. Regards, Eric skydriver_sv wrote: Hi, I wonder if the library amq.js to javascript, if there is a way to use JMS selector? Thanks.

Re: AjaxServlet questions

2008-03-03 Thread Eric Rodriguez
Eric Rodriguez wrote: function listenersInit() { amq.addListener("anyID","topic://my_topic",myHandler.rcvDiff); } To make it clear: "amq.addListener("anyID","topic://my_topic",myHandler.rcvDiff);" does not need to be inside listenersInit(), that's just how I do it.

Re: AjaxServlet questions

2008-03-03 Thread Eric Rodriguez
1. On the web.xml of your AjaxServlet make sure you have: org.apache.activemq.brokerURL tcp://url.to.amqBroker:61616 The URL of the Message Broker to connect to Now your servlet knows where the broker is. 2. On your HTML/JSP/Javascript subscribe

Re: JMS Selectors/ Queue Browsing - Ajax

2008-01-14 Thread Eric Rodriguez
Added the patch, sorry it took so long. I am having problems with my environment, so the patch I created does not contain the appropiate revision numbers, but a custom one from my own svn, hope its still useful. I'm using eclipse with M2Clipse and am having trouble compiling activemq/camel from