I am new to jboss and jbpm; I need help for authentication with jboss7. we faced "Password Incorrect/Password Required" error.
the following is part of our jboss standlone.*.xml conf.
<security-domain name="other" cache-type="default">
<authentication>
<login-module code="org.jboss.security.auth.spi.DatabaseServerLoginModule" flag="required">
<module-option name="dsJndiName" value="java:jboss/datasources/jbpmDS"/>
<module-option name="principalsQuery" value="select passwd from users where username=?"/>
<module-option name="rolesQuery" value="select userRoles 'Roles' from userroles where username=?"/>
<module-option name="hashAlgorithm" value="pbkdf2_sha256"/>
</login-module>
</authentication>
</security-domain>
We have the password with pbkdf2_sha256 encrypt, but don't know how to configure the "pbkdf2_sha256" parameters in standalone*.xml
We use the django(v1.4 pbkdf2_sha256 encrypt) framework to manage the users.
Can somebody help me?