Workflow and ServiceDesk Community

 View Only

Workflow - Plugin - Developer Guide - Setup 

May 18, 2017 06:14 PM

In this Article I'm going to explain how setup your environment for creating a Plugin.

Table of Contents

 

You will need Visual Studio, download a version if you haven't already.

A Workflow.png Workflow Server to get the necessary DLLs.

Go to this server.

Go to your Workflow install location

The document states

C:\Program Files\Altiris\Workflow Designer\Designer\Plugins

But you may have changed this on install, example:

[Install Drive]:\Program Files\Symantec\Workflow\Designer\Plugins

Search for

LogicBase.ToolShared.dll

E:\Program Files\Symantec\Workflow\Shared\logicbaselib

Make a copy of this DLL and add it to your Dev environment.

 

We also need to get the necessary DLLs from the GAC (Global Assembly Cache)

C:\Windows\Microsoft.NET\assembly\GAC_MSIL\

This may not show a list of DLLs as the viewer is configured using a RegKey.

*Warning modifying the Registry can be dangerous, make sure you know what you're doing before you edit these. Take a copy first as a backup.

  1. Launch RegEdit.
  2. Navigate to HKLM\Software\Microsoft\Fusion
  3. Add a DWORD called DisableCacheViewer and set the value to 1.

Now search for 2 Libraries:

  • LogicBase.Core.dll
  • LogicBase.Framework.dll
  • LogicBase.Components.Default.dll (You may also need Components if you're working with those)

Copy these to your Dev environment too.

 

Now we have the libs, we can create the VS project.

Start by creating a new Project - Class Library.png Class Library.

Protirus.Workflow.Plugins

In the Project Folder add a new Folder.png Folder called 'External Dependencies' (In Explorer)

Add the Symantec libs

  • LogicBase.ToolShared.dll
  • LogicBase.Core.dll
  • LogicBase.Framework.dll
NOTE: Make sure these are the correct versions from the correct WF box i.e. 7.5 / 7.6 / 8.0 / 8.1.

Now in the VS Project

Right Click -> Add -> New Solution Folder

Add Existing Item -> Browse to the DLL and add

 

References.png References -> Right Click -> Add Reference

Expand Browse then right click Browse button

Go to this Folder and add the DLL.

 

Update the Properties.png Properties, double click to open the window.

Click on Assembly Information,

Add the Description and Company info.

 

Check the Target Framework for .NET in Properties.

.NET Framework 4.5.1

 

Now back to the .cs file that was created (cs.png Class1.cs).

Rename this to the name of your Plugin

cs.png ProtirusPlugin.cs

Add the using for the new namespaces

using LogicBase.Components.Default.Process;
using LogicBase.Core;
using LogicBase.Framework;
using LogicBase.Tool.Plugin;

 

We also need to add a couple of .NET References

System.Drawing
System.Windows.Forms;

Then add them to your code

using System.Drawing;
using System.Windows.Forms;

 

Now we are ready to code the Plugin.

We will need to implement one of the Interfaces from the ToolShared lib.

IPlugin

public class ProtirusPlugin : IPlugin

And implement the required methods.

public string Name { get; private set; }
public string ToolTip { get; private set; }
public string MenuLocation { get; private set; }
public Shortcut MenuShortcut { get; private set; }
public bool SeparatorAfter { get; private set; }
public void PerformAction()
{
    throw new NotImplementedException();
}

 

IProjectPlugin

public class ProtirusPlugin : IProjectPlugin

And implement the required methods.

public void PerformAction(AbstractOrchestrationProject project)
{
    //messageBox.Show("project action on project " + project.MainFile.FullName);
    throw new NotImplementedException();
}

 

Finally

IPluginUI

public class Protirus : IPluginUI

And implement the required methods.

public int GetMenuPosition(string[] names)
{
    throw new NotImplementedException();
}

public int GetToolBarPosition(string[] names)
{
    throw new NotImplementedException();
}

public Image Image { get; private set; }
public bool ShowInMenu { get; private set; }
public bool ShowInToolBar { get; private set; }

Or all three

public class Protirus : IProjectPlugin, IPluginUI //IPlugin,
{
    ...
}

Now we have all the necessary method stubs but nothing actually happens, onto the next Article Simple Component to create a working item.

- - -

Protirus.png

Statistics
0 Favorited
3 Views
0 Files
0 Shares
0 Downloads

Tags and Keywords

Related Entries and Links

No Related Resource entered.