Hi,
I'm trying to use the sleep script you provided and when I
try to variblize the time using some calculations (see the example
below) it throws the following error:
The selected method sleep was not found.
Either there are no methods with the specified method name
and argument types, or the method sleep is overloaded with
arguments types that ColdFusion can't decipher reliably. If this is
a Java object and you verified that the method exists, you may need
to use the javacast function to reduce ambiguity.
Example:
<cfset SleepSeconds = 1000 * 2>
<cfscript>
thrObj = CreateObject("java", "java.lang.Thread");
thrObj.sleep(#SleepSeconds#);
</cfscript>
Any Ideas would be greatly appreciated.