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中它工作正常,但服务器得到以下错误。
你可以帮我吗?如何解决这个问题。答案 0 :(得分:1)
正如您的示例所预期的那样,scp -oProxyCommand="ssh -W %h:%p user1@server1" user2@server2:/path/to/remote.file local.file
元素中有两个httpRuntime
元素,您应该将其更改为单个元素:
system.web
NB:配置文件约定只允许每个父元素具有特定名称的单个子元素。