Disclaimer: I know very little about Microsoft Reporting Services and Analysis Services. So go easy on me! ;)
We have an ASP.NET MVC website, it allows the user to choose their language by clicking a link at the top of every page. This link essentially sets a cookie that indicates the user's language choice. The ASP.NET MVC code looks for this cookie, and displays pages in the users choice.
The problem is getting the reports to do the same.
The reports are querying a cube on the Analysis Server. The cube can handle its own translations. (I believe that it uses the Culture on the current thread to determine which language to use)
We are using the Microsoft.ReportViewer.WebForms.ReportViewer
to display the report on the webpage.
How can the report tell the cube what language to use?
Again, I know very little about these two services, so if we are approaching it wrong, if anyone has any links to resources that would be great.