Excutable in Batch Mode

Hi

Finaly i have developed some model using KNIME work-flow with all free nodes. The way is, we just provide the input file (sdf) and it gives the output as prediction(exl). My quesions is can i make this whole thing into excutable in batch mode, so that, in later i can implemnt them in webservise which will useful for public.

Looking for your help

Best regards

Nathan

See the FAQ entry here: http://tech.knime.org/faq#q12

Hi Nathan,

KNIME workflow in batch mode.
This is a command line that I have used for a few applications.

knime.exe -noexit -consoleLogĀ  -application org.knime.product.KNIME_BATCH_APPLICATIONĀ  -nosplash -workflowDir="<workflow-path>"

knime.exe opens a DOS window (or a Linux window) in which to run the workflow.
-noexit means that the window stays open after the execution is finished.
-consoleLog means that the log messages are re-directed to the console.
- application org.knime.product.KNIME_BATCH_APPLICATIONĀ  launches the KNIME batch application.
-nosplash does not show the initial splash window.
and finally with -workflowDir you should provide the path of the directory containing the workflow that you would like to run.

I hope this would be of your help.