... open XML_OUT, ">$outputXmlFile"; print XML_OUT $xmlOutput; close XML_OUT;...
open XML_OUT, ">OUTPUTXmlFile" or die $!;
.
So basically this is what happens.The template for these dcrs has a tag in which it builds a string in the variable $xmlOutput. This string is XML which has information that it pulls from another set of DCRs in another directory. It then executes this command open XML_OUT, ">$outputXmlFile"; print XML_OUT $xmlOutput; close XML_OUT;This is, obviously, where it outputs the contents of $xmlOutput to the file. I can't say for sure where it is failing. I just know that the XML file is not over written.I would guess that XML entities aren't an issue here because a Perl string wouldn't care about that.Is there some variety of Debug Log I could print to? Or is there an error log where I could maybe see what might be going on?