我在 Wpf 应用程序中使用 wcf 服务。我必须保存一个 185 Kb 大小的图像。问题是每次,我尝试保存它我收到这条消息
远程服务器返回意外响应。(413) 请求的实体太大。
这是我在客户端的绑定
<binding name="BasicHttpBinding_IHRMEmployeeDef" maxBufferPoolSize="2147483646"
maxBufferSize="2147483646" maxReceivedMessageSize="2147483646" >
<readerQuotas maxDepth="525288" maxStringContentLength="525288" maxArrayLength="525288"
maxBytesPerRead="525288" maxNameTableCharCount="525288" />
</binding>
和
<endpoint address="http://localhost:1714/PAYROLL/Setup/HRMEmployeeDef.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IHRMEmployeeDef"
contract="Service_EmployeeDef.IHRMEmployeeDef" name="BasicHttpBinding_IHRMEmployeeDef" />
有什么建议么