2008 SSRS R2 report DOES NOT implement the latest class. INSTEAD THE REPORT Continues to call the older version of THE DLL

  • ClassLibrary1, Version=1.0.0.1, Culture=neutral, PublicKeyToken=null

    namespace ClassLibrary1

    // the newest code

    {

    public class Class1

    {

    public static string HELLO( string c)

    {

    // return " GOOD MONDAY MORNING to: "+c+".";

    return " GOOD <> Customer: .";// will eventually get page count in here for 1st 2nd

    //3rd 4th in between GOOD < > Customer

    }

    }

    }

    namespace ClassLibrary1

    //the older code

    {

    public class Class1

    {

    public static string HELLO( string c)

    {

    return " GOOD MONDAY MORNING to: "+c+".";

    }

    }

    }

  • have you tried to rebuilding the solution (not build solution)?

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

  • YES I DID BOTH

    so u see what simple technology i am trying to implement

    the SEPARATE C# class library was build DLL

    and i had to copy to the system32 folder

    but the report still is running the older version of the DLL

  • yeah i see what you are trying to do. here're some steps, might be extreme.

    1. delete the report from SSRS

    2. stop the ssrs service

    3. delete the dll

    4. start ssrs

    5. copy the dll over

    6. redeploy the report

    i hate SSRS like crazy and try to stay away from it when possible. the those steps doesn't work, i don't know 😀 .

    -----------------------------
    www.cbtr.net
    .: SQL Backup Admin Tool[/url] :.

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply