You receive a configuration error message when you browse a child ASP.NET 1.0 or child ASP.NET 1.1 application that is nested under a parent ASP.NET application (918830)
The information in this article applies to:
- Microsoft ASP.NET (included with the .NET Framework 1.1)
- Microsoft ASP.NET (included with the .NET Framework) 1.0
SYMPTOMSConsider the following scenario: - 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.
In this scenario, when you browse the child ASP.NET application, you receive an error message that resembles the following: 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
Note httpModuleName represents the HTTP module name. httpModuleType represents the class name and the assembly name of the HTTP module. You also receive a configuration error message if the parent ASP.NET application references any HTTP handlers that are in the Bin folder. CAUSEThis problem occurs because child ASP.NET applications inherit the parent ASP.NET application settings that are in the Web.config file. Therefore, when you browse a child ASP.NET application, it looks for the parent application HTTP module in the child Bin folder. If the child application cannot find the HTTP module, the application looks in the global assembly cache. Because the HTTP module is not a strong-named assembly, the HTTP module is not in the global assembly cache. Therefore, you receive the error message that is mentioned in the "Symptoms" section.WORKAROUNDTo work around this problem, use one of the following methods. Use the method that is most appropriate to the situation. Method 1: Create a strong-named assemblyYou can create an HTTP module that is a strong-named assembly, and then add the assembly to the Web server global assembly cache. For more information about how to create and use strong-named assemblies, visit the following Microsoft Developer Network (MSDN) Web site:
Method 2: Copy the DLL assembly file to the child Bin folderManually copy the DLL assembly file for the HTTP module to the Bin folder of the child ASP.NET application. Method 3: Upgrade the applications to ASP.NET 2.0You can upgrade the ASP.NET applications to ASP.NET 2.0. The problem does not occur in ASP.NET 2.0 because of architectural improvements in application configuration settings. For more information about how to upgrade to ASP.NET 2.0, visit the following MSDN Web site:
STATUSMicrosoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.REFERENCESFor more information about strong-named assemblies, visit the following MSDN Web site:
For more information about the global assembly cache, visit the following MSDN Web site:
Modification Type: | Major | Last Reviewed: | 5/26/2006 |
---|
Keywords: | KbhttpHandlers KbhttpModule kbASP kbtshoot kbprb KB918830 kbAudDeveloper |
---|
|