Encountered couple of issues after update ColdFusion 2023 Update 5 to Update 10
Hello,
I had Encountered couple of issues after update ColdFusion 2023 Update 5 to Update 10.
1. ColdFusion could not delete the file C:\Request Form1.pdf. . The cause of this exception was: java.nio.file.FileSystemException: Request Form1.pdf: The process cannot access the file because it is being used by another process. <br>The error occurred on line 8.
below is the code. When I add the <cfset sleep(500) /> before a file deletion then it works fine.
<cffile action="readbinary" file="#filelocation#" variable="clobVar" />
<cffile action="delete" file="#filelocation#">
2. It seems some of the configuration missed related to custom Java class for below code I am getting an error as "Object Instantiation Exception. Class not found: org.util.pdf.AppendLetterPDFs <br>The error occurred on line 32." for below code. But I am not sure where the Jar or packages mapped or configured.
<CFOBJECT ACTION="CREATE" TYPE="JAVA" NAME="appender" CLASS="org.util.pdf.AppendLetterPDFs">
can anyone please help on this.

