如何解决此错误“HTTP错误500.19 - 内部服务器错误”

时间:2017-06-14 05:47:22

标签: c# asp.net

web.config页面是否有任何错误。

    <?xml version="1.0" encoding="utf-8"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
  <system.web>
      <httpRuntime executionTimeout="5"/>
      <compilation targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />

  </system.web>

  <appSettings>

    <add key="dsn" value="Data Source=184.14.14.239;Initial Catalog=Testing;User ID=sa;Password=June28241234"/>
    <add key="ReportServer" value="http://184.14.14.239/ReportServer/"/>
    <add key="SSRSViewerPath" value="Pages/ReportViewer.aspx"/>
    <add key="ReportLocation" value="ArvindLapserReports/"/>
    <add key="aspnet:MaxJsonDeserializerMembers" value="200000000"/>
  </appSettings>

</configuration>

在PC中它工作正常,但服务器得到以下错误。

enter image description here

你可以帮我吗?如何解决这个问题。

1 个答案:

答案 0 :(得分:1)

正如您的示例所预期的那样,scp -oProxyCommand="ssh -W %h:%p user1@server1" user2@server2:/path/to/remote.file local.file 元素中有两个httpRuntime元素,您应该将其更改为单个元素:

system.web

NB:配置文件约定只允许每个父元素具有特定名称的单个子元素。