使用PowerShell启动作业的SSRS报告



我有一个PowerShell GUI,它使用字符串数组输入从SSRS报告中提取一些值。然而,由于这会冻结GUI,我决定使用Start-Job来启动一个作业,该作业在ProgressBar保持在GUI中运行的同时提取SSRS报告。

SSRS报告只有一个输入参数。当我使用Start-Job使用多个值渲染报告时,无论输入值的数量如何,我都只得到第一条记录的结果。

Start-Job不返回所有输入值的记录的情况下,当本机调用时,相同的函数可以顺利工作。

这是代码:

$GetSSRSData = {
param([string[]]$InputArray)
$reportServerURI = "https://<SERVER>/ReportServer/ReportExecution2005.asmx?wsdl"
$RS = New-WebServiceProxy -Class 'RS' -NameSpace 'RS' -Uri $reportServerURI -UseDefaultCredential
$RS.Url = $reportServerURI
$deviceInfo = "<DeviceInfo><NoHeader>True</NoHeader></DeviceInfo>"
$extension = ""
$mimeType = ""
$encoding = ""
$warnings = $null
$streamIDs = $null
$reportPath = "/Folder/Report"
$Report = $RS.GetType().GetMethod("LoadReport").Invoke($RS, @($reportPath, $null))
# Report parameters are handled by creating an array of ParameterValue objects.
$parameters = @()
for($i = 0; $i -lt $InputArray.Count; $i++){
$parameters += New-Object RS.ParameterValue
$parameters[$i].Name  = "ParameterName"
$parameters[$i].Value = "$($InputArray[$i])"
}
# Add the parameter array to the service.  Note that this returns some
# information about the report that is about to be executed.
$RS.SetExecutionParameters($parameters, "en-us") > $null

# Render the report to a byte array. The first argument is the report format.
$RenderOutput = $RS.Render('CSV',
$deviceInfo,
[ref] $extension,
[ref] $mimeType,
[ref] $encoding,
[ref] $warnings,
[ref] $streamIDs
)
$output = [System.Text.Encoding]::ASCII.GetString($RenderOutput)
return $output
}
$InputArray = @('XXXXXX', 'YYYYYY', 'ZZZZZZ', 'ABCDEF')
<#
# The below code works perfectly
$Data = GetSSRSData -InputArray $InputArray
ConvertFrom-Csv -InputObject $Data
#>
$job = Start-Job -ScriptBlock $GetSSRSData -ArgumentList $InputArray
do { [System.Windows.Forms.Application]::DoEvents() } until ($job.State -ne "Running")
$Data = Receive-Job -Job $job
Write-Host $Data # returns only the first record

当我如下图所示更改底部时,我可以验证第一条记录输出后作业是否结束。

$RenderOutput = $RS.Render('CSV',
$deviceInfo,
[ref] $extension,
[ref] $mimeType,
[ref] $encoding,
[ref] $warnings,
[ref] $streamIDs
)
Write-Output $RenderOutput
}
$InputArray = @('XXXXXX', 'YYYYYY', 'ZZZZZZ', 'ABCDEF')
$job = Start-Job -ScriptBlock $GetSSRSData -ArgumentList $InputArray
do {[System.Text.Encoding]::ASCII.GetString($job.ChildJobs[0].Output)} until ($job.State -ne "Running")

我还尝试在"渲染"功能之后添加5秒的睡眠功能,但没有任何区别。

请注意,不能为每次输入重复调用"开始作业",因为每次函数调用都会花费大量时间,因此需要在一次调用中提取报告。

  • 为什么Render函数在作为作业启动时表现不同?函数是否提前结束,然后才能呈现其他记录
  • 有没有其他方法可以解决这个问题,比如运行空间或启动线程作业

参考:https://stackoverflow.com/a/63253699/4137016

答案在这里:Invoke命令中的ArgumentList参数不发送所有数组
这里可能有更好的答案:如何将数组作为参数传递给另一个脚本?

-ArgumentList $InputArray更改为-ArgumentList (,$InputArray)

$InputArray = @('XXXXXX', 'YYYYYY', 'ZZZZZZ', 'ABCDEF')
$job = Start-Job -ScriptBlock $GetSSRSData -ArgumentList (,$InputArray)

相关内容

  • 没有找到相关文章

最新更新