| [news.eclipse.technology.ecf] Re: ECF, JMS, and Something Scott Said |
Hi Geoffry,
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.
Here's a web page on running activemq as a separate java process:
http://activemq.apache.org/run-broker.html
Also,
I see that the current ECF ActiveMQ is based on v3.1. Is there any plan to update to v5?
Thanks,
Scott