1

我正在使用 WSHttpBinding 开发 WCF 文件上传器。我希望上传大约 10 mb 的文件(不是在那个游戏上玩精确的游戏,但不会让文件变得更大)。一切都很好,最高可达 5mb。之后,我开始收到 HTTP 500 错误。

我的绑定设置如下:

wsBinding.ReaderQuotas = System.Xml.XmlDictionaryReaderQuotas.Max;
wsBinding.MaxBufferPoolSize = 52428800;
wsBinding.MaxReceivedMessageSize = 13631488;
wsBinding.ReceiveTimeout = new TimeSpan(0, 3, 0);

我的 httpRuntime maxRequestLength 在 web.config 中是 20480kb

我的请求如下所示:

POST http://mywebsite/FileUploader.svc HTTP/1.1
Accept-Encoding: gzip,deflate
Content-Type: application/soap+xml;charset=UTF-8;action="http://namespace/UploadPhoto"
Content-Length: 13979476
Host: mywebsite
Connection: Keep-Alive
User-Agent: Apache-HttpClient/4.1.1 (java 1.5)

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:fil="http://namespace">
   <soap:Header xmlns:wsa="http://www.w3.org/2005/08/addressing"><wsa:Action>http://namespace/IFileUploaderSvc/UploadPhoto</wsa:Action></soap:Header>
   <soap:Body>
      <fil:UploadPhoto>
         <fil:AuthorizationToken>(Password)</fil:AuthorizationToken>
         <fil:ProgramName>AProgram</fil:ProgramName>
         <fil:FileName>bigolefile.jpg</fil:FileName>
         <fil:File>(base 64 file data)</fil:File>
      </fil:UploadPhoto>
   </soap:Body>
</soap:Envelope>

我使用 WSHttpBinding 而不是 WebHttpBinding 非常重要。在此先感谢,安德鲁

4

1 回答 1

1

尝试将 TextMessageEncodingBindingElement 或 MtomMessageEncodingBindingElement 用于 WSHttpBinding 绑定中的 messageEncoding 属性。

例如,以下代码段使用 TextMessageEncodingBindingElement。messageEncoding="文本" http://msdn.microsoft.com/en-us/library/ms733742.aspx

  <wsHttpBinding>
    <binding name="wsHttpWithMessageSecurity" messageEncoding="Text"
             closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00"
             sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
                maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"  textEncoding="utf-8"
                useDefaultWebProxy="true"
                allowCookies="false">

      <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" 
                    maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
      <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
于 2012-05-08T08:05:56.923 回答