Re: No response being received - consumer.Receive always timeout

2011-07-07 Thread davidi
I have found the problem. Simple typo... The line "session.CreateConsumer(destination))" was assigning the wrong destination, it should have been the temporary queue which was created earlier. -- View this message in context: http://activemq.2283324.n4.nabble.com/No-response-being-received-con

Re: No response being received - consumer.Receive always timeout

2011-07-07 Thread davidi
Thanks for the quick reply. You are correct, I didn't have a connection.Start(). I assumed it starts automatically because the Producer.Send() worked ?? Anyway, I have added "connection.Start();" immediately after the creation of "connection". It didn't work, same problem. The consumer.Receive jus

Re: No response being received - consumer.Receive always timeout

2011-07-07 Thread Timothy Bish
I might have missed it in the code but I don't see a call to connection.Start(). If you don't start the connection the consumer won't receive anything. Regards Tim. On Thu, 2011-07-07 at 19:41 -0700, davidi wrote: > Hi, > > I am new to ActiveMQ and I am trying to write a basic publisher and > l

No response being received - consumer.Receive always timeout

2011-07-07 Thread davidi
Hi, I am new to ActiveMQ and I am trying to write a basic publisher and listener. I have used several code formats and can always send the initial message to the listener without any issue but no matter what I try, I can not get a response. The response from the listener does not fail, but it is

Re: Apache ActiveMQ Security and Government Systems

2011-07-07 Thread darren
Why not ask DISA if its been accredited already? They will have a list... > Hi all, > > I've been using activeMQ in a few projects now, and it works great! But > now > I am looking at a project where the product might need to be integrated > into > government systems. I've been looking into wheth

Re: Apache ActiveMQ Security and Government Systems

2011-07-07 Thread Johan Edstrom
http://rajdavies.blogspot.com/2011/06/activemq-is-ready-for-prime-time.html On Jul 7, 2011, at 2:13 PM, TrainTime wrote: > Hi all, > > I've been using activeMQ in a few projects now, and it works great! But now > I am looking at a project where the product might need to be integrated into > gov

Apache ActiveMQ Security and Government Systems

2011-07-07 Thread TrainTime
Hi all, I've been using activeMQ in a few projects now, and it works great! But now I am looking at a project where the product might need to be integrated into government systems. I've been looking into whether or not ActiveMQ meets the Database Security Technical Implementation Guide (STIG) fro

Re: [ANNOUNCE] Apollo 1.0 Beta 4 Released

2011-07-07 Thread Hiram Chirino
>From the point of view of the clients, yes. We may need to develop a migration script of procedure to migrate ActiveMQ 5 deployments. Regards, Hiram FuseSource Web: http://fusesource.com/ On Thu, Jul 7, 2011 at 1:54 PM, Tommy Chheng wrote: > To chime in as well, I'm currently using openwir

Re: [ANNOUNCE] Apollo 1.0 Beta 4 Released

2011-07-07 Thread Tommy Chheng
To chime in as well, I'm currently using openwire with activemq via apache camel. Once openwire is added to apollo, will upgrading be essentially just switching the server uri? On Thu, Jul 7, 2011 at 9:27 AM, Hiram Chirino wrote: > Yes, > > We intend to add transports back in to get to feature

RA fails to connect to endpoint on Glassfish 3.1.

2011-07-07 Thread guerra
hi, Having configured two RAs deployed on Glassfish 3.1 to point out to two endpoints, I got this weird exception trying to connect to one of the endpoints. Some times, the RA apparently doesn't recognize the connection string. If I remove the failover thing of the URL, it happen the same problem,

Re: ${activemq.base} directory when running in Karaf

2011-07-07 Thread Jean-Baptiste Onofré
Hi James, You can try to add it in etc/config.properties file: activemq.base=${karaf.base} But, AFAIR, ActiveMQ is looking for a System property. If it doesn't work in the config.properties file, you can add it -Dactivemq.base= in the java line of the bin/karaf startup script. Regards JB

Re: [ANNOUNCE] Apollo 1.0 Beta 4 Released

2011-07-07 Thread Hiram Chirino
Yes, We intend to add transports back in to get to feature parity /w ActiveMQ 5 where it makes sense. Which transport is it that interests you? Regards, Hiram FuseSource Web: http://fusesource.com/ On Thu, Jul 7, 2011 at 12:04 PM, James Green wrote: > Do you intend on adding additional tr

Re: XMPP authentication

2011-07-07 Thread James Green
Yes, it is smack we were initially using. The connection itself appears to come up. The authentication however does fail and merely following the "basic auth plugin" documentation on the AMQ site did not work at all for us, other than to disable all our anonymous stomp clients despite anonymous ac

Re: [ANNOUNCE] Apollo 1.0 Beta 4 Released

2011-07-07 Thread James Green
Do you intend on adding additional transports to Apollo then? Or will it "inherit" ActiveMQ's additional transports when folded back in? On 7 July 2011 16:40, Hiram Chirino wrote: > No. This is just a new messaging engine with a different > architecture. It has a reduced set of features when c

