summaryrefslogtreecommitdiffstats
path: root/samples/LoadReport.php
blob: 08061db6d858754062145e67886230905f17aa78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

require(__DIR__ . '/../vendor/autoload.php');

$options = array(
    'username' => 'testing',
    'password' => 'password'
);

$ssrs = new \SSRS\Report('http://localhost/reportserver/', $options);
$result = $ssrs->loadReport('/Reports/Reference_Report');

$ssrs->setSessionId($result->executionInfo->ExecutionID);

$output = $ssrs->render('HTML4.0'); // PDF | XML | CSV
echo $output;