[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.technology.ecf] ECF, JMS, and Something Scott Said

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.