Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

Error message when you browse an .aspx page and the World Wide Web Publishing Service is configured to interact with the desktop: "The compiler failed with error code 128"


View products that this article applies to.

Important This article contains information that shows you how to help lower security settings or how to turn off security features on a computer. You can make these changes to work around a specific problem. Before you make these changes, we recommend that you evaluate the risks that are associated with implementing this workaround in your particular environment. If you implement this workaround, take any appropriate additional steps to help protect your system.

↑ Back to the top


Symptoms

Consider the following scenario. You configure the World Wide Web Publishing Service on Microsoft Windows Server 2003 to interact with the desktop. You log on to a console session either locally or remotely. In this scenario, when you browse an .aspx page that requires compilation, you may receive the following error message:
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: The compiler failed with error code 128.

↑ Back to the top


Cause

This problem occurs because the worker process that tries to start the Microsoft ASP.NET compiler process is running under the Network Service identity or under an account that is not in the Administrators group. When the ASP.NET compiler process tries to start Vbc.exe or Csc.exe, the process initialization routine fails. This failure occurs because a dependent DLL fails during its initialization routine. If any of the DLLs for a process return a failure in their initialization routine, the operating system stops the process startup and returns an error code of 128 (ERROR_WAIT_NO_CHILDREN).

↑ Back to the top


Resolution

To resolve this problem, use either of the following methods. Use the method that fits your situation the best.

Method 1: Prevent the World Wide Web Publishing Service from interacting with the desktop

You can prevent the World Wide Web Publishing Service from interacting with the desktop. This is the preferred method.

Note By default, the World Wide Web Publishing Service is not configured to interact with the desktop.

To do this, follow these steps:
  1. Click Start, click Run, type cmd, and then click OK.
  2. At the command prompt, type control admintools, and then press ENTER.
  3. Double-click Services.
  4. In the Services pane, locate World Wide Web Publishing Service.
  5. Right-click World Wide Web Publishing Service, and then click Properties.
  6. Click the Log On tab.
  7. Click to clear the Allow service to interact with desktop check box.
  8. Click OK.

Method 2: Change the application pool identity to the Local System identity

Warning This workaround may make your computer or your network more vulnerable to attack by malicious users or by malicious software such as viruses. We do not recommend this workaround but are providing this information so that you can implement this workaround at your own discretion. Use this workaround at your own risk.

You can change the application pool identity to the Local System identity.

Important You should only use this method if the following conditions are true:
  • The ASP.NET Web application must interact with the desktop.
  • You understand the security implications of changing the application pool identity to the Local System identity. For more information about the Local System account and the Network Service account, see the "Applications as NT Services" section at the following Microsoft Developer Network (MSDN) Web site:
To do this, follow these steps:
  1. Click Start, click Run, type cmd, and then click OK.
  2. At the command prompt, type control admintools, and then press ENTER.
  3. Double-click Internet Information Services (IIS) Manager.
  4. Expand the computer name, expand Application Pools, right-click the name of the application pool that you want to modify, and then click Properties.
  5. Click the Identity tab.
  6. Click Predefined, and then click Local System.
  7. Click OK.

↑ Back to the top


More information

ASP.NET does not try to compile a page after an error is encountered during the compilation process. The error is cached until the process is recycled, or until the page or one of its dependencies is modified. When the worker process is tied to the console windowstation (Winsta0), the World Wide Web Publishing Service adds the security identifier (SID) for the IIS_WPG group to the access control list (ACL) for the Winsta0 object. Then, the World Wide Web Publishing Service starts the W3wp.exe process.

When a user logs on to or off a console session, the Winlogon process rebuilds the ACL for the Winsta0 object and removes the IIS_WPG SID from the ACL. Any child processes that are started by the worker process (W3wp.exe) may not start. These processes include the Csc.exe and Vbc.exe processes.

↑ Back to the top


Keywords: kbtshoot, kbprb, KB919085

↑ Back to the top

Article Info
Article ID : 919085
Revision : 6
Created on : 3/16/2007
Published on : 3/16/2007
Exists online : False
Views : 426