Hi,
I'm trying to implement some simple password validation in xtk:operator input form, for example set minimum length of a password as 8 characters.
To do this, i tried to create some soap service and pass password to it, somehow like this:
<leave>
<soapCall name="ValidateCheck" service="cus:validate">
<param exprIn="[access/@password]" type="string"/>
</soapCall>
</leave>
The problem is that password passed already encoded and there is no way to decode this. As i understand the AC use encryptDES function and generate some unique encode key for each password instance. If i change password properties like set reversable to true, crypt to false, or set the password value directly, the authorizations breaks and user can't login with his new password.
Is there any ways to avoid this problem?