Hello Stefan, Thank you for your awesome software, it helps me a lot. I think I’ve found some kind of memory leak, if I don't made a mistake : On a worker script, I created an XML reader object, to read a XML file. To do so, I use : l_FormatXmlReader = scriptThread.createXmlReader(); l_FormatXmlReader.readFile("C:/Tmp/Decode.xml", false) l_ElemFmtRoot = l_FormatXmlReader.getRootElement() ; l_ElemFmtCmds = l_ElemFmtRoot.childElements() ; Then, I parse among children tags periodically to get some information...
Hi, I have a question about external link to other executable: I already use a worker script in js. But Indeed, I have a very specific need, which consists to decode incoming data from CAN and translate them into strings, according to rules stored in an XML file. So I need to open and parse an Xml file. I'm pretty OK to do that in python, but not in javascript :). So I wondering if there is a possibility to execute python script, exe file (with paramterers, and getting standard output), or even dll...