WordPress.com
<#.SYNOPSISInstalls an RDL file to SQL Reporting Server using Web Service.DESCRIPTIONInstalls an RDL file to SQL Reporting Server using Web Service.NOTESFile Name: Install-SSRSRDL.ps1Author: Randy Aldrich PauloPrerequisite: SSRS 2008, Powershell 2.0.PARAMETER reportNameName of report wherein the rdl file will be save as in Report Server.If this is not specified it will get the name from the file (rdl) exluding the file extension..PARAMETER forceIf force is specified it will create the report folder if not existingand overwrites the report if existing..EXAMPLEInstall-SSRSRDL -webServiceUrl "http://[ServerName]/ReportServer/ReportService2005.asmx?WSDL" -rdlFile "C:\Report.rdl" -force.EXAMPLEInstall-SSRSRDL "http://[ServerName]/ReportServer/ReportService2005.asmx?WSDL" "C:\Report.rdl" -force.EXAMPLEInstall-SSRSRDL "http://[ServerName]/ReportServer/ReportService2005.asmx?WSDL" "C:\Report.rdl" -force -reportName "MyReport".EXAMPLEInstall-SSRSRDL "http://[ServerName]/ReportServer/ReportService2005.asmx?WSDL" "C:\Report.rdl" -force -reportFolder "Reports" -reportName "MyReport"#>function Install-SSRSRDL([Parameter(Position=0,Mandatory=$true)][Alias("url")][string]$webServiceUrl,[ValidateScript({Test-Path $_})][Parameter(Position=1,Mandatory=$true)][Alias("rdl")][string]$rdlFile,[Parameter(Position=2)][Alias("folder")][string]$reportFolder="",[Parameter(Position=3)][Alias("name")][string]$reportName="",[switch]$force){$ErrorActionPreference="Stop"#Create ProxyWrite-Host "[Install-SSRSRDL()] Creating Proxy, connecting to : $webServiceUrl"$ssrsProxy = New-WebServiceProxy -Uri $webServiceUrl -UseDefaultCredential$reportPath = "/"if($force){#Check if folder is existing, create if not foundtry{$ssrsProxy.CreateFolder($reportFolder, $reportPath, $null)Write-Host "[Install-SSRSRDL()] Created new folder: $reportFolder"}catch [System.Web.Services.Protocols.SoapException]{if ($_.Exception.Detail.InnerText -match "[^rsItemAlreadyExists400]"){Write-Host "[Install-SSRSRDL()] Folder: $reportFolder already exists."}else{$msg = "[Install-SSRSRDL()] Error creating folder: $reportFolder. Msg: '{0}'" -f $_.Exception.Detail.InnerTextWrite-Error $msg}}}#Set reportname if blank, default will be the filename without extensionif($reportName -eq "") { $reportName = [System.IO.Path]::GetFileNameWithoutExtension($rdlFile);}Write-Host "[Install-SSRSRDL()] Report name set to: $reportName"try{#Get Report content in bytesWrite-Host "[Install-SSRSRDL()] Getting file content (byte) of : $rdlFile"$byteArray = gc $rdlFile -encoding byte$msg = "[Install-SSRSRDL()] Total length: {0}" -f $byteArray.LengthWrite-Host $msg$reportFolder = $reportPath + $reportFolderWrite-Host "[Install-SSRSRDL()] Uploading to: $reportFolder"#Call Proxy to upload report$warnings = $ssrsProxy.CreateReport($reportName,$reportFolder,$force,$byteArray,$null)if($warnings.Length -eq $null) { Write-Host "[Install-SSRSRDL()] Upload Success." }else { $warnings | % { Write-Warning "[Install-SSRSRDL()] Warning: $_" }}}catch [System.IO.IOException]{$msg = "[Install-SSRSRDL()] Error while reading rdl file : '{0}', Message: '{1}'" -f $rdlFile, $_.Exception.MessageWrite-Error msg}catch [System.Web.Services.Protocols.SoapException]{$msg = "[Install-SSRSRDL()] Error while uploading rdl file : '{0}', Message: '{1}'" -f $rdlFile, $_.Exception.Detail.InnerTextWrite-Error $msg}} ................
................
In order to avoid copyright disputes, this page is only a partial summary.
To fulfill the demand for quickly locating and searching documents.
It is intelligent file search solution for home and business.
Related searches
- wordpress passing data between pages
- wordpress business templates
- wordpress rss feed not working
- wordpress jquery is not defined
- create wordpress blog
- wordpress roles editor
- wordpress full rss feed
- wordpress rss feed settings
- wordpress rss feed plugin
- wordpress display rss feed
- wordpress rss feed link
- wordpress rss feed to post