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

2007-03-21 Thread Aleksi Kallio
We discuss this development over at dev@activemq.apache.org, so you might subscribe to it. Or you could monitor the JIRA issue: https://issues.apache.org/activemq/browse/AMQ-1075 thank you very much i'm very excited to see this functionality working.. and a final point: how can i know when

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 have the following example: >> >> in

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

2007-03-20 Thread James Strachan
On 3/20/07, cafe <[EMAIL PROTECTED]> wrote: 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); ... a

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

2007-03-19 Thread Aleksi Kallio
what happening here? how i can get the file?? It is because it has not yet been implemented - unless James has been extremely busy lately. :) The idea is that there are multiple pluggable ways of doing the actual file transfer. First one will be using an intermediate Jetty as a file server.

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