 |
SoftTree Technologies
Technical Support Forums
|
|
Author |
Message |
Mike Mather
Joined: 13 Aug 2007 Posts: 5
|
|
JAL command "JobList" returning XML string |
|
On 5.3 build 461, Windows Server 2012 R2. The returned list from Issuing the JAL JobList command is an XML string versus a comma separated list. Example:
<TR><TD>9</TD><TD>Test Email</TD></TR>
<TR><TD>12</TD><TD>Delete expired files from server directories</TD></TR>
etc...
Thank you for your assistance!
|
|
Wed Jun 14, 2017 11:13 am |
|
 |
SysOp
Site Admin
Joined: 26 Nov 2006 Posts: 7948
|
|
|
|
Thank you for reporting that. It looks like an HTML table to me, not an XML. We are investigating this issue.
In a mean time, would you please try a JavaSCript based job with something like
 |
 |
var jobArray = Scheduler.getJobs( );
for( var j = 0; j < jobArray.length; j ++)
{
var name= Scheduler.getJobProperty(jobArray[j], "JOB_NAME" );
Scheduler..messageBox( name );
} |
|
|
Thu Jun 15, 2017 2:21 am |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|