ActiveMQ 5 to Glassfish v2 integration, BPEL

2009-03-14 Thread lyall
I want to integrate ActiveMQ with Glassfish v2 such that I can post and receive messages from BPEL. I found http://weblogs.java.net/blog/rampsarathy/archive/2007/03/glassfish_v2_an.html http://weblogs.java.net/blog/rampsarathy/archive/2007/03/glassfish_v2_an.html which was listed in http://a

Re: ActiveMQ usage from C# (WITHOUT SPRING.NET)

2009-03-14 Thread padcom
Hi there, so I've tried to build it using NAnt (the latest I could find) and it failed with some strange error message. Nevertheless I've stripped the downloading part from csproj files (the Apache.NMS and Apache.NMS.ActiveMQ) and created a new solution where ActiveMQ project depends on the NMS o

Re: ActiveMQ usage from C# (WITHOUT SPRING.NET)

2009-03-14 Thread padcom
No - I used that what was already in the repository. I'll try to build it myself and I'll get back to you. semog wrote: > > This is a bug that was fixed. If you get latest you should have better > success. > > - Jim > > -Original Message- > From: pclovec > > Date: Thu, 12 Mar 2009

Warnings during IKVM compilation of activemq-all-5.2.0.jar

2009-03-14 Thread Postol
Hi All, I was trying to compile activemq-all-5.2.0.jar with IKVM, so be able to use all features of ActiveMQ in .NET and I get a lot of warnings during compilation (see attached file). Used command is: ikvmc.exe -target:library -out:activemq-client.dll "C:\apache-activemq-5.2.0\activemq-all-5.2.

CertificateLoginModule does not appear to receive certificates

2009-03-14 Thread huntc
Hi there, I have a v.5.1.0 client/broker scenario with mutual SSL authentication occurring. The certificates are exchanged and a connection is established successfully. I have subclassed ActiveMQ's CertificateLoginModule class and configured the broker to use it for authentication. The class is

Re: ssl client connectivity and the keystore with needClientAuth on the broker

2009-03-14 Thread huntc
I've made some progress. My client now connects to the broker with mutual SSL authentication. I didn't realise that if my client cert resides jre lib cacerts keystore then my application wont' have access to it. That makes sense of course; however because one-way SSL was working using cacerts as a

Re: JMS Over SSL

2009-03-14 Thread huntc
Your SSL considerations in your application should be fairly generic - no matter what you're using on the client, over the wire it is SSL/TLS. However your wire protocol for JMS has to be a consideration for you. ActiveMQ uses Openwire; other brokers use other protocols although I think there are

JMS Over SSL

2009-03-14 Thread AlwaysJMS
Hi I am writing infact modifying the jms application to support ssl connectivity. My jms code is a generic one and works for all jms providers. But most of the customers use activemq as their jms provider. Till now whatever i have read about ssl over jms is that its all provider dependent. Now