Author: ritchiem
Date: Fri Mar 21 08:53:53 2008
New Revision: 639684
URL: http://svn.apache.org/viewvc?rev=639684&view=rev
Log:
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.
Modified:
incubator/qpid/branches/M2.1/java/broker/etc/acl.config.xml
Modified: incubator/qpid/branches/M2.1/java/broker/etc/acl.config.xml
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/M2.1/java/broker/etc/acl.config.xml?rev=639684&r1=639683&r2=639684&view=diff
==============================================================================
--- incubator/qpid/branches/M2.1/java/broker/etc/acl.config.xml (original)
+++ incubator/qpid/branches/M2.1/java/broker/etc/acl.config.xml Fri Mar 21
08:53:53 2008
@@ -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>