Definindo a propriedade Url do serviço Web
Em qualquer ocasião em seus aplicativos do Microsoft.NET Framework, você poderá modificar a URL base do serviço Web Servidor de Relatório para o qual o seu aplicativo está direcionado no momento. Para fazer isso, basta definir a propriedade URL do objeto de serviço. Por exemplo:
Dim rs As New ReportingService2005()
rs.Credentials = System.Net.CredentialCache.DefaultCredentials
rs.Url = "http://<Server Name>/reportserver/ReportService2005.asmx"
ReportingService service = new ReportingService();
rs.Credentials = System.Net.CredentialCache.DefaultCredentials;
rs.Url = "http://<Server Name>/reportserver/ReportService2005.asmx";
O exemplo a seguir recupera uma definição de relatório de um servidor de relatório e usa essa definição para criar um relatório idêntico em um servidor de relatório diferente:
Imports System
Imports System.Web.Services.Protocols
Class Sample
Public Shared Sub Main()
Dim rs As New ReportingService2005()
rs.Credentials = System.Net.CredentialCache.DefaultCredentials
' Set the base Web service URL of the source server
rs.Url = "http://<Server Name>/reportserver/ReportService2005.asmx"
Dim reportName As String = "/SampleReports/Company Sales"
Dim reportDefinition As Byte() = Nothing
Try
' Get the report definition of a report on a source server
reportDefinition = rs.GetReportDefinition(reportName)
' Set the base Web service URL of the destination server
rs.Url = "http://<Server Name>/reportserver/ReportService2005.asmx"
' Create a copy of the report on the destination server
rs.CreateReport("Company Sales Copy", "/", False, reportDefinition, Nothing)
Catch e As SoapException
Console.WriteLine(e.Detail.InnerXml.ToString())
End Try
End Sub 'Main
End Class 'Sample
using System;
using System.Web.Services.Protocols;
class Sample
{
public static void Main()
{
ReportingService2005 rs = new ReportingService2005();
rs.Credentials = System.Net.CredentialCache.DefaultCredentials;
// Set the base Web service URL of the source server
rs.Url = "http://<Server Name>/reportserver/reportservice2005.asmx";
string reportName = "/SampleReports/Company Sales";
byte[] reportDefinition = null;
try
{
reportDefinition = rs.GetReportDefinition(reportName);
// Set the base Web service URL of the destination server
rs.Url = "http://<Server Name>/reportserver/ReportService2005.asmx";
// Create a copy of the report on the destination server
rs.CreateReport("Company Sales Copy", "/", false, reportDefinition, null);
}
catch (SoapException e)
{
Console.WriteLine(e.Detail.InnerXml.ToString());
}
}
}
Para obter mais informações sobre como criar o proxy de serviço Web inicial, consulte Criando o proxy de serviço Web.
Consulte também