Re: Batching messages for better compression?

2012-11-14 Thread Gary Tully
Auto batching does not exist at the moment but it would be a nice enhancement. ie: configure some sort of client side pause time or size limit so that the transport would wait for a batch and send all at once in one compressed block. It would require an update to openwire to indicate the start/end

Batching messages for better compression?

2012-11-14 Thread Ken1000
We've been using ActiveMq (as well as ServiceMix and Camel) for some time now, and they all work great handling XML data (we generally use non-persistent, non-transacted topics). One area that does cause us problems is the bandwidth when transmitting the data over a wire. Sometimes we're sending

Re: ActiveMQ client for C++

2012-11-14 Thread Timothy Bish
On Wed, 2012-11-14 at 07:39 -0800, Sergey Emantayev wrote: > Hello, > > Our Java server is being upgraded with ActiveMQ version 5.7 in the new > product release. The ActiveMQ-CPP client version 2.1.3 we are using seems > too old and I need an upgrade. Is there any 2.x version I can use with > Act

ActiveMQ client for C++

2012-11-14 Thread Sergey Emantayev
Hello, Our Java server is being upgraded with ActiveMQ version 5.7 in the new product release. The ActiveMQ-CPP client version 2.1.3 we are using seems too old and I need an upgrade. Is there any 2.x version I can use with ActiveMQ 5.7 or should I go on the latest 3.4.5? Thanks & Regards, Sergey

Re: Invlaid client id exception

2012-11-14 Thread Gary Tully
yes, you need to have separate for each or the urls in the static list from before, and provide each with a unique name On 14 November 2012 15:51, Mohit Anchlia wrote: > On Wed, Nov 14, 2012 at 5:39 AM, Gary Tully wrote: > >> that is really a bug with static: >> >> it replicates the network con

Re: Need help with Oracle SQL to ActiveMQ model

2012-11-14 Thread mtod
Thanks Torsten for the reply I'm looking for the syntax or process to use a PL/SQL (Internal Oracle) query that would route the message to ActiveMQ from Oracle. I have everything setup down to the client I can even send messages from the Oracle Gateway to the ActiveMQ client. What I'm missing is

Re: Invlaid client id exception

2012-11-14 Thread Mohit Anchlia
On Wed, Nov 14, 2012 at 5:39 AM, Gary Tully wrote: > that is really a bug with static: > > it replicates the network connector config for each url in the list, > so they all have the same name. For duplex this is a problem. > > To use multiple connectors with duplex to the same host, they need to

blocking on multiple topics

2012-11-14 Thread wheels
Hi, I am an JMS/ActiveMQ newbi so please be patient. I have the following situation, I have one or more consumers interested in a topic, so far so good, if I understand correctly I can do this with the publish/subscribe context and each client receives each published message. And as I understand

Re: blocking on multiple topics

2012-11-14 Thread Christian Posta
Not sure there is a way to do what you're asking out of the box... you could subscribe to both topic A and B using composite destinations, but that would give you messages for both A and B, but not block until both A and B had a message. you might have to do some client-side coding for that. http:

Re: Average ActiveMQ Enqueue Time is displayed as negative value in the jconsole

2012-11-14 Thread Christian Posta
Are you using a network of brokers? Any inconsistencies among the system times of your servers? On Mon, Nov 12, 2012 at 4:32 AM, Gangadhar Rao wrote: > Average ActiveMQ Enqueue Time is displayed as negative value in the > jconsole. > < > http://activemq.2283324.n4.nabble.com/file/n4659181/act

Re: Disabling CSRF protection

2012-11-14 Thread Dejan Bosanac
Thanks! Also any contribution is more than welcomed :) Regards -- Dejan Bosanac -- Red Hat, Inc. FuseSource is now part of Red Hat dbosa...@redhat.com Twitter: @dejanb Blog: http://sensatic.net ActiveMQ in Action: http://www.manning.com/snyder/ On Wed, Nov 14, 2012 at 2:13 P

Re: Invlaid client id exception

2012-11-14 Thread Gary Tully
that is really a bug with static: it replicates the network connector config for each url in the list, so they all have the same name. For duplex this is a problem. To use multiple connectors with duplex to the same host, they need to have unique names so you will need to use boiler plate xml con

Re: Problems deploying AMQ web console in Tomcat 7

2012-11-14 Thread Christian Posta
Please explain how you integrated with Tomcat a little more. On Tue, Nov 13, 2012 at 2:16 AM, EveX wrote: > Hello. > > We're using Tomcat 7 and have deployed ActiveMQ 5.6.0 stand alone inside > and > You deployed activemq "standalone" "inside" tomcat? Can you say more what you mean here? > i

Re: ActiveMQ Web Console - retry button

2012-11-14 Thread Tobb
Jira issue created: https://issues.apache.org/jira/browse/AMQ-4174 -- View this message in context: http://activemq.2283324.n4.nabble.com/ActiveMQ-Web-Console-retry-button-tp4659014p4659320.html Sent from the ActiveMQ - User mailing list archi

Re: Invlaid client id exception

2012-11-14 Thread Christian Posta
If you post your config we can tell more, but I suspect you're naming the connectors the same name on all machines in wrote: > It looks something like > "static(tcp://host1:61616,tcp://host2:61616,tcp://host3:61616)" On all the > hosts it's the same config. The problem either I can keep duplex or

Re: Disabling CSRF protection

2012-11-14 Thread Tobb
I've created a jira-task for the redirect issue: https://issues.apache.org/jira/browse/AMQ-4174 Also, when trying to tweak the console to get this working, I stumpled onto something that might be worse: the CSRF validation doesn't always work. Cr

Re: Disabling CSRF protection

2012-11-14 Thread Dejan Bosanac
There's no way to turn it off. I think we should make delete get you back to the overview of the queue, so there's no need for workaround. Can you raise a Jira for this? Also, you can install the web console as a temporary workaround. Regards -- Dejan Bosanac -- Red Hat, Inc.

Disabling CSRF protection

2012-11-14 Thread Tobb
Hi, We recently upgraded from AMQ 5.3.0 to AMQ 5.6.0. In version 5.6.0, CSRF protection has been added to the AMQ web console. As far as I understand, this is done through the server generating a secret key on each request to view a message/queue, which is in turn used to validate the requests. Th

Re: Need help with Oracle SQL to ActiveMQ model

2012-11-14 Thread Torsten Mielke
On Nov 14, 2012, at 1:25 AM, mtod wrote: > I’m working on a model that will send the results from an Oracle SQL query to > remote Web Service: > > Oracle DB 11gR2 -> Oracle Enterprise Gateway -> ActiveMQ -> Windows .Net > Client Service -> Remote Web Service Sorry which part of the path is not