How to skip password check while login?

0
I have a role which will have few users. I want to skip password check for that particular role. Since login is handled internally, no matter what I do, it keeps giving me password incorrect error. What is the way to deal this situation?
asked
4 answers
2

You can create pages that are available for anonymous users without being logged in. I don't know what you want to build, but this might be a solution.

answered
1

I don't know your use case, but I don't recommend skipping password authentication. 

You can create a custom log in page for these particular users, and try implementing this 

https://www.mattkdaniels.com/blogs/walkthrough-enabling-autologin-functionality-within-your-mendix-app

answered
1

It is possible to create a custom login handler with Java in Mendix. I think that could be used to solve your problem.

However, the documentation for this is poor and you would need to look at some existing modules (e.g. the IP range validation module), to find out how it is working. (Edwin posted a good link)

Anonymous users as proposed by Andreas might be the easiest option.

answered
1

This article on CustomLoginHandler should help you further as well: https://bartgroot.nl/mendix/custom-checks-on-login/

answered