Reputation: 13
I'm new to working with SSRS, and I have a problem in which I am deploying SSRS setup into a load balance environment with strict requirements that sessions cannot be used. I just need to know the options on how best to do this, any help on a starting point would be much appreciated.
-Thanks
Upvotes: 1
Views: 2367
Reputation: 39777
You can turn SessionState
Off in the project web.config, but if you do so, you have to enable ReportViewerServerConnection
:
Check http://msdn.microsoft.com/en-us/library/ms251661.aspx for more details.
Upvotes: 1