Re: [MarkLogic Dev General] How to force a user to change password if the last password change date is more than 90days

2015-08-14 Thread Sudheer Yalaverthi
Hi Danny, I am aware of these password-extra functions and that is how I am capturing the information when the password last changed. The issue is on what URI should I register my plugin so that It gets invoked whenever a user tries to login to the app server? Registering against

Re: [MarkLogic Dev General] How to force a user to change password if the last password change date is more than 90days

2015-08-14 Thread Danny Sokolsky
There is an api sec:user-set-password-extra and the corresponding getter: http://docs.marklogic.com/sec:user-set-password-extra http://docs.marklogic.com/sec:user-get-password-extra That allows you to squirrel away information in the password document stored in the secutity database. You can

[MarkLogic Dev General] How to force a user to change password if the last password change date is more than 90days

2015-08-14 Thread Sudheer Yalaverthi
Hi, On my application server, I would like to enforce a password change for every 90days. If a user tries to access the app server or any resources on this server, I would like to be able to show a message that password is expired (though there is no password expiry in MarkLogic) as last