Wildfly to use hashed password in the pooled-connection-factory

107 views Asked by At

I am following this guide to make remote JMS listener, it works fine. I need to use the hashed password value in the pooled-connection-factory. But I don't want to use the plain password in the password param, I tried with hashed password value it is not allowing to connect.

Is there any way to use the management user encrypted password ?

Exception:

org.jboss.resteasy.spi.UnhandledException: javax.jms.JMSSecurityException: AMQ229031: Unable to validate user from /127.0.0.1:61662. Username: testuser; SSL certificate subject DN:

Code:

<pooled-connection-factory name="remote-artemis" entries="java:/jms/remoteCF" connectors="remote-artemis" user="testuser" password="16b322f4cfe1023d67ecc13d626cb32c"/>
1

There are 1 answers

2
ehsavoie On