Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The job schema defines the elements and types that represent a job object and its tasks.
You can use the schema to write an XML document that you then pass to the ICluster::CreateJobFromXml method to create a job object.
If you specify a submission or activation filter, CCP generates an XML document that defines the job and its tasks and passes the document to your filter.
The following pages define the job schema:
The following is an example XML document.
<?xml version="1.0" encoding="utf-8" ?> 
<Job xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" 
     xmlns:xsd="https://www.w3.org/2001/XMLSchema"
     xmlns="https://www.microsoft.com/ComputeCluster/"
     Name="job1" 
     IsExclusive="true">
  <ExtendedTerms>
    <Term>
      <Name>JobTerm1</Name> 
      <Value>1000</Value> 
    </Term>
  </ExtendedTerms>
  <Tasks>
    <Task Name="task1" CommandLine="Notepad.exe" IsExclusive="true">
      <EnvironmentVariables>
        <Variable>
          <Name>MyEnvVar</Name> 
          <Value>EnvVarVal</Value> 
        </Variable>
      </EnvironmentVariables>
      <ExtendedTerms>
        <Term>
          <Name>TaskTerm1</Name> 
          <Value>Value1</Value> 
        </Term>
      </ExtendedTerms>
    </Task>
  </Tasks>
</Job>