【发布时间】:2019-10-07 18:50:30
【问题描述】:
您好,我在上传 (188KB 和 5 KB)的小文件时收到“请求实体太大”错误!。我添加了 maxAllowedContentLength ,maxBufferPoolSize 最大字符串内容长度, 最大数组长度, maxBytesPerRead 但仍然有错误 - 这是我的配置文件。
我添加的任何内容似乎都无法解决该错误。 我将上述参数的值设置为非常大的数字。
<?xml version="1.0"?>
<configuration>
<connectionStrings>
<remove name="LocalSqlServer"/>
<add name="LocalSqlServer" connectionString="Server=SHOUSHOUPC\SQL2016; Initial Catalog=db; User ID=sa; Password=123456; Connect Timeout=10000; pooling='true'; Max Pool Size=200"/>
</connectionStrings>
<appSettings>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true"/>
<add key="HOST" value=""/>
<add key="SID" value=""/>
<add key="UserID" value=""/>
<add key="Password" value=""/>
<add key="CC" value=""/>
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.6"/>
<httpRuntime targetFramework="4.5" enableVersionHeader="false" maxRequestLength="2097151"/>
<httpModules>
<add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web"/>
</httpModules>
<sessionState timeout="2"/>
</system.web>
<system.serviceModel>
<services>
<service behaviorConfiguration="ServiceBehaviour" name="MOH.MOHServices">
<endpoint behaviorConfiguration="webHttpServiceBehavior" binding="webHttpBinding"
contract="MOH.IMOHServices" />
</service>
</services>
<behaviors>
<endpointBehaviors>
<behavior name="webHttpServiceBehavior">
<!-- Important this is the behavior that makes a normal WCF service to REST based service-->
<webHttp/>
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior name="ServiceBehaviour">
<serviceAuthorization serviceAuthorizationManagerType="MOH.RestAuthorizationManager, MOH"/>
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="true"/>
<serviceThrottling maxConcurrentCalls="16" maxConcurrentInstances="1000" maxConcurrentSessions="10"/>
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<basicHttpBinding>
<binding maxBufferPoolSize="2147483647" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647" messageEncoding="Text">
<readerQuotas maxDepth="2000000" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
</binding>
</basicHttpBinding>
</bindings>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
</system.serviceModel>
<system.webServer>
<security>
<requestFiltering>
<verbs>
<add verb="OPTIONS" allowed="false"/>
<add verb="TRACE" allowed="false"/>
<add verb="HEAD" allowed="false"/>
</verbs>
<requestLimits maxAllowedContentLength="2000000000" maxUrl="4096" maxQueryString="9999999"/>
</requestFiltering>
</security>
<modules runAllManagedModulesForAllRequests="true">
<remove name="ApplicationInsightsWebTracking"/>
<add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler"/>
</modules>
<!--
To browse web app root directory during debugging, set the value below to true.
Set to false before deployment to avoid disclosing web app folder information.
-->
<directoryBrowse enabled="false"/>
<validation validateIntegratedModeConfiguration="false"/>
<httpProtocol>
<customHeaders>
<remove name="X-Powered-By"/>
<add name="X-XSS-Protection" value="1; mode=block"/>
<add name="Strict-Transport-Security" value="max-age=31536000; includeSubDomains; preload"/>
<add name="X-Frame-Options" value="DENY"/>
<add name="X-Content-Type-Options" value="nosniff"/>
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
服务的痕迹:
跟踪显示以下消息: 已超出传入邮件 (65536) 的最大邮件大小配额。要增加配额,请在适当的绑定元素上使用 MaxReceivedMessageSize 属性。
【问题讨论】:
-
尝试启用日志记录以查看服务的确切问题
-
@mahlatse 谢谢,但是怎么做呢?
-
网上应该有几篇文章,但最快的方法是右键单击您的 app.config 文件并选择编辑 WCF 配置并查找高级诊断部分,
-
@mahlatse 请检查跟踪
-
&检查导致您遇到的安全错误的原因
标签: c# rest web-services wcf