How to create SOLIDWORKS PDM Professional (EPDM) add-in

Edit ArticleEdit Article

SOLIDWORKS PDM Professional (formerly SOLIDWORKS Enterprise PDM) exposes rich API libraries which enable 3rd parties to develop custom extensions for the system. The maximum level of integration can be achieved by developing the application as SOLIDWORKS PDM add-in. The detailed step-by-step instruction below will guide you through the process of creation an add-in from scratch.

In this article I will be creating the add-in in .NET (C# and VB.NET) in Microsoft Visual Studio.

  1. Start Visual Studio and create new project
  2. Select Class Library from the projects templates
  3. Specify the name of your add-in
  4. It is required to add the reference to PDM Interop Library (EdmInterface.dll for projects targeting Framework 3.5 and 2.0 and EPDM.Interop.epdm.dll for projects targeting Framework 4.0 or higher). Library can be found at the SOLIDWORKS PDM installation folder (usually C:\Program Files\SOLIDWORKS PDM\EPDM.Interop.epdm.dll for Framework 4.0 and newer and C:\Program Files\SOLIDWORKS PDM\EdmInterface.dll for older versions)
  5. If your project is targeting .NET Framework 4.0 onwards it is required to set the Embed Interop Types option to False otherwise the add-in may misbehave.

Option to embed interop assemblies
Option to embed interop assemblies

It is required to do 3 mandatory steps to make the class for PDM add-in:

  1. Implement IEdmAddIn5 interface.
  2. Mark the class as Com Visible
  3. Specify the minimum major version supported by the add-in within the GetAddInInfo by setting the EdmAddInInfo.mlRequiredVersionMajor property.

using EdmLib;
using System;
using System.Runtime.InteropServices;

namespace CodeStack
{
    [ComVisible(true)]
    [Guid("3A601AFC-7007-46A7-9E71-D3BD41B5E2E2")]
    public class PdmAddInSample : IEdmAddIn5
    {
        const int TEST_CMD_ID = 1;

        public void GetAddInInfo(ref EdmAddInInfo poInfo, IEdmVault5 poVault, IEdmCmdMgr5 poCmdMgr)
        {
            poInfo.mbsAddInName = "Demo AddIn";
            poInfo.mlRequiredVersionMajor = 17; //SOLIDWORKS PDM 2017 SP0

            poCmdMgr.AddCmd(TEST_CMD_ID, "Test Menu Command");
        }

        public void OnCmd(ref EdmCmd poCmd, ref Array ppoData)
        {
            if (poCmd.meCmdType == EdmCmdType.EdmCmd_Menu)
            {
                if (poCmd.mlCmdID == TEST_CMD_ID)
                {
                    (poCmd.mpoVault as IEdmVault10).MsgBox(0, "Hello World!");
                }
            }
        }
    }
}

Notes

  • It is recommended not to check the 'Make assembly COM-Visible' option rather use ComVisible attribute for all classes which are required to be COM visible (e.g. add-in main class). Otherwise this may significantly increase the loading time of your add-in.

Make assembly COM Visible option in project settings
Make assembly COM Visible option in project settings

  • Unlike registering SOLIDWORKS add-in it is not required to actually register the PDM add-in DLL as COM object (i.e. run RegAsm utility or check the 'Register Assembly for COM Interops' option in Project Properties).
  • It is recommended to decorate the add-in's class with Guid attribute as this will allow to better track the add-in on client machines (e.g. debug or clear the add-ins cache).

In order to load the PDM add-in into the vault please follow the steps below:

  • Start SOLIDWORKS PDM Administration console (can be found in the Windows Start Menu)
  • Navigate to the PDM vault
  • Select Add-Ins node and select New Add-In... command

Adding new add-in in the Administration panel
Adding new add-in in the Administration panel

  • Select all files from the bin directory of the project. You do not need to add temp files like (.pdb or .xml)
  • Once add-in is loaded its summary is displayed

Add-in summary page
Add-in summary page

Navigate to vault view and select the Test Menu Command from the context menu.

Add-in command in the context menu in the vault explorer
Add-in command in the context menu in the vault explorer

Message box is displayed:

Hello World message box
Hello World message box

SOLIDWORKS PDM is a client-server architecture system which means that whenever add-in is loaded into the vault it will be distributed to all clients. When client logins to vault PDM will download add-in dlls locally to %localappdata%\SolidWorks\SOLIDWORKS PDM\Plugins*VaultName*AddIn Guid**Index folder.

Add-in dlls will be loaded into several processes (including explorer.exe) on first login to PDM vault. Due to the limitation of .NET Framework, .NET libraries cannot be unloaded from the app domain. That's why PDM displayed the *'You have chosen to load a .NET add-in. SOLIDWORKS PDM cannot force a reload of .NET add-ins' when adding the add-in to the vault.

Warning displayed when adding .NET add-in
Warning displayed when adding .NET add-in

This message means that cached (previous) version of PDM add-in will be in use until the dlls are unlocked. Instead of restarting the machine it is possible to kill all processes which are locking the dlls. You can use the following command line script to release add-in with a single command:

TASKKILL /F /IM explorer.exe
TASKKILL /F /IM EdmServer.exe
TASKKILL /F /IM ConisioAdmin.exe
TASKKILL /F /IM AddInSrv.exe

START explorer.exe

SOLIDWORKS PDM provides handy functionality which simplifies the debugging of PDM add-in. Please read the following article: Debugging SOLIDWORKS PDM Add-In - Best Practices

Below is a video demonstration of creating SOLIDWORKS PDM Add-in from scratch:


Product of Xarial Product of Xarial