I had some problems with my WCF timing out.
I read WCF timeout exception detailed investigation and added this to my web.config:
<system.net>
<connectionManagement>
<add maxconnection = "100" address ="*" />
</connectionManagement>
</system.net>
Since it already was on my WCF side web.config, I added it to my client side web.config (they are on seperate machines).
My question is: Should this element be applied to the client side? Or am I doind it wrong? Couldnt really catch that from the above thread