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
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
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
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
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
Thanks and Regards,
Muthusubramanian.M
http://msdn.microsoft.com/en-in/library/dd983804(v=nav.70).aspx
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).
My blog