gpt4 book ai didi

.net - 如何配置 WCF Web 角色的消息大小(当前获取 HTTP 错误代码 500)

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

谢谢大家!

我们只需将绑定(bind)元素名称从“basicHttpBinding”更改为“webHttpBinding”就可以解决这个问题。

傻了,我知道..

<小时/>

你好,

我正在尝试使用 WCF 实现一个 Web 角色,它将接收 JSON 对象并将它们存储在 Azure 存储中。在集成测试期间,我收到了 400 错误代码。然后我发现 WCF 的消息大小非常小(~65535),我需要将其配置得更大。每当我尝试向我的服务发布 HTTP 请求时,我当前使用的配置都会导致 500 错误代码(该请求永远不会到达我的代码)。

我正在使用的 Web.config 文件如下所示:

<?xml version="1.0" encoding="UTF-8"?>

<system.web>

<compilation debug="true" targetFramework="4.0" />

</system.web>

<system.serviceModel>

<diagnostics>

<messageLogging logEntireMessage="true" logMalformedMessages="true" logMessagesAtServiceLevel="true" logMessagesAtTransportLevel="true" maxSizeOfMessageToLog="5000000" />

<endToEndTracing activityTracing="false" />

</diagnostics>

<services>

<service name="MyWebRole.RequestHandler" behaviorConfiguration="RequestHandlerbehavior">

<endpoint address="http://localhost:9001/" binding="basicHttpBinding" bindingConfiguration="conf" name="MyDefaultEndpoint"

contract="MyWebRole.IRequestHandler" />

</service>

</services>

<bindings>

<basicHttpBinding>

<binding name="conf" maxBufferSize="5000000" maxReceivedMessageSize="5000000" useDefaultWebProxy="true">

<readerQuotas maxDepth="5000000" maxStringContentLength="5000000" maxArrayLength="5000000" maxBytesPerRead="5000000" maxNameTableCharCount="5000000" />

</binding>

</basicHttpBinding>

</bindings>

<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />

<behaviors>

<serviceBehaviors>

<behavior name="RequestHandlerbehavior">

<serviceMetadata httpGetEnabled="true" />

<serviceDebug includeExceptionDetailInFaults="true" />

</behavior>

</serviceBehaviors>

</behaviors>

</system.serviceModel>

<system.webServer>

<modules runAllManagedModulesForAllRequests="true" />

</system.webServer>

</configuration>

您能帮我将请求发送到我的 WCF 服务吗?

谢谢!

最佳答案

您是否尝试过增加绑定(bind)上的消息接收大小?比如...

maxReceivedMessageSize="1048576"

关于.net - 如何配置 WCF Web 角色的消息大小(当前获取 HTTP 错误代码 500),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4447841/

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