ARTEMIS-1255 Fixed authentication issues with XAConnectionFactory
Added the global user/password variables to all of the variations of the createContext/createConnectionFactory methods.
(cherry picked from commit 177bda4892
)
This commit is contained in:
parent
144a7c8a42
commit
21f86a4844
|
@ -309,7 +309,7 @@ public class ActiveMQConnectionFactory implements ConnectionFactoryOptions, Exte
|
||||||
}
|
}
|
||||||
|
|
||||||
public QueueConnection createQueueConnection() throws JMSException {
|
public QueueConnection createQueueConnection() throws JMSException {
|
||||||
return createQueueConnection(null, null);
|
return createQueueConnection(user, password);
|
||||||
}
|
}
|
||||||
|
|
||||||
public QueueConnection createQueueConnection(final String username, final String password) throws JMSException {
|
public QueueConnection createQueueConnection(final String username, final String password) throws JMSException {
|
||||||
|
@ -319,7 +319,7 @@ public class ActiveMQConnectionFactory implements ConnectionFactoryOptions, Exte
|
||||||
// TopicConnectionFactory implementation --------------------------------------------------------
|
// TopicConnectionFactory implementation --------------------------------------------------------
|
||||||
|
|
||||||
public TopicConnection createTopicConnection() throws JMSException {
|
public TopicConnection createTopicConnection() throws JMSException {
|
||||||
return createTopicConnection(null, null);
|
return createTopicConnection(user, password);
|
||||||
}
|
}
|
||||||
|
|
||||||
public TopicConnection createTopicConnection(final String username, final String password) throws JMSException {
|
public TopicConnection createTopicConnection(final String username, final String password) throws JMSException {
|
||||||
|
@ -330,7 +330,7 @@ public class ActiveMQConnectionFactory implements ConnectionFactoryOptions, Exte
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public XAConnection createXAConnection() throws JMSException {
|
public XAConnection createXAConnection() throws JMSException {
|
||||||
return createXAConnection(null, null);
|
return createXAConnection(user, password);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -340,7 +340,7 @@ public class ActiveMQConnectionFactory implements ConnectionFactoryOptions, Exte
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public XAJMSContext createXAContext() {
|
public XAJMSContext createXAContext() {
|
||||||
return createXAContext(null, null);
|
return createXAContext(user, password);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -358,7 +358,7 @@ public class ActiveMQConnectionFactory implements ConnectionFactoryOptions, Exte
|
||||||
// XAQueueConnectionFactory implementation ------------------------------------------------------
|
// XAQueueConnectionFactory implementation ------------------------------------------------------
|
||||||
|
|
||||||
public XAQueueConnection createXAQueueConnection() throws JMSException {
|
public XAQueueConnection createXAQueueConnection() throws JMSException {
|
||||||
return createXAQueueConnection(null, null);
|
return createXAQueueConnection(user, password);
|
||||||
}
|
}
|
||||||
|
|
||||||
public XAQueueConnection createXAQueueConnection(final String username, final String password) throws JMSException {
|
public XAQueueConnection createXAQueueConnection(final String username, final String password) throws JMSException {
|
||||||
|
@ -368,7 +368,7 @@ public class ActiveMQConnectionFactory implements ConnectionFactoryOptions, Exte
|
||||||
// XATopicConnectionFactory implementation ------------------------------------------------------
|
// XATopicConnectionFactory implementation ------------------------------------------------------
|
||||||
|
|
||||||
public XATopicConnection createXATopicConnection() throws JMSException {
|
public XATopicConnection createXATopicConnection() throws JMSException {
|
||||||
return createXATopicConnection(null, null);
|
return createXATopicConnection(user, password);
|
||||||
}
|
}
|
||||||
|
|
||||||
public XATopicConnection createXATopicConnection(final String username, final String password) throws JMSException {
|
public XATopicConnection createXATopicConnection(final String username, final String password) throws JMSException {
|
||||||
|
|
Loading…
Reference in New Issue