gpt4 book ai didi

wcf - Azure WCF Webole 错误 : The remote server returned an unexpected response: (413) Request Entity Too Large

转载 作者:行者123 更新时间:2023-12-04 05:12:20 24 4
gpt4 key购买 nike

我有一个 Windows Azure webrole (WCF) 网络服务。我有一种方法可以将文件上传到 Window Azure blob 存储。这很有效,但仅适用于小 (< 30 Kb) 文件。

<OperationContract()>
Function UploadFileV1(ByVal ApplicationSessionGuid As String,
ByVal UserSessionGuid As String,
ByVal FileContent As Byte(),
ByVal FileName As String,
ByVal FileDescription As String,
ByVal FileDisplayName As String,
ByVal IsPublic As Boolean) As DataSet

如果这部分: ByVal FileContent As Byte()大于 30 Kb,然后当我调用网络服务时出现错误。

远程服务器返回意外响应:(413) 请求实体太大。

如果我通过调试在本地运行此 web 服务,并且我在该方法上设置了断点,它甚至不会到达那里。

我发现了一些类似的主题,但它们不在 Windows Azure 上下文中。

WCF 项目中的 web.config 非常空。

最佳答案

在 (Windows Azure) WCF webrole webservice 的 web.config 的 system.serviceModel 中,您可以添加 basicHTTPBinding。我犯的错误是尝试添加名称,但没有名称似乎是默认值。现在它就像一个魅力。希望其他人遇到这个问题并在这里找到他的答案。我花了四个小时。

<bindings>
<basicHttpBinding>
<binding maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" transferMode="Streamed" >
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
<security mode="None">
</security>
</binding>
</basicHttpBinding>
</bindings>

关于wcf - Azure WCF Webole 错误 : The remote server returned an unexpected response: (413) Request Entity Too Large,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14755529/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com