My favorites | Sign in
Project Home Downloads Wiki Issues Source
Search
for
QuickStart  
Brief introduction to using php-ssrs
Featured
Updated Mar 11, 2011 by arron.wo...@gmail.com

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

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

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

Sign in to add a comment
Powered by Google Project Hosting