2

我想知道是否可以从 Perl 访问 SSRS SOAP API。我编写了一些使用 SSRS 的 C# 应用程序,但我的大部分代码库都是在 Unix 上运行的 Perl 中。我根本不熟悉 SOAP。

我想知道它是否可能,如果是,我想知道如何编写以下示例 int perl:

http://msdn.microsoft.com/en-us/library/reportservice2010.reportingservice2010.listchildren.aspx

谢谢

编辑:

我只是在寻找如何连接和执行功能的示例。本质上,我正在研究如何在 Perl 中编写以下(简化的)C# 代码?

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);
}
4

1 回答 1

1

我知道两种方法

  1. SOAP::Lite https://github.com/mishin/presentation/blob/master/4_trans/02_SOAP_Lite.pl

  2. XMLRPC::Lite https://github.com/mishin/presentation/blob/master/4_trans/03_2_XMLRPC_Lite.pl

于 2012-07-25T11:09:36.650 回答