2014-03-13 58 views
2

我在使用Web服務的mvc 4應用程序中收到以下消息:The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element在asmx問題中已超出傳入郵件的最大郵件大小限額(65536)

Web服務是一個asmx文件。我已經嘗試了一些在論壇 (如exending的maxReceivedMessageSize)中提到的解決方案,但我仍然得到了同樣的錯誤消息:

我的web配置:

<?xml version="1.0"?> 

<!-- 
    For more information on how to configure your ASP.NET application, please visit 
    http://go.microsoft.com/fwlink/?LinkId=169433 
    --> 

<configuration> 
    <system.web> 
     <compilation debug="true" targetFramework="4.5" /> 
     <httpRuntime targetFramework="4.5" /> 


    </system.web> 
    <system.webServer> 
    <directoryBrowse enabled="true"/> 
    </system.webServer> 

    <system.serviceModel> 
     <bindings> 
      <basicHttpBinding> 
       <binding name="ServiceSoap" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"/> 

      </basicHttpBinding> 
     </bindings> 
     <client> 
      <endpoint address="http://haifaws.haifanet.org.il/service.asmx" 
       binding="basicHttpBinding" bindingConfiguration="ServiceSoap" 
       contract="ServiceReference1.ServiceSoap" name="ServiceSoap" /> 
      <endpoint address="http://haifaws.haifanet.org.il/service2.asmx" 
       binding="basicHttpBinding" bindingConfiguration="Service2Soap" 
       contract="ServiceReference2.Service2Soap" name="Service2Soap" /> 

     </client> 
    </system.serviceModel> 
</configuration> 

非常感謝

回答

3

想通了......

在應用程序的Web配置:

保持在相同的命名在客戶端和結合蛋白g標籤

<system.serviceModel> 
    <bindings> 
     <basicHttpBinding> 
     <binding name="BasicHttpBinding_IService1" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647" /> 
     </basicHttpBinding> 
    </bindings> 
    <client> 
     <endpoint address="http://localhost:60971/Service1.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IService1" contract="ServiceClient.IService1" name="BasicHttpBinding_IService1" /> 
    </client> 
    </system.serviceModel> 
相關問題