J'essaye d'ajouter
<location inheritInChildApplications="false">
au web.config de mon application Web parente, mais cela ne semble pas fonctionner.
Mes parents web.config
ont:
<configuration>
<configSections>
</configSections>
// 10 or so custom config sections like log4net, hibernate,
<connectionStrings>
</connectionStrings>
<appSettings>
</appSettings>
<system.diagnostics>
</system.diagnostics>
<system.web>
<webParts>
</webParts>
<membership>
</membership>
<compilation>
</compilation>
</system.web>
<location ..>
<system.web>
</system.web>
</location>
<system.webServer>
</system.webServer>
Mon application Web enfant est configurée en tant qu'application dans IIS et hérite de celle du parent, web.config
ce qui pose des problèmes.
Où dois-je placer exactement le
<location inheritInChildApplications="false">
donc il ignore tous les différents paramètres web.config?