I have installed and configured the jasypt service in JBoss A-MQ 6.0.
Configuration for org.apache.karaf.jaas.cfg
#
# Boolean enabling / disabling encrypted passwords
#
#
# Encryption Service name
# the default one is 'basic'
# a more powerful one named 'jasypt' is available
# when installing the encryption feature
#
#
# Encryption prefix
#
#
# Encryption suffix
#
#
# Set the encryption algorithm to use in Karaf JAAS login module
# Supported encryption algorithms follow:
# MD2
# MD5
# SHA-1
# SHA-256
# SHA-384
# SHA-512
#
#
# Encoding of the encrypted password.
# Can be:
# hexadecimal
# base64
#
Configuration in etc/activemq.xml file
<plugins>
<jaasAuthenticationPlugin configuration="karaf" />
</plugins>
<jaas:config name="karaf" rank="1">
<jaas:module className="org.apache.karaf.jaas.modules.properties.PropertiesLoginModule"
flags="required">
users = $[karaf.base]/etc/users.properties
</jaas:module>
</jaas:config>
I get below error in a-mq logs
Please let me know correct namespace url for jass:config tag that should be used in activemq.xml?
Also let me know steps that i might have missed to setup jasypt in A-MQ?