Enterprise Library CacheFactory.GetCacheManager Throws Null Ref - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T16:19:57Zhttp://stackoverflow.com/feeds/question/9136http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/9136/enterprise-library-cachefactory-getcachemanager-throws-null-ref1Enterprise Library CacheFactory.GetCacheManager Throws Null RefBrian Sullivan2008-08-12T19:01:17Z2008-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#97063Answer by Brian Sullivan for Enterprise Library CacheFactory.GetCacheManager Throws Null RefBrian Sullivan2008-08-13T12:29:57Z2008-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>
<cachingConfiguration configSource="cachingconfiguration.config" />
</pre>
<p>In cachingconfiguration.config:</p>
<pre>
<?xml version="1.0" encoding="utf-8"?>
<cachingConfiguration defaultCacheManager="Default Cache Manager">
<backingStores>
<add name="inMemory" type="Microsoft.Practices.EnterpriseLibrary.Caching.BackingStoreImplementations.NullBackingStore, Microsoft.Practices.EnterpriseLibrary.Caching" />
</backingStores>
<cacheManagers>
<add name="Default Cache Manager" expirationPollFrequencyInSeconds = "60" maximumElementsInCacheBeforeScavenging ="50" numberToRemoveWhenScavenging="10" backingStoreName="inMemory" />
</cacheManagers>
</cachingConfiguration>
</pre>
<p>Hopefully this helps somebody!</p>