CreateResource method

Paul 61 Reputation points
2022-07-28T15:56:44.037+00:00

I can't find the CreateResource method in ReportingService2010Soap web service. Anyone know what happen to it or if there is a new way to handle it in the 2010Soap web service. Thanks.

`
ReportingService.CreateResource("Test for SSRS", "/", False, definition, "application/xslx", Nothing)

SQL Server Reporting Services
SQL Server Reporting Services
A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
2,810 questions
.NET CLI
.NET CLI
A cross-platform toolchain for developing, building, running, and publishing .NET applications.
323 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Isabellaz-1451 3,616 Reputation points
    2022-07-29T02:55:05.177+00:00

    Hi @Paul

    Maybe you can use CreateCatalogItem function

    public ReportService2010.CatalogItem CreateCatalogItem (string ItemType, string Name, string Parent, bool Overwrite, byte[] Definition, ReportService2010.Property[] Properties, out ReportService2010.Warning[] Warnings);  
    

    Reference document :https://learn.microsoft.com/en-us/dotnet/api/reportservice2010.reportingservice2010.createcatalogitem?view=sqlserver-2016

    Best Regards,
    Isabella

    0 comments No comments