OK, so I am trying to fix some oddities in a site.
There is a WF that runs OD. Once OD is run, there is a DNR that collects some more information and creates XML files from metadata.
If I submit blah.pdf everything works just fine.
If I submit folder containing 1000 PDFs (with metadata), no XM L files are produced but the PDFs are correctly deployed.
As I dig through my code I have these statements:
my
@f_pass = $xml_obj->GetSucceededFiles();
my
@f_del = $xml_obj->GetSucceededDeletedFiles();
debug ($debugfile, "Deployed Files is
@f_pass") if ($debug);
debug ($debugfile, "Deleted Files is
@f_del") if ($debug);
In a working page I get this:
[Mon Jul 21 12:09:09 2008]: Deployed Files is E:\ESI/en_us\AZ_META_20080721\2000_SH.pdf
Failed gets:
[Mon Jul 21 12:11:35 2008]: Deployed Files is E:\ESI/en_us\AZ_META_20080721
so net is that GetSucceededFiles() is returning the folder (that is in the filelist that OD uses) instead of each file being pushed.
I am guessing I need to read the folder and put the list together myself. Just curious if anyone has come across this before with any easier resolution
Andy