You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You will receive an IndexOutOfRangeException
if the application pool is running under a custom user whose username was entered in UPN-Format
so if application-pool-user is entered this way: domain\username everything is fine.
BUT
if you entered the application-pool-username this way: username@domain then this program will throw an exception.
the error can be found in line 1357 and 1358 where the code is trying to split the application-pool-username by the backslash-char and use the second-part of the split-result.
The text was updated successfully, but these errors were encountered:
You will receive an IndexOutOfRangeException
if the application pool is running under a custom user whose username was entered in UPN-Format
so if application-pool-user is entered this way: domain\username everything is fine.
BUT
if you entered the application-pool-username this way: username@domain then this program will throw an exception.
the error can be found in line 1357 and 1358 where the code is trying to split the application-pool-username by the backslash-char and use the second-part of the split-result.
The text was updated successfully, but these errors were encountered: