Skip to content
rb-cohen edited this page Dec 5, 2013 · 3 revisions

Initialisation

PHP-SSRS requires a few parameters on initialisation, the base URL of your reporting services installation (i.e. http://server/reportserver/), plus the username and password of a Reporting Services user with access to service and execution methods.

Example

<?php
require('library/SSRS/Report.php');

$ssrs = new SSRS_Report('http://server/reportserver/', array('username' => 'thomas', 'password' => 'secureme'));
$ssrs->listChildren('/Report Folder');
Clone this wiki locally