summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2008-03-21 15:53:53 +0000
committerMartin Ritchie <ritchiem@apache.org>2008-03-21 15:53:53 +0000
commit5667171be15385dacd50b7c84021216c81aedce9 (patch)
tree907b8cfca51d3691a57b7c60b7c68bd96ff47b25
parent94f9ab094bb983cafb97c5ab6e970f51f8bd6a3c (diff)
downloadqpid-python-5667171be15385dacd50b7c84021216c81aedce9.tar.gz
QPID-868 : The acl.config.xml was using Base64MD5 PF which cannot be used inVM as the SASL manager complains about the registration of the client and broker moudules. They appear to overwrite each other.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@639684 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--java/broker/etc/acl.config.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/broker/etc/acl.config.xml b/java/broker/etc/acl.config.xml
index d7bc9fcf25..0de01bf8bb 100644
--- a/java/broker/etc/acl.config.xml
+++ b/java/broker/etc/acl.config.xml
@@ -60,11 +60,11 @@
<!-- Example use of Base64 encoded MD5 hashes for authentication via CRAM-MD5-Hashed -->
<principal-database>
<name>passwordfile</name>
- <class>org.apache.qpid.server.security.auth.database.Base64MD5PasswordFilePrincipalDatabase</class>
+ <class>org.apache.qpid.server.security.auth.database.PlainPasswordFilePrincipalDatabase</class>
<attributes>
<attribute>
<name>passwordFile</name>
- <value>${conf}/qpid.passwd</value>
+ <value>${conf}/passwd</value>
</attribute>
</attributes>
</principal-database>