2012-09-28 66 views
1

我有以下由scvutil生成的app.config。我是WCF的新手,我一直在嘗試調試和錯誤,並希望將includeExceptionDetailInFaults = true添加到此文件,但沒有獲得任何地方。有人可以告訴我要添加什麼,我嘗試添加servicebehaviors,但不斷收到錯誤。如何將includeExceptionDetailInFaults添加到由scvutil生成的app.config

<?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> 

回答

1

includeExceptionDetailInFaults服務器財產,它並沒有真正應用在客戶端上。如果要設置該屬性,你需要改變服務器端,而不是客戶端(或由svcutil產生什麼的。


該屬性可以在客戶端進行設置,以及,但僅限於雙工合同,該客戶端作爲一個服務。由於您使用basicHttpBinding,這是不適合你的情況。

+0

感謝您的快速回復,我在服務器上設置和它的工作原理 –

相關問題