System.Net.WebException 的 Powershell 处理
Powershell handling of System.Net.WebException
几乎掌握了使用 Powershell Invoke-WebRequest 我现在开始尝试控制异常错误
在第一段代码中,我必须处理从 web 服务返回的异常。您可以看到返回了 400 代码以及消息描述和详细消息。
Try {
$what = Invoke-WebRequest -Uri $GOODURL -Method Post -Body $RequestBody -ContentType $ContentType
}
catch [System.Net.WebException] {
$Request = $_.Exception
Write-host "Exception caught: $Request"
$crap = ($_.Exception.Response.StatusCode.value__ ).ToString().Trim();
Write-Output $crap;
$crapMessage = ($_.Exception.Message).ToString().Trim();
Write-Output $crapMessage;
$crapdescription = ($_.ErrorDetails.Message).ToString().Trim();
Write-Output $crapdescription;
}
输出返回。不错!
Exception caught: System.Net.WebException: The remote server returned an error: (400) Bad Request.
at Microsoft.PowerShell.Commands.WebRequestPSCmdlet.GetResponse(WebRequest request)
at Microsoft.PowerShell.Commands.WebRequestPSCmdlet.ProcessRecord()
400
The remote server returned an error: (400) Bad Request.
Modus.queueFailed Could not queue message http://schemas.xmlsoap.org/soap/actor/next
太棒了,但是作为我测试的一部分,我想模拟连接错误,所以我给脚本提供了一个无效的 URI,上面代码中的错误处理立即崩溃了。
具体来说,无效的 URI 落在了“$_.Exception.Response.StatusCode.value__”和“$_.ErrorDetails.Message”上,大概是因为它们不存在于返回的 System.Net.WebException 对象中
所以,我把它们拿出来作为测试,果然它与无效的 URL 一起工作,如下所示
Try {
$what = Invoke-WebRequest -Uri $BADURL -Method Post -Body $RequestBody -ContentType $ContentType
}
catch [System.Net.WebException] {
$Request = $_.Exception
Write-host "Exception caught: $Request"
$crapMessage = ($_.Exception.Message).ToString().Trim();
Write-Output $crapMessage;
}
我明白了(也很好)
Exception caught: System.Net.WebException: The remote name could not be resolved: 'gateway.zzzzsonicmobile.com'
at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)
at System.Net.HttpWebRequest.GetRequestStream()
at Microsoft.PowerShell.Commands.WebRequestPSCmdlet.SetRequestContent(WebRequest request, String content)
at Microsoft.PowerShell.Commands.WebRequestPSCmdlet.ProcessRecord()
at System.Management.Automation.CommandProcessor.ProcessRecord()
The remote name could not be resolved: 'gateway.zzzzsonybile.com'
问题是,第一个示例从异常对象中获取了我想要的所有内容,但无法处理无效的 URL。第二个示例处理无效 URL(连接错误),但我不知道如何获取 400 StatusCode 和 ErrorDetails.Message
如果可能的话,我真的很想这样做。
有没有办法设置它来处理所有异常处理..?
任何帮助,非常感谢..!
我认为您可能只是遇到问题,因为您正试图在这些属性不存在时对它们执行 .ToString().Trim()
方法。我不确定执行这些方法是否会增加很多价值,所以我很想删除它们。
或者,您可以在它们周围放置 If
个方块,这样只有当它们具有值时才会输出:
If ($_.Exception.Response.StatusCode.value__) {
$crap = ($_.Exception.Response.StatusCode.value__ ).ToString().Trim();
Write-Output $crap;
}
If ($_.Exception.Message) {
$crapMessage = ($_.Exception.Message).ToString().Trim();
Write-Output $crapMessage;
}
几乎掌握了使用 Powershell Invoke-WebRequest 我现在开始尝试控制异常错误
在第一段代码中,我必须处理从 web 服务返回的异常。您可以看到返回了 400 代码以及消息描述和详细消息。
Try {
$what = Invoke-WebRequest -Uri $GOODURL -Method Post -Body $RequestBody -ContentType $ContentType
}
catch [System.Net.WebException] {
$Request = $_.Exception
Write-host "Exception caught: $Request"
$crap = ($_.Exception.Response.StatusCode.value__ ).ToString().Trim();
Write-Output $crap;
$crapMessage = ($_.Exception.Message).ToString().Trim();
Write-Output $crapMessage;
$crapdescription = ($_.ErrorDetails.Message).ToString().Trim();
Write-Output $crapdescription;
}
输出返回。不错!
Exception caught: System.Net.WebException: The remote server returned an error: (400) Bad Request.
at Microsoft.PowerShell.Commands.WebRequestPSCmdlet.GetResponse(WebRequest request)
at Microsoft.PowerShell.Commands.WebRequestPSCmdlet.ProcessRecord()
400
The remote server returned an error: (400) Bad Request.
Modus.queueFailed Could not queue message http://schemas.xmlsoap.org/soap/actor/next
太棒了,但是作为我测试的一部分,我想模拟连接错误,所以我给脚本提供了一个无效的 URI,上面代码中的错误处理立即崩溃了。
具体来说,无效的 URI 落在了“$_.Exception.Response.StatusCode.value__”和“$_.ErrorDetails.Message”上,大概是因为它们不存在于返回的 System.Net.WebException 对象中
所以,我把它们拿出来作为测试,果然它与无效的 URL 一起工作,如下所示
Try {
$what = Invoke-WebRequest -Uri $BADURL -Method Post -Body $RequestBody -ContentType $ContentType
}
catch [System.Net.WebException] {
$Request = $_.Exception
Write-host "Exception caught: $Request"
$crapMessage = ($_.Exception.Message).ToString().Trim();
Write-Output $crapMessage;
}
我明白了(也很好)
Exception caught: System.Net.WebException: The remote name could not be resolved: 'gateway.zzzzsonicmobile.com'
at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)
at System.Net.HttpWebRequest.GetRequestStream()
at Microsoft.PowerShell.Commands.WebRequestPSCmdlet.SetRequestContent(WebRequest request, String content)
at Microsoft.PowerShell.Commands.WebRequestPSCmdlet.ProcessRecord()
at System.Management.Automation.CommandProcessor.ProcessRecord()
The remote name could not be resolved: 'gateway.zzzzsonybile.com'
问题是,第一个示例从异常对象中获取了我想要的所有内容,但无法处理无效的 URL。第二个示例处理无效 URL(连接错误),但我不知道如何获取 400 StatusCode 和 ErrorDetails.Message
如果可能的话,我真的很想这样做。
有没有办法设置它来处理所有异常处理..?
任何帮助,非常感谢..!
我认为您可能只是遇到问题,因为您正试图在这些属性不存在时对它们执行 .ToString().Trim()
方法。我不确定执行这些方法是否会增加很多价值,所以我很想删除它们。
或者,您可以在它们周围放置 If
个方块,这样只有当它们具有值时才会输出:
If ($_.Exception.Response.StatusCode.value__) {
$crap = ($_.Exception.Response.StatusCode.value__ ).ToString().Trim();
Write-Output $crap;
}
If ($_.Exception.Message) {
$crapMessage = ($_.Exception.Message).ToString().Trim();
Write-Output $crapMessage;
}