I have a WCF service running over MSMQ. Memory gradually increases over time, indicating that there is some sort of memory leak. I ran the service locally and monitored some c
Make sure that you close the service client after using it. something like
try { ... do work ... Close(); } ... exception handling ... { Abort(); }