Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
205
Error in migration from 2011 to 2014 vol 2 suite
posted

I'm porting all the site from the old dll to the new. For example from UltraWebGrid to WebDataGrid and so on.

The problem arise when I Add the new dll: from Infragistics4.WebUI.UltraWebChart.v11.1.dll to Infragistics4.WebUI.UltraWebChart.v14.2

The problem is that, then it ask me also to import and substitute Infragistics4.WebUI.Shared.v11.1.dll with the new Infragistics4.WebUI.Shared.v14.2

In the web config a register the Chart in this way:

<!--<add tagPrefix="igchart" namespace="Infragistics.WebUI.UltraWebChart" assembly="Infragistics4.WebUI.UltraWebChart.v11.1, Version=11.1.20111.2238, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>-->

<add tagPrefix="igchart" namespace="Infragistics.WebUI.UltraWebChart" assembly="Infragistics4.WebUI.UltraWebChart.v14.2, Version=14.2.20142.2480, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>

Now I have an unfinished list of error of this kind:
Error 107 The type 'Infragistics.WebUI.Shared.IProvideDefaultStyles' is defined in an assembly that is not referenced. You must add a reference to assembly 'Infragistics4.WebUI.Shared.v11.1, Version=11.1.20111.2238, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb'. C:\Dev\ORSS_Infragistic\ORSS New INFRAGISTIC\orssweb\Indicatore\frm_MSB_IWB.aspx.cs 180 17 ORMWeb

I And I don't know how to fix.

Maybe the new functionality are moved into another dll that I have to import?

I'm porting all the site from the old dll to the new. For example from UltraWebGrid to WebDataGrid and so on. The problem is that when I Add the new dll: from Infragistics4.WebUI.UltraWebChart.v11.1.dll to Infragistics4.WebUI.UltraWebChart.v14.2

The problem is that then it ask me also to import and substitute Infragistics4.WebUI.Shared.v11.1.dll with the new Infragistics4.WebUI.Shared.v14.2

In the web config a register the Chart in this way:

<!--<add tagPrefix="igchart" namespace="Infragistics.WebUI.UltraWebChart" assembly="Infragistics4.WebUI.UltraWebChart.v11.1, Version=11.1.20111.2238, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>-->

<add tagPrefix="igchart" namespace="Infragistics.WebUI.UltraWebChart" assembly="Infragistics4.WebUI.UltraWebChart.v14.2, Version=14.2.20142.2480, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>

Now I have an unfinished list of error of this kind:
Error 107 The type 'Infragistics.WebUI.Shared.IProvideDefaultStyles' is defined in an assembly that is not referenced. You must add a reference to assembly 'Infragistics4.WebUI.Shared.v11.1, Version=11.1.20111.2238, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb'. C:\Dev\ORSS_Infragistic\ORSS New INFRAGISTIC\orssweb\Indicatore\frm_MSB_IWB.aspx.cs 180 17 ORMWeb

I don't know because a lot of error arise and I don't know how to fix.

Maybe the new funcitonality are moved into another dll that I have to import?

  • 16310
    Offline posted

    Hi,

    Thank you for posting in the Infragistics community !

    This type of error message makes me think that while upgrading you have missed to remove somewhere in your project a reference to a 11.1 version assembly. My very first suggestions is to make sure you have removed all old references by checking at all places where it is possible to have left overs:

    - web.config
    - register directives in .aspx pages
    - licenses.licx file - you can clear all the contenf from this file
    - double click over the website > Properties pages > References (it is not valid for projects but for websites only)

    Also, I am not sure that you really need those <add tagPrefix...? in web.config. It should be enough to have those add directives in web.config:

          <assemblies>
            <add assembly="Infragistics4.WebUI.UltraWebChart.v14.2, Version=14.2.20142.2317, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/>
            <add assembly="Infragistics4.WebUI.Shared.v14.2, Version=14.2.20142.2317, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/>

    ....
          </assemblies>

    along with the register directives in the .aspx:

    <%@ Register Assembly="Infragistics4.Web.v14.2, Version=14.2.20142.2317, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"
        Namespace="Infragistics.Web.UI" TagPrefix="ig" %>

    Please try the above suggestions and let me know if it helped, or if you need any further assistance on the matter.