Hi,
I've got the latest version working great with AD integration. New users are automatically added in to the BugNet DB. However, they dont appear to be auto assigned roles when they are added. Is this the intentional behaviour? I want a new user to be automatically assigned a role to a particular project.
On another point. I had to modify the the Authentication HTTP module because the following check does not always work as i get some clients with the type as 'Negotiate':
if (request.IsAuthenticated && (request.LogonUserIdentity.AuthenticationType == "NTLM")
This code seems to fix the Problem:
if (request.IsAuthenticated
&& (request.LogonUserIdentity.AuthenticationType == "NTLM)" || request.LogonUserIdentity.AuthenticationType == "Negotiate")
Thanks,
Matt.