HOW TO:在服務合約中宣告錯誤
在 Managed 程式碼中,發生錯誤狀況時會擲回例外狀況。不過在 Windows Communication Foundation (WCF) 應用程式中,藉由在服務合約中宣告 SOAP 錯誤,服務合約便可指定傳回用戶端的錯誤資訊。如需例外狀況和錯誤之間的關係概觀,請參閱指定與處理合約和服務中的錯誤。
建立會指定 SOAP 錯誤的服務合約
建立其中至少包含一個作業的服務合約。如需範例,請參閱 HOW TO:定義 Windows Communication Foundation 服務合約。
選取作業,這個作業會指定用戶端預期會收到通知的錯誤狀況。若要決定確實將 SOAP 錯誤傳回用戶端的錯誤狀況,請參閱指定與處理合約和服務中的錯誤。
將 System.ServiceModel.FaultContractAttribute 套用至選取的作業,並將可序列化的錯誤類型傳遞至建構函式。如需建立及使用可序列化類型的詳細資訊,請參閱指定服務合約中的資料傳輸。下列範例將示範如何指定會在
GreetingFault
中產生SampleMethod
作業。<OperationContract, FaultContractAttribute(GetType(GreetingFault), Action:="https://www.contoso.com/GreetingFault", ProtectionLevel:=ProtectionLevel.EncryptAndSign)> _ Function SampleMethod(ByVal msg As String) As String
對合約中會與用戶端溝通錯誤狀況的所有作業,重複步驟 2 和 3。
實作作業以傳回指定的 SOAP 錯誤
一旦作業已指定可傳回特定 SOAP 錯誤 (如之前的程序所示),以與呼叫應用程式溝通錯誤狀況,則下一個步驟就是實作該指定項目。
在作業中擲回指定的 SOAP 錯誤
在作業中發生 FaultContractAttribute 特定的錯誤狀況時,會擲回新的 System.ServiceModel.FaultException,其中指定的 SOAP 錯誤為型別參數。下列範例會示範如何在之前程序中顯示的
SampleMethod
中擲回GreetingFault
,以及如何在下列「程式碼」區段中擲回。Throw New FaultException(Of GreetingFault)(New GreetingFault("A Greeting error occurred. You said: " & msg)) End If
範例
下列程式碼範例會顯示對 SampleMethod
作業指定 GreetingFault
的單一作業實作。
Imports System
Imports System.Collections.Generic
Imports System.Net.Security
Imports System.Runtime.Serialization
Imports System.ServiceModel
Imports System.Text
Namespace Microsoft.WCF.Documentation
<ServiceContract(Namespace:="http://microsoft.wcf.documentation")> _
Public Interface ISampleService
<OperationContract, FaultContractAttribute(GetType(GreetingFault), Action:="https://www.contoso.com/GreetingFault", ProtectionLevel:=ProtectionLevel.EncryptAndSign)> _
Function SampleMethod(ByVal msg As String) As String
End Interface
<DataContractAttribute> _
Public Class GreetingFault
Private report As String
Public Sub New(ByVal message As String)
Me.report = message
End Sub
<DataMemberAttribute> _
Public Property Message() As String
Get
Return Me.report
End Get
Set(ByVal value As String)
Me.report = value
End Set
End Property
End Class
Friend Class SampleService
Implements ISampleService
#Region "ISampleService Members"
Public Function SampleMethod(ByVal msg As String) As String Implements ISampleService.SampleMethod
Console.WriteLine("Client said: " & msg)
' Generate intermittent error behavior.
Dim rand As New Random(DateTime.Now.Millisecond)
Dim test As Integer = rand.Next(5)
If test Mod 2 <> 0 Then
Return "The service greets you: " & msg
Else
Throw New FaultException(Of GreetingFault)(New GreetingFault("A Greeting error occurred. You said: " & msg))
End If
End Function
#End Region
End Class
End Namespace
另請參閱
參考
System.ServiceModel.FaultContractAttribute
System.ServiceModel.FaultException