Manual integration of Aspose.Slides in SSRS 2012 SharePoint Integration Mode
Integrating Aspose.Slides with SSRS 2012 in SharePoint Integration Mode
The following steps show how to manually install Aspose.Slides for Reporting Services to integrate with with SSRS 2013 in SharePoint integration mode. The manual installation uses the DLL instead of the MSI installer. We recommend you install with the MSI installer because it performs all necessary installation and configuration automatically. However, if you fail to install with the MSI installer then the following helps you set up Aspose.Slides.
- Copy the Aspose.Slides.ReportingServices.dll from the Universal directory to the SharePonit RS bin directory. In our case it’s C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\WebServices\Reporting\bin
- Update Sharepoint’s rssrvpolicy.config file (from the C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\WebServices\Reporting directory) in the same way as described in the Aspose.Slides for Reporting Services manual installation article.
- Run the following script in Powershell, but replace rs_test with the name of your Reporting Services app name.
rs_test
Write-Host "Adding Aspose.Slides rendering extensions"
Add-PSSnapIn Microsoft.SharePoint.PowerShell
Write-Host "Get ReportinService Application Service"
$app = get-sprsserviceapplication
if ($app) {
$app | ForEach-Object {
$aspps = Get-SPRSExtension -Identity $_ -Name "ASPPS" -ExtensionType "Render"
$aspptx = Get-SPRSExtension -Identity $_ -Name "ASPPTX" -ExtensionType "Render"
$asppsx = Get-SPRSExtension -Identity $_ -Name "ASPPSX" -ExtensionType "Render"
$asppt = Get-SPRSExtension -Identity $_ -Name "ASPPT" -ExtensionType "Render"
if (-not $aspps ) { New-SPRSExtension -ExtensionType "Render" -Identity $_ -Name "ASPPS" -TypeName "Aspose.Slides.ReportingServices.PpsRenderer,Aspose.Slides.ReportingServices" }
if (-not $aspptx) { New-SPRSExtension -ExtensionType "Render" -Identity $_ -Name "ASPPTX" -TypeName "Aspose.Slides.ReportingServices.PptxRenderer,Aspose.Slides.ReportingServices"}
if (-not $asppsx ) { New-SPRSExtension -ExtensionType "Render" -Identity $_ -Name "ASPPSX" -TypeName "Aspose.Slides.ReportingServices.PpsxRenderer,Aspose.Slides.ReportingServices"}
if (-not $asppt ) { New-SPRSExtension -ExtensionType "Render" -Identity $_ -Name "ASPPT" -TypeName "Aspose.Slides.ReportingServices.PptRenderer,Aspose.Slides.ReportingServices"}
}
}
For more information about Reporting Service cmdlets for SharePoint, read this Microsoft article where you can find additional info about Reporting Service cmdlets for Sharepoint.