I used a HttpHandler to implement a light-weight web service targeted for high performance. It requires a POST with content-type application/x-www-form-urlencoded. The web service does many tasks including decryption, database work, business logic and so on. During load testing, the performance monitor (ANTS and Visual Studio) point to a single line of code that is taking the majority of time, in fact 67%.

string value = context.Request.Form[MY_FORM_KEY];

At the bottom of the call stack for this line of code, the performance monitor, says this call:

System.Web.Hosting.UnsafeIISMethods.MgdSyncReadRequest();

is the culprit.

Can anyone help please explain?! The application is in .Net 4, published as release, IIS 7, on Windows Server 2008.

Thank you, Joey J. Barrett

link|improve this question
3  
I would be greatly surprised if the bottleneck is Request.Form indexer. Compared to all the work you described this should be negligible. – Darin Dimitrov May 4 '11 at 7:46
You maybe referencing context.Request.Form too many times, instead ... you may need to clone your values into local variables – Ahmed Khalaf May 4 '11 at 7:52
1  
Consider sending as a header instead of Form variable. I suspect the Form collection has more values and fetching it is making the call bulky. Also can you check the Target CPU when you build the solution.. Sometimes changing to x86 removes the bottleneck aroung System.Web.Hosting.UnsafeIISMethods.MgdSyncReadRequest()... – sajoshi May 4 '11 at 9:56
feedback

1 Answer

The

System.Web.Hosting.UnsafeIISMethods.MgdSyncReadRequest()

is an imported IIS function (as you may have guessed). Since http.sys, the bit that does all the http work for IIS, is unmanaged code, at some point your application will need to talk to it, although not directly.

What I guess is happening is when you read the form collection, .net is reading this from the raw request from IIS. If it's proving to be a bottle neck, I would refactor your code to read the form data asynchronously and store the values you need in a native data structure.

Simon

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.