Click here to Skip to main content
15,889,335 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Application is hosted successfully. But users are complaining that they are unable make login into system.
Application Pool is did not stopped.
SQL services also did not stopped.

What I have tried:

Checked whether application pool is working or not at IIS.
Checked SQL services also checked at IIS.
Posted
Updated 29-Jul-21 8:06am

1 solution

Since it's a live system, you can't really use a debugger - so you will have to fall back on older, more long winded debugger techniques.

Start by "peppering" the appropriate code with logging statements: to a file, or a DB, or whatever is available. The idea is to store info on what is happening so that after the problem has occurred you can look at the log, and start working out where the problem is happening.
You then refine the logging to add more focussed info, and repeat until you have an idea what is wrong. then you fix it, and try again - with the logging still active.
When it's fixed and working, disable the logging and return to normal.

Sorry, but its a long process, and we can't help you at all!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900