0
每當我在構建對Powershell中的SOAP webservice端點的複雜webservice調用時發生任何錯誤時,我都會收到隱含的「SoapServerException」通用消息&。從Powershell調用時,如何從SoapServerException中檢索詳細信息?
例子:
Exception calling "GetListItems" with "7" argument(s): "Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown."
At line:1 char:1
+ $spws.GetListItems($listName, $viewName, $xmlQueryStringNodeConverted ...
我知道有更多的細節,這個錯誤,但在PowerShell中,我不能查看它們。我怎樣才能得到他們?
'$ Error [0] | fl -Force','$ Error [0] .Exception | fl -Force'和'$ Error [0] .Exception.InnerException | fl -Force'在發生異常之後? – PetSerAl
哈。這是,謝謝。不是我所期望的--PowerShell將額外的XML響應字段作爲額外的屬性添加到內部異常中。即$ Error [2] .Exception.InnerException.Detail.errorstring包含下面寫的字符串。將更新答案 – Coruscate5