gpt4 book ai didi

WCF 服务绑定(bind)采用默认值而不是自定义值

转载 作者:行者123 更新时间:2023-12-02 08:59:57 24 4
gpt4 key购买 nike

我已经构建了一个 APi,它是一个 WCF 服务。在服务的 web.config 中,我指定了一个自定义 bindong,如下所示:

<bindings>
<wsHttpBinding>
<binding name="FxBinding"
maxBufferPoolSize="2147483647"
maxReceivedMessageSize="2147483647"
closeTimeout="00:20:00"
openTimeout="00:20:00"
receiveTimeout="00:20:00"
sendTimeout="00:20:00"
messageEncoding="Mtom">
<readerQuotas
maxDepth="64"
maxStringContentLength="2147483647"
maxArrayLength="2147483647"
maxBytesPerRead="4096"
maxNameTableCharCount="16384" />
<security mode="None"></security>
</binding>
</wsHttpBinding>
</bindings>

告诉配置使用我通过在端点标记中设置“name”属性指定的绑定(bind):

<services>
<service name="Dba.Admanager.Api.ListingServiceContract" behaviorConfiguration="Dba.Admanager.Api.ListingServiceContractBehavior">
<endpoint address="" binding="wsHttpBinding" name="FxBinding" contract="Dba.Admanager.ApplicationController.Api.IListingServiceContract">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>

看。当我在 VS2008 中创建对该服务的 Web 引用时,会生成 app.config。在此 app.config 中使用的绑定(bind)应该是上面指定的绑定(bind)。但在 app.config 中有一个默认绑定(bind),例如“maxArrayLength”中的默认值。

<bindings>
<wsHttpBinding>
<binding name="FxBinding" closeTimeout="00:01:00" openTimeout="00:01:00"
receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false"
transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="Message">
<transport clientCredentialType="Windows" proxyCredentialType="None"
realm="">
<extendedProtectionPolicy policyEnforcement="Never" />
</transport>
<message clientCredentialType="Windows" negotiateServiceCredential="true"
algorithmSuite="Default" establishSecurityContext="true" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://l-aar-00424012.corp.ebay.com/Admanager.Api/ListingServiceContract.svc"
binding="wsHttpBinding" bindingConfiguration="FxBinding" contract="WCFListingServiceContract.IListingServiceContract"
name="FxBinding">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</client>

我可以看到客户端正在使用 FxBinding 配置,但为什么所有值都是默认值,我不明白。有人可以提供有关如何自定义绑定(bind)值并使其反射(reflect)在“客户端”部分的线索吗?

如果我更改 app.config 中的值手册,我会得到所需的效果,但每次更新 webreference 时,VS 只是添加一个具有默认值的新绑定(bind)。

最佳答案

maxArrayLength 这样的信息不是 WSDL 的一部分,因此客户端无法推断它,只能采用默认值。

关于WCF 服务绑定(bind)采用默认值而不是自定义值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2056675/

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