all groups > sql server reporting services > may 2006 >
You're in the

sql server reporting services

group:

SSRS Version


Re: SSRS Version Dan
5/11/2006 7:21:58 AM
sql server reporting services:
You can connect to http://<server>/ReportServer to get the version.

Reporting Services 2005 is version 9.00.1399.00.

I've seen the SQL 2000 version # elsewhere in the message boards.

Regards,

Dan
Re: SSRS Version Dan
5/11/2006 9:51:29 AM
There are examples of this in BOL. Examples below.

Regards,

Dan

Books online SSRS 2005
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/rswsref9/html/P_Microsoft_WSSUX_ReportingServicesWebService_RSManagementService2005_ReportingService2005_ServerInfoHeaderValue.htm
using System;

class Sample
{
static void Main()
{
// Create proxy object and set service credentials to integrated
ReportingService2005 rs = new ReportingService2005();
rs.Credentials = System.Net.CredentialCache.DefaultCredentials;

try
{
// Set the server info header
rs.ServerInfoHeaderValue = new ServerInfoHeader();

// Make a call to the Web service
CatalogItem[] items = rs.ListChildren("/", false);

// Output the server version and edition to the console
Console.WriteLine("Server version: {0}",
rs.ServerInfoHeaderValue.ReportServerVersionNumber);
Console.WriteLine("Server edition: {0}",
rs.ServerInfoHeaderValue.ReportServerEdition);
}

catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
}


Books online SSRS 2000
ms-help://MS.RSBOL80.1033/RSPROG/htm/rsp_ref_soapapi_service_lz_91x4.htm
using System;

class Sample
{
static void Main()
{
// Create proxy object and set service credentials to integrated
ReportingService rs = new ReportingService();
rs.Credentials = System.Net.CredentialCache.DefaultCredentials;

try
{
// Set the server info header
rs.ServerInfoHeaderValue = new ServerInfoHeader();

// Make a call to the Web service
CatalogItem[] items = rs.ListChildren("/", false);

// Output the server version and edition to the console
Console.WriteLine("Server version: {0}",
rs.ServerInfoHeaderValue.ReportServerVersionNumber);
Console.WriteLine("Server edition: {0}",
rs.ServerInfoHeaderValue.ReportServerEdition);
}

catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
}
SSRS Version Martin
5/11/2006 3:56:30 PM
is it possible to connect to a report server in order to get the version?

Re: SSRS Version Martin
5/11/2006 4:52:24 PM
i want to do that programmatically in order to switch between the two web
services.


"Dan" <daniel.lenz@qg.com> schrieb im Newsbeitrag
news:1147357318.462702.144720@j33g2000cwa.googlegroups.com...
[quoted text, click to view]

AddThis Social Bookmark Button