Exemple #1
0
 public RdlFileIO(string urlEndpoint)
 {
     server = new ReportServerApi.ReportingService2010
     {
         Url = urlEndpoint + SoapApiConstants.SOAPApiExtension,
         UseDefaultCredentials = true
     };
 }
        protected UploadVerbBase(ILogger logger, string server)
        {
            this.fileService    = new FileService();
            this.channelFactory = new ReportingServiceChannelFactory();
            this.logger         = logger;

            var url = String.Format("http://{0}/reportserver/ReportService2010.asmx", server);

            channel = channelFactory.Create(url);
        }
Exemple #3
0
 public RdlFileIO(IReportingService2010 reportserver)
 {
     server = reportserver;
 }