views:

45

answers:

1

I have a web app that is calling a web handler .ashx via jquery POST on the production server it works fine but on the testing and locally all POST requests are much slower. All GET requests are very fast but POST are much too slow. What could be causing that? How can I troubleshoot it?

+1  A: 

There could be many reasons, but the first thing you need to do is profile the application to find out where the bottleneck exists. The answer I provided here suggested some profiling tools.

It could well be that your production, test and local environments are configured sufficiently differently enough (hardware, OS, database configs) to cause this issue.

Kev