我基本上有这个简单的powershell脚本,它执行ssrs报告URL并将其保存到网络中。
它通常可以正常运行,但有时它会超时,但是当它出现时,仍然表示它成功了。我尝试了一些没有运气的东西。
我的脚本的简化版本如下所示:
-----------------------------
function RunReport($url,$outputfile) {
# // create a request
[Net.HttpWebRequest] $req = [Net.WebRequest]::create($url)
$req.Method = "GET"
$req.Timeout = 600000 # = 10 minutes
# // Set credentials
$req.UseDefaultCredentials = $true
#echo "Getting Response"
[Net.HttpWebResponse] $result = $req.GetResponse()
[IO.Stream] $stream = $result.GetResponseStream()
#[IO.StreamReader] $reader = New-Object IO.StreamReader($stream)
[System.IO.FileStream]$writeStream = New-Object System.IO.FileStream($outputfile, [System.IO.FileMode]::Create);
# // write to file
[byte[]]$buffer = new-object byte[] 4096
[int]$total = [int]$count = 0
do
{
$count = $stream.Read($buffer, 0, $buffer.Length)
$writeStream.Write($buffer, 0, $count)
} while ($count -gt 0)
$writeStream.Close()
#$stream.flush()
$stream.Close()
}
$url=...
$outputfile=...
IF(RunReport "$url" "$outputfile")
{Write-Host "Success"}
ELSE
{Write-Host "Failed"}
-------------------------------
我尝试过这样的东西没有运气:
RunReport "$url" "$outputfile"
If($?)
{Write-Host "Success"}
ELSE
{Write-Host "Failed"}
和
RunReport "$url" "$outputfile"
If($? -eq true)
{Write-Host "Success"}
ELSE
{Write-Host "Failed"}
我正在处理的超时错误是:
使用“0”参数调用“GetResponse”的异常:“操作已超时” 在C:\ data \ powershell \ script.ps1:9 char:49 + [Net.HttpWebResponse] $ result = $ req.GetResponse<<<< () + CategoryInfo:NotSpecified:(:) [],MethodInvocationException + FullyQualifiedErrorId:DotNetMethodException
您无法在空值表达式上调用方法。 在C:\ data \ powershell \ script.ps1:10 char:48 + [IO.Stream] $ stream = $ result.GetResponseStream<<<< () + CategoryInfo:InvalidOperation:(GetResponseStream:String)[],RuntimeException + FullyQualifiedErrorId:InvokeMethodOnNull
您无法在空值表达式上调用方法。 在C:\ data \ powershell \ script.ps1:18 char:38 + $ count = $ stream.Read<<<< ($ buffer,0,$ buffer.Length) + CategoryInfo:InvalidOperation :(读取:字符串)[],RuntimeException + FullyQualifiedErrorId:InvokeMethodOnNull
您无法在空值表达式上调用方法。 在C:\ data \ powershell \ script.ps1:23 char:14 + $ stream.Close<<<< () + CategoryInfo:InvalidOperation :( Close:String)[],RuntimeException + FullyQualifiedErrorId:InvokeMethodOnNull
非常感谢任何帮助。我认为这应该相当容易,只是没有正确的语法?感谢
答案 0 :(得分:1)
也许你可以使用try / catch来处理这个部分:
try {
[Net.HttpWebResponse] $result = $req.GetResponse()
}
catch {
return 1
}
您可以在怀疑代码没有按照预期执行的操作的其他地方应用相同的技术:
try {
[System.IO.FileStream]$writeStream = New-Object System.IO.FileStream($outputfile, [System.IO.FileMode]::Create);
}
catch {
return 1
}
一旦您发现问题发生的位置,您就可以查看异常,例如
catch { write-warning $_ ; exit 1 }
答案 1 :(得分:0)
'无法调用空值表达式上的方法'错误都是因为.GetResponse方法因超时而失败,导致$ result变量未分配。最简单的改变是将脚本的其余部分(在“$ result = $ req.GetResponse()”之后)放入“if($ result){}”块中。然后,您可以使用“then {}”块来进行错误处理。
更高级的方法是使用try {}和catch {}块来捕获实际的超时异常并正确处理它。
答案 2 :(得分:0)
你有两个问题:
超时(及其中的级联错误)
您的RunReport
函数不会返回任何内容。
对于#2,你无法测试不存在的东西。因此,让您的函数向调用者返回某种成功/失败指示符。
对于#1,当你调用GetResponse()
时,需要将它包装在try / catch块中,捕获异常,并退出函数,并将相应的状态返回给调用者。
您可能还想查看有关使用SOAP方法调用SSRS的this SO post。