I need to integrate a .NET dll into Perl code, and I am unable to find information (online) on a reliable way to use functions in a dll that was created from a .NET framework, in Perl.
I found this webpage that explains one way to do it using COM objects, but my Perl code fails when using
Win32::OLE->new('$class_name')
with the following error
ERROR_MSG
file: test.pl, line: 10, function: _DieHandler
Testcase died
Win32::OLE(0.1601) error 0x80070002: "The system cannot
find the file
specified" at test.pl line 10
eval {...} called at test.pl line 10
I have to use Perl, because we have a huge existing framework in Perl.