Re: advisory messages username logging

2015-06-16 Thread ALi
it seems that the headers are set with no message .. but in the headers i dont see the username (guest) only headers of the message On Wed, Jun 17, 2015 at 8:37 AM, ALi wrote: > this is what i see with this two routes > > > uri="activemq:topic:ActiveMQ.Advisory.Consumer.Queue.TEST.Q?mapJms

Re: advisory messages username logging

2015-06-16 Thread ALi
this is what i see with this two routes \r\n${date:now:MMdd-hh-mm-ss} ${in.body} \r\n \r\n${date:now:MMdd-hh-mm-ss} ${in.body} \r\n 20150617-08-31-04 20150617-08-31-37 20150617-08-31-37 ActiveMQMessage {commandId = 0, responseRe

Re: unable to reconnect after exception "Channel was inactive for too long"

2015-06-16 Thread Tim Bain
Do you ever get the channel inactivity exception in the Java client? If so, does it reconnect gracefully? Those error messages make it sound like the TCP connection is being reused instead of starting a fresh one. Is there any chance you're reusing the same ephemeral port, where the server would

Re: Couchbase data store support for active mq

2015-06-16 Thread Tim Bain
I've never used Couchbase, so this is probably an ignorant question, but is Couchbase JDBC not compatible with ActiveMQ's existing JDBC support? http://www.simba.com/couchbase/couchbase-odbc-jdbc-connectivity-solutions-developer-previews-now-available makes it sound like that integration is compati

unable to reconnect after exception "Channel was inactive for too long"

2015-06-16 Thread jeffrey
In my application, I am running a 5.9 broker locally and the only transport connector is 2-way SSL. One endpoint is java, using ActiveMq 5.9, the other is C++ using ActiveMQCPP 3.8.2 After some unspecified time, the CPP application gets an exception that "Channel was inactive for too long." I att

Re: Errors trying to build ActiveMQ-5.5.1 from source

2015-06-16 Thread bbuzzard
I switched to JDK6 and almost everything compiled. Still having some problem trying to compile activemq-core. It looks like the "target/generated-sources" code has a common error. The package is "org.apache.activemq.store.kahadb.data" by the fix message says it needs to be changed to "proto.org.

Couchbase data store support for active mq

2015-06-16 Thread jasonhoi
Hi folks, I just run over the jdbc support page, and wonder if active mq will plan to support the couchbase db connection natively, either via couchbase jdbc or the couchbase data protocol? thanks i. advance. -- View this message in context: http://activemq.2283324.n4.nabble.com/Couchbase-dat

Re: advisory messages username logging

2015-06-16 Thread Christopher Shannon
No problem, let me know if you have any more questions. Chris On Tue, Jun 16, 2015 at 9:13 AM, ALi wrote: > Thank you very nice explanation I will try in this manner >

Re: advisory messages username logging

2015-06-16 Thread ALi
Thank you very nice explanation I will try in this manner

Re: advisory messages username logging

2015-06-16 Thread Christopher Shannon
camel to print message) > > > > uri="activemq:topic:ActiveMQ.Advisory.Consumer.Queue.TEST.Q?mapJmsMessage=false" > /> > > > \r\n${date:now:MMdd-hh-mm-ss} ${in.header.user} > ${in.body} ${in.headers} \r\n > > > uri="file://c:/folder/?fileExist=Append&fileName

Re: advisory messages username logging

2015-06-16 Thread ALi
i dont know where i am connecting with stomp and ws . this is what this log shows: (using camel to print message) \r\n${date:now:MMdd-hh-mm-ss} ${in.header.user} ${in.body} ${in.headers} \r\n 20150616-01-16-27 ActiveMQMessage {commandId = 0

Re: advisory messages username logging

2015-06-16 Thread Christopher Shannon
Advisory messages delivered to ActiveMQ.Advisory.Connection will contain a ConnectionInfo object as part of the data structure field of the message. That object will contain the user name used for the new connection. Passwords will always be cleared, however. On Tue, Jun 16, 2015 at 5:41 AM, ALi

advisory messages username logging

2015-06-16 Thread ALi
hello i want to log every user that connects to an specific queue, i think that it is dont by reading advisory messages or by doing a plugin that intercepts calls to the broker. (BrokerFilter) the first try is reading advisory .. but the username is not setted receiving nullany help