I have an existing ASP.NET 2.0 web service serving several WinForms clients. In our application, we believe that we have performance problems at several levels.
- Sending toomuch data in a synchronous request
- Lazy loading, Too much travel around the web service and database
- POCO β Display Sql objects using untyped datasets and reflection [no caching]
This is an existing application with a large code base, I would like to use this application to search for hot spots.
- How can I manage remote applications as a winforms client deployed to remote locations?
- How can I manage a web service?
- Edit ** Are there any better profilers than VS profiler?
- Can I trust profilers to tell me hot spots, so I donβt pollute my code with tools? Or do I have to take the middle road, profiler + measuring instruments?
source share