2010-10-20 91 views
1

我想看到的是在我的WCF服務拋出的異常,但所有我從響應得到的是:輸出獲取調試

「服務器無法請求過程中因一個內部錯誤有關錯誤的更多信息,請在服務器上打開IncludeExceptionDetailInFaults(來自ServiceBehaviorAttribute或來自配置行爲),以便將異常信息發送回客戶端,或者根據Microsoft .NET打開跟蹤Framework 3.0 SDK文檔並檢查服務器跟蹤日誌。「

因爲我這樣做的「休息」的方式,我沒有這些選項在我的web.config。那麼,如何在使用WCF 4 REST模板時啓用「IncludeExceptionDetailInFaults」?

+0

你有沒有運氣得到這個工作? 我有服務工作,但POSTS失敗,除非我接受Stream對象,而不是DataContract。 – 2011-01-30 21:52:14

+0

爲了獲得這些錯誤,我只是簡單地將它們引入服務中,並將它們寫入本地文件。我永遠無法讓他們通過網絡瀏覽器回來並遠程顯示。 – 2011-02-01 19:47:14

回答

0

這就是我想出了:

下standardEndpoint在你的web.config,打開faultExceptionEnabled

<standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="true" faultExceptionEnabled="true"> 

然後,自定義消息顯示,在拋出的異常必須是一個FaultException異常。這裏有一個,我使用的例子:

if (!Enum.GetNames(typeof(Models.Games.GsfCurrencyPrice.Sections)).Contains(section)) throw new FaultException<ArgumentException>(new ArgumentException("Value must be one of the following: " + string.Join(", ", Enum.GetNames(typeof(Models.Games.GsfCurrencyPrice.Sections))), "section")); 

拋出時產生以下反應:

<Fault xmlns="http://schemas.microsoft.com/ws/2005/05/envelope/none"><Code><Value>Sender</Value></Code><Reason><Text xml:lang="en-US">The creator of this fault did not specify a Reason.</Text></Reason><Detail><ArgumentException xmlns="http://schemas.datacontract.org/2004/07/System" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:x="http://www.w3.org/2001/XMLSchema"><ClassName i:type="x:string" xmlns="">System.ArgumentException</ClassName><Message i:type="x:string" xmlns="">Value must be one of the following: Buy, Sell</Message><Data i:nil="true" xmlns=""/><InnerException i:nil="true" xmlns=""/><HelpURL i:nil="true" xmlns=""/><StackTraceString i:nil="true" xmlns=""/><RemoteStackTraceString i:nil="true" xmlns=""/><RemoteStackIndex i:type="x:int" xmlns="">0</RemoteStackIndex><ExceptionMethod i:nil="true" xmlns=""/><HResult i:type="x:int" xmlns="">-2147024809</HResult><Source i:nil="true" xmlns=""/><WatsonBuckets i:nil="true" xmlns=""/><ParamName i:type="x:string" xmlns="">section</ParamName></ArgumentException></Detail></Fault> 

希望這有助於。