I would like to know if its possible to access the SSRS SOAP API from Perl. I have written some C# applications that use SSRS, but most of my code base is in Perl running on Unix. I am not really familiar with SOAP at all.
I would like to know if its even possible, and if it is, I would like to know how to code up the following example int perl:
http://msdn.microsoft.com/en-us/library/reportservice2010.reportingservice2010.listchildren.aspx
Thanks
EDIT:
I am only looking for an example of how to connect and execute a function. In essence, I am looking on how to write the following(simplified) C# code in Perl?
ReportingService2010 rs = new ReportingService2010();
rs.Url = "<server adress here>";
rs.Credentials = System.Net.CredentialCache.DefaultCredentials;
CatalogItem[] items = rs.ListChildren("/", true);
foreach (CatalogItem i in items){
Console.WriteLine(i.Name);
}