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
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
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
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.
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