Reporting Services Localization

Discussion in 'General troubleshooting' started by andregio, Feb 28, 2011.

  1. I've implemented Reporting Services Reports Localization using an assembly that is used by the report and returns the corresponding text. Here is a tutorial project about that:
    http://www.codeproject.com/KB/reporting-services/SSRSReportLocalized.aspx

    The problem is the assembly cannot be installed in DiscountASP server because it's a shared hosting environment.
    Is there any alternative so ReportingServices can use the assembly without installing it? Or is there any alternative to Reports localization in a shared hosting environment?

    Thanks in advanced.
    Andrea
     
  2. dmitri

    dmitri DiscountASP.NET Staff

    You cannot install third-party assemblies in GAC of a web server or SSRS server. You can, however, upload those assemblies to the Bin folder of your web application hosted on the web server.
     
  3. I copied the assembly to bin folder but report deploy fails.

    Code:
    Deploying to https://rs2k801.discountasp.net/ReportServer
    Deploying data source '/terraitcoma/reports/AgroNETDatasource'.
    Deploying report '/terraitcoma/reports/BorradorSumasYSaldos'.
    Error rsProcessingError : Error while loading code module: ‘Globalizacion_Reportes, Version=1.0.0.0, Culture=neutral, PublicKeyToken=7ca0a9683eac85b7’. Details: Could not load file or assembly 'Globalizacion_Reportes, Version=1.0.0.0, Culture=neutral, PublicKeyToken=7ca0a9683eac85b7' or one of its dependencies. The system cannot find the file specified.
    How should I procede?
    Thanks
    Andrea.
     
  4. Bruce

    Bruce DiscountASP.NET Staff

    I am sorry for the confusion. It is not possible to use other assembly with Reporting Service.
     

Share This Page