| ECF, JMS, and Something Scott Said [message #624329] |
Wed, 12 November 2008 15:48  |
Geoffry Roberts Messages: 71 Registered: July 2009 |
Member |
|
|
All,
I would like to add JMS capability to my current OSGi based application.
I have been looking at ECF and its ActiveMQ support, and yes I'm having
problems.
The bundle org.eclipse.ecf.provider.jms.activemq shows up in equinox as
active, but I can't connect. I get "connection refused" when I attempt to
create the connection. In stepping through the code, I have noticed the
use of "defaultUser" and "defaultPassword". Are these valid?
Here's what I have:
ActiveMQConnectionFactory connectionFactory = new
ActiveMQConnectionFactory(
"tcp://localhost:61616");
connection = connectionFactory.createConnection();
session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
...
I saw in another thread Scott recognizing the need for more documentation
and wanting to know what might be needed. Well, I could use a little
HowTo wrt ECF and JMS.
Also,
I see that the current ECF ActiveMQ is based on v3.1. Is there any plan
to update to v5?
Thanks in advance.
|
|
|