I have an external task that will generate HTML pages for any dcr attached to the workflow. Based on the dcr type I match the dcr to its correct presentaiton template and the correct path to put the generated HTML. In order to do this I first perform the iwextattr command. The code is as follows:
@file_attributes = `$iwhome\\bin\\iwextattr -l $area\\$file`;
foreach (
@file_attributes){
if($_ =~ /TeamSite\/Templating\/DCR\/Type=.*?\/(\w+)$/) {
$file_type = $1;
break;
}
}
This code worked for a TeamSite 5.0.1 installation on Windows 2000. Recently I upgraded to the machine to TeamSite 5.5.1. Now the script is still called by the external task as I expected, but for some reason the iwextattr command is not performed. I am able to perform an iwextattr command from the command line and get the expected results. Later in the script I run the iwgen command to generate the HTML and that appears to still be working correctly, though since I am not getting the file type the correct presentation template is not used and the generated file is not put in the correct location.
Any thoughts on what could be the issue?