Username and password field got swapped when calling
PooledConnection.createConnection
--------------------------------------------------------------------------------------
Key: AMQ-1365
URL: https://issues.apache.org/activemq/browse/AMQ-1365
Project: ActiveMQ
Issue Type: Bug
Components: JMS client
Affects Versions: 4.1.1
Environment: Windows XP
Reporter: William Lam
When using org.apache.activemq.pool.PooledConnection createConnection(username,
password), the username and password fields are swapped.
I think the problem could be the following, based in 4.1.1 source code,
PooledConnection.java line 77
public synchronized Connection createConnection(String userName, String
password) throws JMSException {
ConnectionKey key = new ConnectionKey(userName, password);
ConnectionKey.java line 30
public ConnectionKey(String password, String userName) {
this.password = password;
this.userName = userName;
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.