No-Touch Deployment and Multiple config files

S

Sam Kuehn

I am trying to deploy an application using no-touch deployment and an IIS
web server. The application is using the Enterprise Library, specifically
the Caching Application Block (as well as the Config block to manage the
configuration). No-touch works great, the assemblies are downloaded correctly
and the application is functioning properly UNTIL I hit a chunk of code that
uses Caching. The I get an error that says:
An unhandled exception has occurred in you application........

Invalid section name. The section 'cachingConfiguration' does not exiswt
in the requested configuration file 'http://myserver/myadd/myapp.exe.remoteconfig'
or machine.config...Make sure that the 'enterpriseLibrary.configurationSections'
configuration section exists in one fo the files and that the section 'cachingConfiguation'
is defined. Two questions
1) Sould/could I merge the two config files into one in order to make the
app work.
2) How can I make the no-touch depolyed app see the cachingConfiguation config
file? (I have tried using the full URL to the cachingConfig file in the path
attribute).



relavent lines from app.config and cacheingConfiguration.config:
--myapp.config--
<enterpriselibrary.configurationSettings xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" applicationName="TAMProspects"
xmlns="http://www.microsoft.com/practices/enterpriselibrary/08-31-2004/configuration">
<configurationSections>
<configurationSection xsi:type="ReadOnlyConfigurationSectionData" name="cachingConfiguration"
encrypt="false">
<storageProvider xsi:type="XmlFileStorageProviderData" name="XML File
Storage Provider" path="cachingConfiguration.remoteconfig" />
<dataTransformer xsi:type="XmlSerializerTransformerData" name="Xml
Serializer Transformer">
<includeTypes />
</dataTransformer>
</configurationSection>
</configurationSections>
<keyAlgorithmStorageProvider xsi:nil="true" />
<includeTypes />
</enterpriselibrary.configurationSettings>


--cachingConfiguration.config
<?xml version="1.0" encoding="utf-8"?>
<cachingConfiguration>
<xmlSerializerSection type="Microsoft.Practices.EnterpriseLibrary.Caching.Configuration.CacheManagerSettings,
Microsoft.Practices.EnterpriseLibrary.Caching, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=null">
<enterpriseLibrary.cacheSettings xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" defaultCacheManager="Cache
Manager" xmlns="http://www.microsoft.com/practices/enterpriselibrary/08-31-2004/cache">
<cacheManagers>
<cacheManager name="Cache Manager" expirationPollFrequencyInSeconds="60"
maximumElementsInCacheBeforeScavenging="1000" numberToRemoveWhenScavenging="10">
<cacheStorage xsi:type="IsolatedStorageCacheStorageData" name="Isolated
Storage" partitionName="TAMProspects" />
</cacheManager>
</cacheManagers>
</enterpriseLibrary.cacheSettings>
</xmlSerializerSection>
</cachingConfiguration>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top