WCF,已超出传入邮件的最大邮件大小配额 (65536)
Posted
技术标签:
【中文标题】WCF,已超出传入邮件的最大邮件大小配额 (65536)【英文标题】:WCF, The maximum message size quota for incoming messages (65536) has been exceeded 【发布时间】:2015-09-15 20:33:30 【问题描述】:这个问题可能已经有了答案,但没有一个对我有用。我对 WCF 很陌生,这是我正在工作的第一个项目。
我尝试过的答案:
The maximum message size quota for incoming messages (65536) has been exceeded
Wcf-The maximum message size quota for incoming messages (65536) has been exceeded?
WCF Error - The maximum message size quota for incoming messages (65536) has been exceeded
我创建了一个项目并在本地机器上成功运行。当我在 IIS 上发布它并在 Windows 窗体应用程序下运行它时,我收到此错误:
已超出传入邮件的最大邮件大小配额 (65536)。要增加配额,请在适当的绑定元素上使用 MaxReceivedMessageSize 属性。
这是我的服务器 (WCF) web.config
:
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="connectionString" value="data source=localhost; initial catalog=TWO; integrated security=SSPI"/>
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<pages validateRequest="false" />
<httpRuntime requestValidationMode="2.0" />
</system.web>
<system.serviceModel>
<services>
<service name="Service1.IService1">
<endpoint
address=""
binding="basicHttpBinding"
contract="Service1.IService1">
</endpoint>
<host>
<baseAddresses>
<add baseAddress="http://localhost:50935/Service1.svc"/>
</baseAddresses>
</host>
</service>
</services>
<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>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="behaviorGPLineItemsService">
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
</behavior>
</endpointBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
这是我的客户(Winforms)app.config
:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<httpRuntime maxRequestLength="2147483647"/>
</system.web>
<system.serviceModel>
<client>
<endpoint address="http://192.168.0.60/Service1.svc" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_IService1" contract="GPLineItemsService.IService1"
name="BasicHttpBinding_IService1" />
</client>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IService1" maxBufferPoolSize="2147483647" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647" messageEncoding="Text">
<readerQuotas maxDepth="2000000" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
</binding>
</basicHttpBinding>
</bindings>
<behaviors>
<endpointBehaviors>
<behavior name="GpWebServiceBehavior">
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
</behavior>
</endpointBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
这是我用来调用服务的客户端代码。
EndpointAddress address = new EndpointAddress(GPWCFEndPointAddress);
BasicHttpBinding binding = new BasicHttpBinding();
GPLineItemsService.Service1Client gpService = new GPLineItemsService.Service1Client(binding, address);
GPLineItemsService.GPItems gpItems = new GPLineItemsService.GPItems();
gpItems = gpService.InsertUpdateLineItemsInGP(dtGPItems);
opResult = gpItems.ErrorGPItems;
您的所有帮助将不胜感激。谢谢。
【问题讨论】:
***.com/questions/2908857/…? 这是我尝试的第一个答案。不幸的是没有工作。 :-( @GrantWinney:谢谢,我已经尝试过,并更新了问题中的客户端 app.config。它没有工作。 :-( 您要传输的数据有多大? @DavidG 大约 300~500kb。谢谢。 【参考方案1】:您是在代码中创建自己的绑定,而不是使用配置文件中指定的绑定,因此您在应用程序配置文件中所做的任何更改都会被忽略。
您可以像这样在代码中设置maxReceivedMessageSize
值:
binding.MaxReceivedMessageSize = 2147483647;
这会让你的完整代码阻塞:
EndpointAddress address = new EndpointAddress(GPWCFEndPointAddress);
BasicHttpBinding binding = new BasicHttpBinding();
binding.MaxReceivedMessageSize = 2147483647;
GPLineItemsService.Service1Client gpService =
new GPLineItemsService.Service1Client(binding, address);
GPLineItemsService.GPItems gpItems = new GPLineItemsService.GPItems();
gpItems = gpService.InsertUpdateLineItemsInGP(dtGPItems);
opResult = gpItems.ErrorGPItems;
或者,您可以使用配置文件中指定的绑定和端点:
GPLineItemsService.Service1Client gpService = new GPLineItemsService.Service1Client();
GPLineItemsService.GPItems gpItems = new GPLineItemsService.GPItems();
gpItems = gpService.InsertUpdateLineItemsInGP(dtGPItems);
opResult = gpItems.ErrorGPItems;
【讨论】:
如果我使用替代解决方案,我收到此错误:“在 ServiceModel 客户端配置部分中找不到引用合同 'GPLineItemsService.IService1' 的默认端点元素。这可能是因为没有配置文件为您的应用程序找到了,或者因为在客户端元素中找不到与此合同匹配的端点元素。” 这个binding.MaxReceivedMessageSize = 2147483647;
就像一个魅力。谢谢。请告诉我如何使替代解决方案起作用?
替代解决方案的错误是因为调用类库中的服务并从另一个项目调用类库。在这种情况下,我需要将 WS 配置设置包含到主项目 app.config(如果它是一个 winapp)或 web.config(如果它是一个 Web 应用程序)中。【参考方案2】:
这应该是问题<httpRuntime maxRequestLength="32768"/>
尝试设置一个更大的值。
【讨论】:
谢谢,我试过了,更新了客户端app.config中的maxRequestLength
,也更新了问题。它没有工作。 :-(以上是关于WCF,已超出传入邮件的最大邮件大小配额 (65536)的主要内容,如果未能解决你的问题,请参考以下文章
WCF MaxReceivedMessageSize:超出最大邮件大小配额
超过 (65536) 时如何增加 WCF 服务的传入消息的最大消息大小配额