得到";413请求实体太大”;与WCF服务交谈时
本文关键字:WCF 服务 交谈 quot 请求 实体 得到 | 更新日期: 2023-09-27 18:20:41
我有一个WCF服务Server
,它接受来自控制台应用程序Client
的请求。当发送数据(相对较大)时,我得到以下异常:
System.ServiceModel.ProtocolException: The remote server returned an unexpected response: (413) Request Entity Too Large. ---> System.Net.WebException: The remote server returned an error: (413) Request Entity Too Large.
我以为我在配置文件中正确设置了限制,但显然我错了?
以下是Server
的app.config
:的相关部分
<system.serviceModel>
<services>
<service name="Services.Server">
<endpoint bindingConfiguration="LargeWeb" binding="webHttpBinding" contract="Interfaces.IServer" />
</service>
</services>
<bindings>
<webHttpBinding>
<binding name="LargeWeb" maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">
<readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
</binding>
</webHttpBinding>
</bindings>
</system.serviceModel>
这是Client
的app.config
:
<system.serviceModel>
<client>
<endpoint name="serverEndpoint" binding="webHttpBinding" bindingConfiguration="LargeWeb" contract="Interfaces.IServer" />
</client>
<bindings>
<webHttpBinding>
<binding name="LargeWeb" maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">
<readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
</binding>
</webHttpBinding>
</bindings>
</system.serviceModel>
最后,这就是Client
如何调用Server
的方法:
using (var cf = new WebChannelFactory<IServer>("serverEndpoint", serverAddress))
{
var channel = cf.CreateChannel();
channel.SomeMethod(some, arguments);
}
我做错了什么?
谢谢你的帮助。
问题是Client
驻留在UnitTest项目中,并且该问题是在运行单元测试时出现的。运行单元测试时,只考虑UnitTest项目的配置文件,因此需要将Server
配置的<service>
部分复制到其中。
通过这种方式,只使用一个配置文件:Server
和Client
都会为其配置读取它。
在那之后,一切都很顺利。