Options

Client Add-in NAV 2013

manikandanmanikandan Member Posts: 160
edited 2013-04-11 in NAV Three Tier
Hi,
I Have a Problem with client Add-in NAV 2013 ?
successfully generated Public key token and register in "Client Add-in " Table
But i am using this then getting error Message Like this:

Could not locate the add-in library for "MyCompany.MyProduct.RtcAddins;PublicKeyToken=3524aa362fa203e7".
Note :I have placed my dll in Role tailored Client folder also.
kindly view my attachment
:(:(
Thanks and Regards,
Muthusubramanian.M

Comments

  • Options
    mohana_cse06mohana_cse06 Member Posts: 5,503
    Make sure that you have placed them in

    Server:
    1. C:\Program Files\Microsoft Dynamics NAV\70\Service\Add-ins
    2. C:\Program Files (x86)\Microsoft Dynamics NAV\70\RoleTailored Client\Add-ins

    Client:
    1. C:\Program Files (x86)\Microsoft Dynamics NAV\70\RoleTailored Client\Add-ins
  • Options
    manikandanmanikandan Member Posts: 160
    Hi mohana,
    Have placed
    1. C:\Program Files\Microsoft Dynamics NAV\70\Service\Add-ins and
    2. C:\Program Files (x86)\Microsoft Dynamics NAV\70\RoleTailored Client\Add-ins
    But still getting same Error message.

    :(:(
    Thanks and Regards,
    Muthusubramanian.M
  • Options
    mohana_cse06mohana_cse06 Member Posts: 5,503
    Did you add/register them in Client-Addin table (2000000069)
  • Options
    manikandanmanikandan Member Posts: 160
    Did you add/register them in Client-Addin table (2000000069)
    YES.
    :(:(
    Thanks and Regards,
    Muthusubramanian.M
  • Options
    Fred_CleverFred_Clever Member Posts: 11
    Do you use an additional Libary (dll), which is required for your AddIn dll?
  • Options
    manikandanmanikandan Member Posts: 160
    Do you use an additional Libary (dll), which is required for your AddIn dll?
    I just follow below URL:
    http://msdn.microsoft.com/en-in/library/dd983804(v=nav.70).aspx
  • Options
    kauffmannkauffmann Member Posts: 56
    Check if the name 'MyCompany.MyProduct.RtcAddins' is equal to the name that is specified in the ControlAddInExport attribute of the class.

    For example:
    [ControlAddInExport("MyCompany.MyProduct.FieldPopupAddin")]
    public class MyFieldPopupAddin : StringControlAddInBase

    This should result in a registration of 'MyCompany.MyProduct.FieldPopupAddin' in table 2000000069 Client Add-in.

    The name 'RtcAddins' that you are using could point to using it more than one time. It is not strong enough. Each Add-in class in your RtcAddins assembly should have a unique name in the ControlAddInExport attribute.

    If using version numbers in table 2000000069 , then check if the version number is equal to the version number of the add-in assembly.

    By the way: control add-ins don't need to be copied to the server add-in folder. They only need to be on the client (remember to deploy it to every client).
    A good programmer makes al the right mistakes
    My blog
Sign In or Register to comment.