0

私は Web ベースの SSRS エディターに取り組んでいます。データベースからCATALOGテーブルからSSRSスキーマにアクセスし、HTMLに変換するパーサーの開発に成功しました。

ここから、ユーザーはレポートを変更して変更を送信できます。再びパーサーが HTML を受け取り、それを Desire の結果に変換します。

しかし、ReportViewer でそのレポートにアクセスすると、まだ古いレポートが表示されます。

また、レポート管理 URLからレポートをダウンロードすると、アプリケーションから行った変更が表示されます。

Microsoft が RDL も物理フォーマットで保存しているかどうかは疑問です。

助けてください..

4

1 に答える 1

0

最後に私は解決策を得ました。以前、 CatalogテーブルのContent列を直接更新していて、変更が DB で更新されましたが、実際のライブ レポートには反映されていませんでした。

いくつかの検索の後、私はこれを見つけまし。コードを介してレポートを展開する方法とそれは完了です。

class Sample {
static void Main(string[] args)
{
    ReportingService2010 rs = new ReportingService2010();
    rs.Url = "http://<Server Name>" +
        "/_vti_bin/ReportServer/ReportService2010.asmx";
    rs.Credentials = 
        System.Net.CredentialCache.DefaultCredentials;

    Byte[] definition = null;
    Warning[] warnings = null;
    string name = "MyReport.rdl";

    try
    {
        FileStream stream = File.OpenRead("MyReport.rdl");
        definition = new Byte[stream.Length];
        stream.Read(definition, 0, (int)stream.Length);
        stream.Close();
    }
    catch (IOException e)
    {
        Console.WriteLine(e.Message);
    }

    try
    {
        string parent = "http://<Server Name>/Docs/Documents/";
        CatalogItem report = rs.CreateCatalogItem("Report", name, parent,
                    false, definition, null, out warnings);

        if (warnings != null)
        {
            foreach (Warning warning in warnings)
            {
                Console.WriteLine(warning.Message);
            }
        }

        else
            Console.WriteLine("Report: {0} created successfully " +
                              " with no warnings", name);
    }
    catch (SoapException e)
    {
        Console.WriteLine(e.Detail.InnerXml.ToString());
    }
} }
于 2015-05-04T04:23:46.237 に答える