Posted on: 4/1/2015 7:08:07 PM | Views : 828

I have problem with ssrs.
When user wants to get the report for the first time it takes about 30-45 seconds to load ssrs, second time report takes about 5-10 seconds.
I read that ssrs recycles every 720 minutes by default so thats why it takes so long for the first time.
My question is: Can I use Global.asax to load ssrs in Application_start when the first user logs in so there is no waiting for the first report ??
I already tried something like this but it doesnt seem to work:
protected void Application_Start(object sender, EventArgs e) {             ServerReport s = new ServerReport();             s.ReportServerUrl = new Uri("reportserverurl");             s.ReportPath = "path_to/some_report";       &nbs ...

Go to the complete details ...