all groups > sql server reporting services > november 2005 >
You're in the

sql server reporting services

group:

How to identify which edition im i running?


How to identify which edition im i running? Oren Zippori
11/13/2005 12:00:00 AM
sql server reporting services:
Good day,
I would like to identify which EDITION of reporting services im running,
enterprise or standard. I know that you can check the version by going to
http://localhost/reportserver. but I want to know the edition.

thanks in advance
Oren Zippori

Re: How to identify which edition im i running? Bjorn
11/14/2005 1:43:34 AM
Hi Oren,

The edition you are running is similar to the edition of SQL Server ou
are running it on.
I=2Ee., if you are running SQL Server Standard Edition, then your
Reporting Services Edition is Standard.

Kind regards,

Bj=F6rn
Re: How to identify which edition im i running? Chris Baldwin
11/14/2005 7:53:42 AM
Hello Oren,

You can do it programmatically like this using the webservice API:

ReportingService2005 rs = new ReportingService2005();
rs.Credentials = System.Net.CredentialCache.DefaultCredentials;
rs.ServerInfoHeaderValue = new ServerInfoHeader();
rs.ListChildren("/", false);
Console.WriteLine(rs.ServerInfoHeaderValue.ReportServerVersion);
Console.WriteLine(rs.ServerInfoHeaderValue.ReportServerEdition);
Console.WriteLine(rs.ServerInfoHeaderValue.ReportServerVersionNumber);

-Chris


[quoted text, click to view]


AddThis Social Bookmark Button