1

Когда я пытаюсь подключиться к моему WebService, я получаю это:

Server Application Unavailable 
The web application you are attempting to access on this web server is currently unavailable.
Please hit the "Refresh" button in your web browser to retry your request. 

Administrator Note: An error message detailing the cause of this specific request failure can be found in the application event log of the web server.
Please review this log entry to discover what caused this error to occur. 

И журнал это:

aspnet_wp.exe could not be launched because the username and/or password supplied
in the processModel section of the config file are invalid.

И это:

aspnet_wp.exe could not be started. the error code for the failure is
80004005. this error can be caused when the worker process account
has insufficient rights to read the .NET Framework files.
please ensure that the .NET Framework is correctly installed and that the ACLs on the
installation directory allow access to the configured account.

В чем может быть проблема?

1 ответ1

0

Существует официальный ответ Microsoft под названием: FIX: ASP.NET не работает с учетной записью ASPNET по умолчанию на контроллере домена, что предлагает несколько способов решения вашей проблемы.


Но я бы взглянул на это практичное решение до ошибки.

Шаги для Setting the userName attribute to SYSTEM in the <processModel> section of the Machine.config file :

  • Найдите файл Machine.config, он может быть в этом месте: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\config\machine.config
  • Теперь измените запись ProcessModel на это: <processModel userName=”SYSTEM”/>
  • Перезапустите IIS, используя Start -> Run -> IISRESET

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .