我正在使用下面的绑定配置来上传我的服务,
<binding name="FileUploadSTSBinding">
<security authenticationMode="UserNameOverTransport"
requireDerivedKeys="false"
keyEntropyMode="ServerEntropy"
requireSecurityContextCancellation="false"
requireSignatureConfirmation="false">
</security>
<mtomMessageEncoding/>
<httpsTransport
transferMode="Streamed"
maxReceivedMessageSize="2147483647"/>
</binding>
但是使用此设置,我无法上传大于1mb的大文件,服务器响应是错误的请求。
有什么想法吗?
答案 0 :(得分:0)
您还需要设置maxRequestLength属性以使上传工作。它可以在这里找到web.config文件:
<configuration>
<system.web>
<httpRuntime>
检查IIS应用程序池标识是否有权写入临时文件夹以便能够临时存储传入数据。