Re: XMPP authentication

2011-07-07 Thread Stan Lewis
Currently the XMPP transport works best with the Smack library as a client, that's certainly the most tested: https://svn.apache.org/repos/asf/activemq/trunk/activemq-xmpp/src/test/java/org/apache/activemq/transport/xmpp/XmppTest.java With other clients your mileage may vary, it's likely in your

Re: [ANNOUNCE] Apollo 1.0 Beta 4 Released

2011-07-07 Thread Hiram Chirino
No. This is just a new messaging engine with a different architecture. It has a reduced set of features when compared to ActiveMQ 5.x. The hopes are that it will eventually contain enough features to become the engine that drives the next major revision of ActiveMQ. This is a little similar to w

Re: [ANNOUNCE] Apollo 1.0 Beta 4 Released

2011-07-07 Thread James Green
Is ActiveMQ to be discontinued in favour of this in the future? On 7 July 2011 16:26, Hiram Chirino wrote: > The Apache ActiveMQ Project is pleased to announce the availability of > Apollo 1.0 Beta 4. ActiveMQ Apollo is a faster, more reliable, easier > to maintain messaging broker built from th

[ANNOUNCE] Apollo 1.0 Beta 4 Released

2011-07-07 Thread Hiram Chirino
The Apache ActiveMQ Project is pleased to announce the availability of Apollo 1.0 Beta 4. ActiveMQ Apollo is a faster, more reliable, easier to maintain messaging broker built from the foundations of the original ActiveMQ. It is focused on being the fastest most reliable STOMP 1.1 and 1.0 server av

IMessageProducer and IMessageConsumer lifecycle best practices

2011-07-07 Thread Ishitori
Hello everyone. I use Apache.NMS and its two main interfaces: IMessageProducer and IMessageConsumer. I have created a wrapper on a IMessageProducer and IMessageConsumer, so my system wouldn't know that ActiveMQ is used underneath. I can implement wrappers using following scenario: 1. I can creat

${activemq.base} directory when running in Karaf

2011-07-07 Thread James Mittler
I loaded ActiveMQ 5.5 into Karaf 2.2.2 via mvn:org.apache.activemq/activemq-karaf/5.5.0/xml/features When I start the activemq-web-console, I'm seeing a ${activemq.base} directory in my Karaf installation. Is there somewhere I should be setting the value of ${activemq.base}? Thanks!!

Re: using activemq-cpp-library

2011-07-07 Thread mahens
Downloaded activemq-cpp-library-3.4.0. Now i want to use SimpleProducer.cpp in activemq-cpp-library-3.4.0\src\examples\producers. please explain me how to run SimpleProducer.cpp ? -- View this message in context: http://activemq.2283324.n4.nabble.com/using-activemq-cpp-library-tp3651187p3651325.

Re: using activemq-cpp-library

2011-07-07 Thread Ivan Pechorin
2011/7/7 mahens : > i want to build activemq-cpp-library-3.4.0, using microsoft visual studio > 2010 i am trying to build activemq-cpp-library-3.4.0. > > Actually i want to test connection to activemq broker using c++ program. > Please suggest. What's you question?

Re: using activemq-cpp-library

2011-07-07 Thread Oscar Pernas
Hi, you have a visual studio project inside the zip file. The problem is that in 2010 doesnt work, or what? 2011/7/7 mahens > i want to build activemq-cpp-library-3.4.0, using microsoft visual studio > 2010 i am trying to build activemq-cpp-library-3.4.0. > > Actually i want to test connection t

XMPP authentication

2011-07-07 Thread James Green
Trying to get XMPP to work. Can connect but am told "Invalid username or password". I don't currently have any authentication set up except the system / manager set that AMQ ships with for JMX purposes. Stomp connections require no username/password. Right now all we want to do is see it "working

using activemq-cpp-library

2011-07-07 Thread mahens
i want to build activemq-cpp-library-3.4.0, using microsoft visual studio 2010 i am trying to build activemq-cpp-library-3.4.0. Actually i want to test connection to activemq broker using c++ program. Please suggest. -- View this message in context: http://activemq.2283324.n4.nabble.com/using-a

Re: Simplest possible broker-to-broker authentication

2011-07-07 Thread John Fletcher
OK I JIRA'd it https://issues.apache.org/jira/browse/AMQ-3395 Regards, John 2011/7/5 John Fletcher > 2011/7/5 Dejan Bosanac > > Do you have the other broker trying to connect to this one? > > > No, that's the strange thing. I only have one broker running. > > >> If so you need >> to add username

Re: Broker forwards msg only once or twice then msg stuck in queue.

2011-07-07 Thread Gary Tully
Have a look at the tests in http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/ Also note the resolution on https://issues.apache.org/jira/browse/AMQ-2324 On 28 Jun 2011 04:05, "joesmithcomm" wrote: