1
我正在開發REST API。 下面是我的代碼:未在REST中收到自定義錯誤消息
在IService.vb
<OperationContract(),
WebGet(UriTemplate:="/DCU/{ClientID}",
RequestFormat:=WebMessageFormat.Xml,
ResponseFormat:=WebMessageFormat.Xml,
BodyStyle:=WebMessageBodyStyle.Bare)>
Function GetAllData(ByVal ClientID As String) As List(Of Data)
在Service.vb
Friend Class Service
Implements IService
Public Function GetAllData(ByVal intClientID As String) As System.Collections.Generic.List(Of Data) Implements ILightingGaleService.GetAllDCUs
Dim lstdata As New List(Of Data)()
If IsNumeric(intClientID) Then
Else
Throw New FaultException("Invalid Client ID")
End If
End Class
在Web.Config文件
<serviceDebug includeExceptionDetailInFaults="true"/>
我越來越
要求est錯誤:服務器在處理請求時遇到錯誤。查看服務器日誌獲取更多詳細信
當我在客戶端ID傳遞一個字符串值。儘管我已經實現了FaultExpcetion,但我從來沒有在POSTMAN或Web Client中收到「無效的客戶端ID」消息。
任何人都可以幫助我如何在POSTMAN或Web客戶端上獲得我的自定義消息嗎?