Created
March 25, 2014 00:57
-
-
Save bennadel/9753214 to your computer and use it in GitHub Desktop.
ColdFusion CFFTP Timeout Value Cannot Be Dynamic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--- | |
Open the connection, cache it using, "objConnection", | |
and give it a large timeout. | |
---> | |
<cfftp | |
action="open" | |
connection="objConnection" | |
timeout="#(60 * 5)#" | |
attributeCollection="#objFTPProperties#" | |
/> | |
<!--- Close the connection. ---> | |
<cfftp | |
action="close" | |
connection="objConnection" | |
/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment