You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

The <process../> element in a job configuration was useful to start an executable.

<job >
    <params />
    
    <process  file="/path/to/my_executable" param="my_param">
        <environment />
    </process>

    <run_time />
</job>

This above configuration is <span style="color:red">DEPRECATED</span>.

You can use the following instead:

<job >
    <params />

    <environment />
    
    <script  language="shell">
        <![CDATA[
/path/to/my_executable my_param
        ]]>
    </script>

    <run_time />
</job>

Please note that JOE has a bug when it stores a job with a <process.../> element.
It creates a <script.../> element in addition:

<job >
    <params />

    <script  language="shell"/>

    <process  file="/path/to/my_executable" param="my_param">
        <environment />
    </process>

    <run_time />
</job>

In this case please use JOE to put the data from the job's process file tab into the job's script tab.

  • No labels