pmaj
pmaj

Reputation: 51

Is there a way to check, from C#, if SSRS Reporting Server is running?

I am trying to check whether a SSRS Report Server is running before I generate the reports for my website. I am trying to stay away from using a try catch in this situation.

Upvotes: 3

Views: 1799

Answers (1)

PeonProgrammer
PeonProgrammer

Reputation: 1535

There are two modes to deploy a SSRS report. One is through sharepoint and one is through native.

If you're NOT deployed through sharepoint, you could check if a SSRS server is running by sending an http request and examining the response.

I got this information from : https://msdn.microsoft.com/en-us/library/ms143773.aspx#bkmk_nativemode

and

https://msdn.microsoft.com/en-us/library/ms178811.aspx

Upvotes: 2

Related Questions