How to limit a flow service executed only by one thread at a time?
Create a java service # Create a private static object on the shared source (i.e. private static Object LOCKOBJ = new Object(); ) # Have the code below on the java service source: IDataCursor idc = pipeline.getCursor(); IDataCursor idcResult = null; try { // put … How to list the WmRoot package in the Developer set the following property in Extended Settings: watt.server.ns.hideWmRoot=False thanks to Jaap! 😉 (A student from our Advanced Integration World workshop in San Diego). Note: you will need to have Administrator privileges to view the folders of course How to Log to the Server log from Java com.wm.util.JournalLogger.log( com.wm.util.JournalLogger.INFO, com.wm.util.JournalLogger.FACFLOWSVC, com.wm.util.JournalLogger.DEBUG, “DEBUG TEXT HERE!” ); Hints You may wish to wrap this up in a service for convenience and put it in the shared section of your code (or in a utility class): public static void debugLog(String text) Then in your code … How to make a Java service recompiled