- You create a Microsoft ASP.NET 1.0 or ASP.NET 1.1 child
application that is nested under an ASP.NET parent application. For example,
the Web site contains the following structure:
- http://contoso.com
- http://contoso.com/research
- The Web.config file for the parent ASP.NET application
(http://contoso.com) contains an "<httpModules>" section that references
an HTTP module. Additionally, all the following conditions are true:
- The HTTP module is not a strong-named assembly. Therefore, the HTTP module is not located in the global assembly cache.
- The HTTP module is not in the Bin folder of the child ASP.NET application.
Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: File or assembly name httpModuleName, or one of its dependencies, was not found.
Source Error:
Line 14: -->
Line 15: <httpModules>
Line 16: <add type="httpModuleType" name="httpModuleName"/>
Line 17: </httpModules>
Line 18: <compilation
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: File or assembly name httpModuleName, or one of its dependencies, was not found.
Source Error:
Line 14: -->
Line 15: <httpModules>
Line 16: <add type="httpModuleType" name="httpModuleName"/>
Line 17: </httpModules>
Line 18: <compilation
You also receive a configuration error message if the parent ASP.NET application references any HTTP handlers that are in the Bin folder.