Enterprise Library CacheFactory.GetCacheManager Throws Null Ref - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T16:19:57Z http://stackoverflow.com/feeds/question/9136 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/9136/enterprise-library-cachefactory-getcachemanager-throws-null-ref 1 Enterprise Library CacheFactory.GetCacheManager Throws Null Ref Brian Sullivan 2008-08-12T19:01:17Z 2008-08-31T00:28:32Z <p>I'm trying to convert an application using the 1.1 version of the Enterprise Library Caching block over to the 2.0 version. I think where I'm really having a problem is that the configuration for the different EntLib pieces was split out over several files. Apparently, this used to be handled by the <strong>ConfigurationManagerSectionHandler</strong>, but is now obsolete in favor of the built-in configuration mechanisms in .NET 2.0.</p> <p>I'm having a hard time finding a good example of how to do this configuration file splitting, especially in the context of EntLib. Has anyone else dealt with this?</p> http://stackoverflow.com/questions/9136/enterprise-library-cachefactory-getcachemanager-throws-null-ref/9706#9706 3 Answer by Brian Sullivan for Enterprise Library CacheFactory.GetCacheManager Throws Null Ref Brian Sullivan 2008-08-13T12:29:57Z 2008-08-13T12:29:57Z <p>Looks like it was the configuration. I found a good example of the normal, one-file approach here: <a href="http://www.devx.com/dotnet/Article/31158/0/page/2" rel="nofollow"><a href="http://www.devx.com/dotnet/Article/31158/0/page/2" rel="nofollow">http://www.devx.com/dotnet/Article/31158/0/page/2</a></a></p> <p>Using an external config file is actually trivial once you figure out the syntax for it. Ex.:</p> <p>In Web.config:</p> <pre> &lt;cachingConfiguration configSource="cachingconfiguration.config" /&gt; </pre> <p>In cachingconfiguration.config:</p> <pre> &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;cachingConfiguration defaultCacheManager="Default Cache Manager"&gt; &lt;backingStores&gt; &lt;add name="inMemory" type="Microsoft.Practices.EnterpriseLibrary.Caching.BackingStoreImplementations.NullBackingStore, Microsoft.Practices.EnterpriseLibrary.Caching" /&gt; &lt;/backingStores&gt; &lt;cacheManagers&gt; &lt;add name="Default Cache Manager" expirationPollFrequencyInSeconds = "60" maximumElementsInCacheBeforeScavenging ="50" numberToRemoveWhenScavenging="10" backingStoreName="inMemory" /&gt; &lt;/cacheManagers&gt; &lt;/cachingConfiguration&gt; </pre> <p>Hopefully this helps somebody!</p>