Re: [Spam: 5.0] Receiving BlobMessage with activeMQ-4.2

2007-03-20 Thread cafe
thank you very much i'm very excited to see this functionality working.. and a final point: how can i know when this functionality is ready... James.Strachan wrote: > > On 3/20/07, cafe <[EMAIL PROTECTED]> wrote: >> >> ok, but i can't get this to work, I ha

Re: [Spam: 5.0] Receiving BlobMessage with activeMQ-4.2

2007-03-19 Thread cafe
ok, but i can't get this to work, I have the following example: in the server side: ... Destination destination = session.createQueue("TransferQueue"); BlobMessage bmsg = session.createBlobMessage(new File("D:/Film.avi")); producer.send(bmsg); ... and in the client side: ... MessageConsumer co

Re: [Spam: 5.0] Web console in version 4.2

2007-03-19 Thread cafe
sorry, this is the ouput of the console cafe wrote: > > ACTIVEMQ_HOME: C:\Work\apache-activemq-4.2\bin\.. > ACTIVEMQ_BASE: C:\Work\apache-activemq-4.2\bin\.. > Loading message broker from: xbean:activemq.xml > INFO BrokerService - Using Persistence Adapter: &

Receiving BlobMessage with activeMQ-4.2

2007-03-19 Thread cafe
I have reading the following link http://activemq.apache.org/blob-messages.html about how to send a BlobMessage, but there is nothing about how to receive this BlobMessage.. Is this in the same way I receive InputStream or if not Can anyone help me with some example? regards -- View this mes

Re: [Spam: 5.0] Web console in version 4.2

2007-03-19 Thread cafe
ACTIVEMQ_HOME: C:\Work\apache-activemq-4.2\bin\.. ACTIVEMQ_BASE: C:\Work\apache-activemq-4.2\bin\.. Loading message broker from: xbean:activemq.xml INFO BrokerService - Using Persistence Adapter: AMQPersistence Adapter(C:\Work\apache-activemq-4.2\bin\..\data\localhost) INFO Brok

Re: [Spam: 5.0] Web console in version 4.2

2007-03-19 Thread cafe
I get apache-activemq-4.2-20070313.102814-31 build and i can't get this to work James.Strachan wrote: > > Hmm, it works fine for me. Whicih OS/platform are you using? > > I wonder does http://0.0.0.0:8161/admin work by any chance? > > I guess there's no errors in the log right? > > BTW 4.2-S

Re: [Spam: 5.0] Web console in version 4.2

2007-03-19 Thread cafe
I have the same problem... lprefontaine wrote: > > I installed version 4.2 in which the web console is suppose to be packaged > in the binaries but I get http error 404 > when I try to access it at http://localhost:8161/admin. > > The following appears in stdout: > > INFO log

Re: I can’t receive more than 2 messages simul taneously with DefaultMessageListenerContainer

2007-02-16 Thread cafe
to add more, the server stop without any exception... -- View this message in context: http://www.nabble.com/I-can%E2%80%99t-receive-more-than-2-messages-simultaneously-with-DefaultMessageListenerContainer-tf3241539s2354.html#a9016908 Sent from the ActiveMQ - User mailing list archive at Nabble.

Re: I can’t receive more than 2 messages simul taneously with DefaultMessageListenerContainer

2007-02-16 Thread cafe
sorry for the bare explanation. I have a listener (in the server side) who receive request for send files (Streams): public class RequestUpdateListener implements SessionAwareMessageListener { private JmsTemplate jmsTemplate; private String fileUpdateLocation;

I can’t receive more than 2 messages simulta neously with DefaultMessageListenerContainer

2007-02-16 Thread cafe
I have an app where I’m using spring 2.0 and activeMQ4.1.0. In this app I need to process many message and send files to another queue, all this simultaneously, so I have configured a DefaultMessageListenerContainer in this way:

Re: Problems reconnecting when the broker break down

2007-02-06 Thread cafe
so, you recommend to use for JmsTemplate a PooledConnectionFactory and for DefaultMessageListenerContainer a simple ActiveMQConnectionFactory? do you agreed? -- View this message in context: http://www.nabble.com/Problems-reconnecting-when-the-broker-break-down-tf3182279.html#a8832235 Sent fro

Re: Problems reconnecting when the broker break down

2007-02-06 Thread cafe
do any pooling." I'm using a JmsTemplate too, but in the DefaultMessageListenerContainer's connectionFactory property I can use the PooledConnectionFactory or not? James.Strachan wrote: > > On 2/6/07, cafe <[EMAIL PROTECTED]> wrote: >> >> In my app I'

Problems reconnecting when the broker break down

2007-02-06 Thread cafe
In my app I’m using activeMQ4.1.0 and spring 2.0. and I have configured a DefaultMessageListenerContainer and a PooledConnectionFactory. And doing some test if I restart my broker the app is not capable of reconnect and I get the following exception: org.springframework.jms.listener.DefaultMes

Transferring file in transactions?

2007-02-03 Thread cafe
I have an app where I need to transfer files (over 100 Mb) between a server and client so I’m using the activeMQ’s Streams. On the other hand the files can’t be persisted because there are many clients (over 100) and the sizes of the files are too big so the DeliveryMode property is set to NON_PER