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] Web console in version 4.2

2007-03-19 Thread notacrime
I had the same problem with the binary snapshot install. It looks like the webapps folder is missing, maybe the target is missing in the build that is generating the binary distros? I'm running on OS X. lprefontaine wrote: > > I downloaded the snapshot dated March 13th if I remember. > An no

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] NMS distribution missing?

2007-03-19 Thread mrettig
I'm interested in the same information. I'm evaluating NMS for a project, but I can't seem to find much information. Dave Syer wrote: > > Is the NMS part of AMQ still active? I can see the website at > http://activemq.apache.org/nms.html, but the links to the source repo, > build instructions

Re: [Spam: 5.0] constant 'DemandForwardingBridge' Network Connection established messages?

2007-03-19 Thread facboy
one other thing i noticed while debugging...the discovery agents for the network connectors don't seem to get their broker names set correctly (not sure if this is causing the problem, i suspect not). the discovery agents get instantiated when the bean definition is being parsed, at which point t

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: > AMQPersistence

Re: Receiving BlobMessage with activeMQ-4.2

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

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 James Strachan
Could you show the entire activemq console output please? On 3/20/07, cafe <[EMAIL PROTECTED]> wrote: 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:

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

constant 'DemandForwardingBridge' Network Connection established messages?

2007-03-19 Thread facboy
hi all, running testing locally and i've got two instances of jboss running, each with a uniquely named broker and with openwire on different ports. using multicast discovery. i have 2 MDBs deployed on each server, each listening to a different topic. i get these messages constantly in the log

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

2007-03-19 Thread lprefontaine
I downloaded the snapshot dated March 13th if I remember. An no 0.0.0.0:8161 does not work and no errors are reported in the log. Would I have a better success with an earlier snapshot ? Any recommendation ? I wanted to use 4.2 just to avoid having to rebuild the console stuff like in 4.1. Looke

Difference between ActiveMq and Mule from the user's pont of view?

2007-03-19 Thread ltamas
Hi! Is might be a really basic question, probably that's why I haven't found any answers. My question is basically the following. ActiveMQ offers different client types, transformation and routing, persistance, than what's the added benefit of using an ESB like Mule? how the two project relate to

Re: Order of message consumption across destinations

2007-03-19 Thread James Strachan
BTW we support optional total ordering to ensure that all consumers on a topic see the same order (which is slower as we have to synchronize the processing of the processors in the broker) On 3/19/07, James Strachan <[EMAIL PROTECTED]> wrote: ActiveMQ supports ordering of a single producers mess

Re: Order of message consumption across destinations

2007-03-19 Thread James Strachan
ActiveMQ supports ordering of a single producers messages; so the only way to get things to arrive out of order is to have multipe producers and get the messages to interleaved. i.e. so for producers M and N, one consumer might see M1, M2, N1, N2 the other might see M1, N1, M2, N2 etc On 3/19/0

Re: Web console in version 4.2

2007-03-19 Thread James Strachan
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-SNAPSHOT is not out yet - i wonder what date of 4.2 you were using? On 3/19/07, lprefontaine <[EMAIL PROTECTED]> wrote:

JMS Bridge with ssl + authentication issue

2007-03-19 Thread Feng Xue
Hi All, I have been trying to configure 2 brokers with JMS bridge, ssl and authentication. The goal is to set up a broker "localServer" with JMS bridge that connects to another broker "remoteServer1". The JMS bridge configuration works fine if local Broker has no ssl and authentication. But if

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

Maven2 performance test: how to use the consumer/producer property file

2007-03-19 Thread Yong Liu
Hi, I am trying to run the performance test using Maven2 and ActiveMQ4.1.1. I have followed the instructions on the the web site: http://activemq.apache.org/activemq-performance-module-users-manual.html and successfully run the default testing ( I believe it is 1 producer, 1 consumer, 1 topic b

Network of Brokers with no "networkConnectors"

2007-03-19 Thread Nilantha
Hello ActiveMQ users, I would like to know what are the drawbacks if I have multiple brokers running with completely disabled broker to broker communication with an empty "" element in activemq.xml I have this setup working in a prototype for two brokers and clients fail over to send messages lo

Re: [Spam: 5.0] Which component creates the 'target\activemq-test.log' file?

2007-03-19 Thread JL
For the record... I updated to 4.2 snapshot for other reasons (simpleAuthenticationPlugin) and the problem I originally reported below has gone away. JL wrote: > > I'm using 4.1 with the only modification to the activemq.xml file being to > activate mysql persistence. I see no reference to t