Explain the steps to attach a debugger to a service application.Steps to attach a debugger to the application:
1. Start the service needed to be debugged. 2. In Visual Studio IDE, select Debug menu and click on Processes. 3. A dialog box appears. 4. Select the process that is related to your service. 5. If you are not able to see the process, make sure you have started the service and select show system processes. 6. Set breakpoints. 7. Start debugging as and when required.
|