Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I ran into something strange in WCF and wanted to know which areas to potentially look at. Basically when making 100 calls from a proxy to a service with no pause between calls response time was very fast. When I did the same test and put the thread to sleep for say 15 seconds between calls the response time is significantly worse. Instead of say 200ms the response time was 800ms-1.5 sec.

What areas should I look at which could be causing this, or is this some expected behavior that I do not know of.

share|improve this question
1  
which binding are you using? – Richard Blewett Apr 17 '12 at 15:34
the binding is wshttp – rfresia Apr 17 '12 at 16:14
Are you closing or recreating the proxy for each call? – Tim Apr 17 '12 at 18:46
Tim - Nope I open a proxy and make 100 calls to the same method, one run with no pause between calls..and another with 7 second delay between calls – rfresia Apr 17 '12 at 20:54
How is security enabled? Can you enable message logging? It sounds as if the RST/RSTR handshake is going on every time when you leave the delay – Richard Blewett Apr 18 '12 at 15:27
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.