Login Fail Detail Message
Hi,
We are using the following method to login systems.
<cftry>
<cfscript>
ntauth = createObject("java", "jrun.security.NTAuth");
ntauth.init(arguments.domain);
ntauth.authenticateUser(arguments.userid, arguments.passwd);
</cfscript>
<cfcatch>
<cfset errMessage = cfcatch.Message>
</cfcatch>
</cftry>
However, sometimes users reported that they failed to login system. We suggest them to reset their password and it can solve the problem. However, we found that some login failure cases are not because of password expired or locked windows account. How can I get more detail message (e.g. locked windows account, password expired, password incorrect and so on) for checking the reason of failure?
