What does the error "No codeBuilder found for cookie0" mean?
Here is a part of the log file of the element:
2021/01/08 14:36:15.657|SLManagedScripting.exe|ManagedInterop|ERR|-1|36|No CodeBuilder found for cookie0 2021/01/08 14:40:18.418|SLProtocol - 29556 - M1000S|41600|CQAction::Run|ERR|-1|QAction [400] triggered by [pid=410/idx=-1/pk=/user=] failed. (0x80040221) Input: new = <NULL> Input: old = <NULL> Input: extra = <NULL>
Stijn Declerck [SLC] [DevOps Advocate] Selected answer as best 8th January 2021
Hi Stijn
That type of error usually indicates that DataMiner could not compile the QAction.
In your case, there could be a compilation error in one of the referenced QActions or an external library could be missing.
I would check for compilation errors in your QAction and check everything that is referenced in the dllImport attribute is compiling/correct.
Stijn Declerck [SLC] [DevOps Advocate] Selected answer as best 8th January 2021
I disabled the automatic generation of the Class Library code in Visual Studio for another project. Switched it back on and now it works again. Thank you!