1

我有以下由 scvutil 生成的 app.config。我是 WCF 的新手,我一直在尝试调试和出错,并希望将 includeExceptionDetailInFaults=true 添加到此文件中,但没有得到任何结果。有人能告诉我要添加什么吗,我试过添加服务行为,但一直出错。

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding name="BasicHttpBinding_IService1" closeTimeout="00:01:00"
                openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
                maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
                useDefaultWebProxy="true">
                <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                    maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                <security mode="None">
                    <transport clientCredentialType="None" proxyCredentialType="None"
                        realm="" />
                    <message clientCredentialType="UserName" algorithmSuite="Default" />
                </security>
            </binding>
        </basicHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://localhost:8084/Service1.svc" binding="basicHttpBinding"
            bindingConfiguration="BasicHttpBinding_IService1" contract="IService1"
            name="BasicHttpBinding_IService1" />
    </client>
</system.serviceModel>

4

1 回答 1

1

includeExceptionDetailInFaults是一个服务器属性1,它并不真正适用于客户端。如果要设置该属性,则需要更改服务器端,而不是客户端(或由svcutil.


1该属性也可以在客户端上设置,但仅适用于双工合同,其中客户端充当服务。由于您使用basicHttpBinding的是 ,因此您的情况并非如此。

于 2012-09-28T16:09:56.880 回答