how to configure Psersistence as a FIFO style?

2009-06-30 Thread rosen jiang
hi all, i encounter a problem, i want limit the size of Store Usage, so i use: SystemUsage sy = broker.getSystemUsage(); StoreUsage su = new StoreUsage(); su.setLimit(3054432); sy.setStoreUsage(su); YES, in my case, those codes coul

Question for Websphere AppServer 7 Integration.

2009-06-30 Thread lzr
Hi all, Does anybody know how to integrate Active MQ with IBM Websphere AppServer? Currently I'm integrating Active MQ 5.2 with IBM Websphere AppServer 7.0 so that the message-driven bean can be supported. I've configured JCA related things like Resource Adapter, J2C Connection Factory, J2C Acti

Axis 1.3 FTP download

2009-06-30 Thread LeftoverLinguine
Does anyone know where I can get a FTp download of axis 1.3? All of the links on the Apache website don't work. -- View this message in context: http://www.nabble.com/Axis-1.3-FTP-download-tp24276411p24276411.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: JDBC Master Slave Question

2009-06-30 Thread colonelx
I got to try out the scenario I described above (ie) physically remove the network cable from the Master. Basically the database did not realize that the client had disconnected abruptly, and there was still a lock on the database table, (which was now an invalid stale lock), and would never ge

EOFException

2009-06-30 Thread Павел Голубев
Hello. I'm getting Connection closed by foreign host, when there is more than 200 clients to activemq. I use activemq-5.2.0 as a stomp server. [r...@db bin]# java -version java version "1.6.0_0" IcedTea6 1.3.1 (6b12-Fedora-10) Runtime Environment (build 1.6.0_0-b12) OpenJDK 64-Bit Server VM (build

Re: Getting Durable Messages After Failover

2009-06-30 Thread aortiz
You need to replicate the messages between the two brokers. See http://activemq.apache.org/clustering.html and look for "Master Slave" or "Replicated Message Stores" -- Open Source Integration http://fusesource.com DCMH wrote: > > This is the first time I'm using ActiveMQ, the version I'm usin

WSDL2Java with multiple wsdl files

2009-06-30 Thread LeftoverLinguine
I have a wsdl file that references another wsdl which references back to the first wsdl. when I try to run WSDL2Java on the original one I get an undefined porttype error that points to the second wsdl file. Is there any way to either tell it to go to all referenced wsdls or just get it to run o

Re: Monitoring activemq connection

2009-06-30 Thread Gary Tully
you may want to configure an inactivityTimeout to ensure that a broker network is promptly recognised: see: http://activemq.apache.org/configuring-wire-formats.html 2009/6/30 Tim Sparg > > hi all > > We have an application that receives a lot more messages than it sends. It > sends an appropriat

Monitoring activemq connection

2009-06-30 Thread Tim Sparg
hi all We have an application that receives a lot more messages than it sends. It sends an appropriate response to every message that it receives, but never initiates a 'conversation' (for lack of a better term) Our problem is that we have very poor lines between the applications that are runnin

Monitoring activemq connection

2009-06-30 Thread Tim Sparg
hi all We have an application that receives a lot more messages than it sends. It sends an appropriate response to every message that it receives, but never initiates a 'conversation' (for lack of a better term) Our problem is that we have very poor lines between the applications that are runnin

Detecting stomp connected clients

2009-06-30 Thread hbd
Is there a way using JMX or whatever method, to detect connections to ActiveMQ via Stomp? Is there a way to identify these connections (ie: with something like a session id)? I am searching for a programmatic way to do this, and I just don't know where to really start looking. Thanks for any he