I have ASP.NET MVC 3 application and wonder if it is possible to make unlimited access of users logged in using the same account? What is the maximum permitted number of such users? Taking into an account that users work in the app simultaneously. There are about 100 users were successfully logged in under the same userID, but if more users try, there will be error like bad login or password. How could it be? I'd appreciate any answer.
Asked
Active
Viewed 237 times
0
-
If I understood it correct, you want to the maximum permitted number of logins with same user. If thats the case I dont think that there is any limit. It depends on the buisness requierment whehter you want to allow a user to login from multiple machines or browser instances. – Nilesh Oct 16 '13 at 07:36
-
Right, so there is unlimited number of sessions under one user? what could be the reason for an error? – Gyuzal Oct 16 '13 at 07:59
-
1I dont think the error has to do with the number of instances the user has logged in to the application. The Error says Bad login or password which means the credentials that are used might be wrong. – Nilesh Oct 16 '13 at 08:07