0

私のプログラムでは、画像をデータベースに保存しようとしています。例外が発生しています

プロトコル例外が処理されませんでした" リモート サーバーが予期しない応答を返しました (400) 不正な要求

Google で調べたところ、 の最大メッセージ長が変更されていることがわかりましたapp.config。私はそれを試しましたが、それでもうまくいきませんでした。これが私のapp.config

 <?xml version="1.0" encoding="utf-8" ?>
 <configuration>
     <system.serviceModel>
        <bindings>
         <basicHttpBinding>
           <binding name="BasicHttpBinding_IService1" closeTimeout="00:01:00"
              openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
              allowCookies="false" bypassProxyOnLocal="false"  
              hostNameComparisonMode="StrongWildcard"
              maxBufferSize="524288" maxBufferPoolSize="524288" maxReceivedMessageSize="524288"
              messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
           useDefaultWebProxy="true">
        <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
               maxBytesPerRead="4096" maxNameTableCharCount="16384" />
         <security mode="None">
         <transport clientCredentialType="None" proxyCredentialType="None" realm="" />
         <message clientCredentialType="UserName" algorithmSuite="Default" />
       </security>
      </binding>
    </basicHttpBinding>
    </bindings>
    <client>
       <endpoint address="http://localhost:55750/Service1.svc" binding="basicHttpBinding"
           bindingConfiguration="BasicHttpBinding_IService1" contract="PeerService.IService1"
          name="BasicHttpBinding_IService1" />
      </client>
     </system.serviceModel>
  </configuration>

修正方法を教えてください。私は本当にこの問題で立ち往生しています....

4

1 に答える 1

1

すべての値を上げてみてください:

<!-- Used by basic WCF Services -->
<binding maxBufferPoolSize="20000000" maxBufferSize="20000000" maxReceivedMessageSize="20000000">
    <readerQuotas maxDepth="32" maxStringContentLength="20000000" maxArrayLength="20000000" maxBytesPerRead="20000000" maxNameTableCharCount="20000000"/>
</binding>
于 2013-04-09T16:53:47.737 に答える