createJob

Returns a list of jobs.

Request

<createJob>  
   <srcVol/>
   <srcPath/>
   <tgtServer/>
   <tgtVol/>
   <time/>
   <user/>
   <password/>
   <unp/>
   <copy/>
</createJob>

Reply

<createJob> 
   <result value=" ">
      <description/>
   </result>
   <ID/>
</createJob>

Elements

srcVol

Specifies a host resource name for the volume (rather than the eDirectory resource name). Do not use a colon in the name.

srcPath

Specifies that the volume is split.

tgtServer

Specifies the name of the target server in the following format:

.CommonName.ContainerNamesDelimitedWithDots.TreeName.
time

Specifies the current time or the GeneralizedTime value.

user

Specifies the name of the user. The leading dot is required.

unp

Specifies the user's protected credentials, encoded as a hex string. Either unp or user and password must be supplied.

result

Specifies an error value or 0 (for no error).

description

Specifies a text description of the result.

ID

Specifies the ID for the job.

Example

One example of the request portion of createJob is as follows:

<nssRequest>     <!-- Main element for NSS requests -->
   <volMN>      <!-- (Opt, Rpt) Volume MN operations -->
      <createJob>  
         <srcVol>Vol</srcVol>     
         <srcPath>\a\b\c</srcPath>   
         <tgtServer>DSSvrObjectName</tgtServer>  
         <tgtVol>Vol</tgtVol>
         <time>20021225060000</time>     
         <user>.admin.novell</user>
         <password>junk</password>
         <unp>0123456789ABCDEF</unp>        
         <copy/>
      </createJob>
   </volMN>
</nssRequest>