Web アプリケーションの 1 つに添付機能を実装しようとしています。三層になっています。プレゼンテーション、ビジネス、およびサービス レイヤーで、添付ファイル フィールドのデータベースに BLOB データ型があります。ビジネス レイヤーからサービス レイヤーにデータを転送中にエラーが発生します。
The remote server returned an unexpected response: (400) Bad Request
配列の長さ、バッファサイズなどを増やしてみても解決策が見つかりません...しかし、まだエラーが発生しています...誰かが私を助けてください....私は5日以来この問題に直面しています.... .
これが私のweb.config設定です
<binding name="BasicHttpBinding_ITestService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="83886080" maxBufferPoolSize="83886080" maxReceivedMessageSize="83886080"
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>