I mapped Altova XMLSpy to Apache FOP for XSL:FO tranformation(Tools->Options->XSL->Selected fop.bat),then I wrote a simple HelloWorld output as below and tried to tranform the XSL:FO to a PDF output,But XMLSpy threw this error " Temporary file could not be created!Access is denied" , Can someone tell me why I get this error and how to resolve it?
<?xml version="1.0" encoding="utf-8"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master master-name="hello"
page-height="11in" page-width="8.5in" margin-top="1in"
margin-bottom="1in" margin-left="1in" margin-right="1in">
<fo:region-body margin-top="1in" margin-bottom=".5in"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="hello">
<fo:flow flow-name="xsl-region-body">
<fo:block font-size="18pt" text-align="center" font-weight="bold">
Hello World!
</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>