zoukankan      html  css  js  c++  java
  • HTTP 错误 500.19 配置文件错误 ( 0x8007000d,0x80070032)

    HTTP 错误 500.19 - Internal Server Error
    无法访问请求的页面,因为该页的相关配置数据无效。 详细错误信息
    模块 IIS Web Core 
    通知 未知 
    处理程序 尚未确定 
    错误代码 0x80070032 
    配置错误 无法读取配置节“system.serviceModel”,因为它缺少节声明。

     解决办法:在“服务器管理器”的“功能”项中,“添加功能”,选择“.NET Framework 3.5.1功能”安装。

    HTTP 错误 500.19 - Internal Server Error

    无法访问请求的页面,因为该页的相关配置数据无效。

    模块 IIS Web Core
    通知 未知
    处理程序 尚未确定
    错误代码 0x8007000d
    配置错误  
    配置文件 \?D:Webetweb.config
    请求的 URL http://et.test.wanfangdata.com.cn:80/
    物理路径  
    登录方法 尚未确定
    登录用户 尚未确定
     
     
     
     
     
     
     
     
    配置源 (-1: 0:)
     
    系统环境:Web server2008r2 64   Framework 4.0  IIS7.5.7600  16385
    解决办法:问题多出在  <system.webServer>节(据说是IIS7.0集成配置)    <system.web>(IIS7.0经典及以下)
    删掉了rewrite节
     
    <system.webServer>
        <validation validateIntegratedModeConfiguration="false" />
        <modules runAllManagedModulesForAllRequests="true">
          <add name="SimpleTradeConvert" type="WFKS.WebUtility.SimpleTradeConvertHttpModule, WFKS.WebUtility" />
          <add name="WFKSAuthentication" type="WFKS.Authentication.WebAuthenticationModule, WFKS.Authentication" />
        </modules>
        <handlers>
          <remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" />
          <remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" />
          <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
          <add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%Microsoft.NETFrameworkv4.0.30319aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
          <add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%Microsoft.NETFramework64v4.0.30319aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" />
          <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
        </handlers>
        <rewrite>
          <rules>
            <rule name="Services" stopProcessing="true">
              <match url="customerservice/Services.aspx" />
              <action type="Redirect" url="customerservice/Services" />
            </rule>
            <rule name="helpindex" stopProcessing="true">
              <match url="help/index.html" />
              <action type="Redirect" url="/Help/Index" />
            </rule>
            <rule name="AboutUsDefault" stopProcessing="true">
              <match url="AboutUs/Default.aspx" />
              <action type="Redirect" url="AboutUs/Index" />
            </rule>
            <rule name="AboutUsContactUs" stopProcessing="true">
              <match url="AboutUs/ContactUs.aspx" />
              <action type="Redirect" url="AboutUs/ContactUs" />
            </rule>
            <rule name="CustomerserviceAnnounce" stopProcessing="true">
              <match url="customerservice/Announce.aspx" />
              <action type="Redirect" url="customerservice/Announce" />
            </rule>
            <rule name="OtherLinks" stopProcessing="true">
              <match url="Others/Links.aspx" />
              <action type="Redirect" url="/AboutUs/OtherLinks" />
            </rule>
            <rule name="ResourceDescriptionNstl" stopProcessing="true">
              <match url="ResourceDescription/Nstl.aspx" />
              <action type="Redirect" url="ResourceDescription/Nstl" />
            </rule>
            <rule name="ResourceBrowseScholar" stopProcessing="true">
              <match url="ResourceBrowse/Scholar.aspx" />
              <action type="Redirect" url="ResourceBrowse/Scholar" />
            </rule>
          </rules>
        </rewrite>
        <directoryBrowse enabled="true" />
        <staticContent>
          <remove fileExtension=".gif" />
        </staticContent>
      </system.webServer>
     
     
  • 相关阅读:
    Oracle OCP 11G 053(601-712)答案解析目录_20140304
    Oracle OCP 11G 053(201-400)答案解析目录_20140304
    Oracle OCP 11G 053(1-200)答案解析目录_20140304
    dojo实现表格数据无法展示
    dojo实现表格
    Matlab基本函数-menu函数
    Matlab基本函数-log10函数
    Matlab基本函数-log函数
    Matlab基本函数-length函数
    Matlab基本函数-imag函数
  • 原文地址:https://www.cnblogs.com/xdot/p/7714755.html
Copyright © 2011-2022 走看看