Browse by Tags

WCF Client Channel Pool - Improved Client Performance
Monday, May 07, 2007 12:22 AM
Not long ago, I posted about WCF client performance and some work I have been doing around improving that with a "Channel Pool" type implementation. Well its finally ready for some public consumption. You can grab the code here . ( http://www.theglavs.com/DownloadItem.aspx?FileID=55 ) You can grab the download from here. Its very "apha" at this point and my testing... Read More...
WCF Client Performance
Saturday, April 21, 2007 6:22 PM
One of the easiest performance traps when using WCF services is constant creation of new client proxies when accessing those services. In WSE land, this was common place: MyProxy prox = new MyProxy(); prox.CallServiceMethod(); For example, you might have a class with some instance methods, and in each method, instantiate a proxy, call the service method, life... Read More...
More Posts