Hello,
could anyone give me a hint how to handle that issue:
Creating files in a windows-environment with
Code:
<xsl:result-document href="Test.xml">
will create a file named Test.xml.
Code:
<xsl:result-document href="test.xml">
will create a file named test.xml, if there is no file Test.xml
will create a file named Test.xml, if there is a file Test.xml
As result-document does not care about any existing file and would overwrite it anyway this behaviour looks strange to me. Is there any work-around? Like: Can I delete a file from within a stylesheet?
(The problem accurs when building URLs out of XML-attribute-values for UNIX-environment, where upper and lower case matters.)
Best regards
Christian