I want to install this library pythonnet below. Actually I want to call a .net dll library in a pyhon script. So after some search, I found this library but having difficulty installing this pythonnet library.
I followed the steps that are mentioned in this forum post below. I was able to create a junction link between ignition library directory and jython library directory.
But I am having difficulty installing the library in jython using pip. What commands should be ran?
I also tried using python command but still getting errors as shown in screen capture below. How this error can be fixed?
I also tried copying the library folder in this directory C:\Program Files\Inductive Automation\Ignition\user-lib\pylib. But still getting import error in script.
If the setup.py file for a given pypi package includes a build phase, that pretty much always means part of the package is written in C. This will not be jython-compatible. So too for any dependencies automatically pulled in by a package.
Key graf from the knowledgebase article:
Because Ignitionâs Python interpreter is Jython, that means unlike CPython, Java libraries are accessible. It also means C libraries arenât accessible.
As folks have mentioned, that library wonât be available in Ignitionâs Python environment (Jython), since itâs a CPython library.
For your overall goal, the most popular ways to invoke DLLs from Ignition:
Option 1: Run CPython next to Ignition. See the " Can I run Python 3 code from Ignition?" section from the article WillMT10 linked.
Option 2: Create an Ignition module that calls that library using JNA. An example module exists that you can download and use as a starting point. GitHub Ignition JNA Example
Note that if itâs a pure .NET library that doesnât have C linkage, you might need to go through a few steps first, as mentioned in the readme.
What about using Javonet as a method to call .NET dll within Ignition. I think they are based on the JNA, but not 100% sure.
I have a project where we have a specialized instrument that is only available through their own .NET dll. I am looking for a solution to possibly use a trigger from the PLC to trigger the calls to the DLL to run the instrument and return data.
Ultimately, the data is used in Ignition and the PLC. So I would love to do all this in Ignition and avoid writing a custom web service, .NET application or Python app.
I think this would require that a client can make the DLL call (not on the ignition gateway)
There are two common ways to call a DLL from Ignition:
Wrap the DLL with web services. If using Visual Studio, this is easy. This video is one option of how to accomplish this. Itâll create a service that starts with the OS, making that dll available to be called over web services. WCF Services - How to create a simple WCF Service - Part 1 - YouTube This is normally the preferred way for .NET DLLs.
You mentioned preferring not to write a âcustom web serviceâ, so option 2 might be your best bet.
All that said, I havenât used Javonet myself, but you might be able to write a module that would use that as well. If Option 2 above turns out not to be a good option for whatever reason, you could certainly write a module that would include your purchased copy of the Javonet Jars and then could program against their API.
Edit: Since you mentioned âI think this would require that a client can make the DLL call (not on the ignition gateway)â - Option 2 might be the way to go, since it wouldnât be easy to do Option 1 with distributing a web service to each client. Using Option 2 and adding the DLL calls in the Client context in the module would let you do your DLL calls from a Vision Client, so it would be running directly on the client rather than the Gateway.