Error publishing application in IIS

4

I'm publishing an application in IIS, and when I access it, I get the following error:

  

HTTP Error 500.19 - Internal Server Error   The requested page can not be accessed because the configuration data related to > page are invalid.

Detailed error information:

Módulo     IIS Web Core
Notificação    BeginRequest
Manipulador    Ainda não determinado
Código do erro     0x80070021
Erro de Configuração       Esta seção de configuração não pode ser usada nesse      caminho. Isso ocorre quando a seção está bloqueada em um nível pai. O bloqueio é por padrão (overrideModeDefault="Deny"), ou é definido explicitamente por uma marca de local com overrideMode="Deny" ou o allowOverride="false" herdado.
Arquivo de Configuração    \?\C:\inetpub\wwwroot\portal\views\web.config
URL solicitada     http://localhost:80/portal/Views/Autenticacao/Entrar
Caminho físico     C:\inetpub\wwwroot\portal\Views\Autenticacao\Entrar
Método de logon    Ainda não determinado
Usuário de logon       Ainda não determinado

Configuration Source:

29:   <system.webServer>
30:     <handlers>
31:       <remove name="BlockViewHandler"/>

This error I get when you visit link

The strange thing is that generally, when publishing the application, accessing the address: link works.

This time, accessing this address only warns you that:

  

"The Web server is configured not to list the contents of this directory."

Remembering that IIS is installed on a machine running Windows 8.1

    
asked by anonymous 21.01.2015 / 12:13

1 answer

7

Run the following sequence of steps to check your server configuration:

  • On your Windows, go to Control Panel > Programs and Resources > Enable or disable Windows Features ;
  • Locate the "Internet Information Services" node, or "Internet Information Services". Expand the node;
  • Locate the "World Wide Web Service" node, or "World Wide Web Service". Expand the node;
  • Locate the "Application Development Features" node, or "Application Development Features". Expand the node;
  • Make sure that ASP.NET is checked. If it is not, check it and click Ok.
  • 21.01.2015 / 13:50