HTTPS how to.

2008-06-24 Thread balderman
Hi I would like to configure HTTPS connector. I have not find any step by step instructions how to do it. On the Message Broker activemq.xml I have added: ... https://172.16.233.50:61619"/> ... And on the sender side I use the same URL. How should I configure Jetty to use HTTPS? Whe

Re: BlobMessage - How to make it work?

2008-06-04 Thread balderman
With an unchanged > activemq.xml and the uri > tcp://localhost:61616?jms.blobTransferPolicy.defaultUploadUrl=http://localhost:8161/fileserver/ > > all works fine. > I have changed the transport from http to tcp and the ports. The included > webserver (jetty) runs on an other port then

Re: BlobMessage - How to make it work?

2008-06-04 Thread balderman
at org.apache.activemq.command.ActiveMQBlobMessage.onSend(ActiveMQBlobMessage.java:163) balderman wrote: > > Hi > I do not think the file is uploaded.:-( > Where should I look for it? > Here: \webapps\fileserver ? > Is the original file name is kept? > > Thanks > &g

Re: BlobMessage - How to make it work?

2008-06-04 Thread balderman
; > > false > > > > > > If this not work. Please provide a unit test for the problem. > > regards > Marco Buss > > > balderman wrote: >> >> Hi >> I am using ActiveMQ 5.1. >>

Re: BlobMessage - How to make it work?

2008-06-04 Thread balderman
if (c == -1) { break; } bytesRead += c; } in.close(); TestCase.assertTrue(bytesRead == file.length()); // 3. Delete strategy.deleteFile(msg); } ... Avishay balderman wrote: > > Hi > I am using ActiveMQ 5.1. >

BlobMessage - How to make it work?

2008-06-04 Thread balderman
Hi I am using ActiveMQ 5.1. I want to to use BlobMessage in order to send large amounts of data. When the consumer get the message and the below code is executed: inputStream = blobMessage.getInputStream(); the inputStream is null. I have seen few posts regarding this issue but I

Problem using http transportConnector

2008-06-03 Thread balderman
I am using http tansport in order to cross firewall. I have message broker configured to support http. activemq.xml snippet: ... http://172.16.233.50:61618"/> ... and have 2 java