Hello, we already have this Root Web App that is configured via Enterprise Library 2.0 and there is this new application that was decided to be a Sub Web App which should run on the same DNS, the problem is that it is configured via Enterprise Library 3.1.
Several configuration sections such as logging, exception handling and data configuration block are already present on the root web config thus, the latest one is encountering concerns.
Parser Error Message: Section or group name 'loggingConfiguration' is already defined. Updates to this may only occur at the configuration level where it is defined.
We have already tried, the <remove> and <clear> methods but niether of which work wonders. I've also read about the EL DLL modification but for our case this is not advisable since the EL is shared on multiple other applications within the box.
In short note, is there any other way for the sub web application not to inherit the web.config of the root web application?
** Our last resort is to create a seperate web site.