Re: check validity of zip file with cfzip

2012-11-29 Thread Marco Antonio C. Santos
Seamus, after several problems regarding open corrupted zip files I'm using this code to validate before open that: cfscript var local = {}; local.pathZip = arguments.pathZip; local.pathEXE = application.dir_exe '7z '; /cfscript cfset local.command = 'cmd /c ' local.pathEXE ' t '

Re: CF application ends prematurely in CFHTTP

2012-11-29 Thread Claude Schnéegans
it is because your dumping the cfcatch which actually does contain the error that occurred. I don't understand what you mean. The dump never occurs, thus the error is not catched. Anyway the problem was simply a time limit of 60 sec by default. This is weird because exception type is Any by

Re: CF application ends prematurely in CFHTTP

2012-11-29 Thread Andrew Scott
Then that indicates that there is no error... If it is not ending up in the catch, I think you will find that your not thinking about this correctly. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Fri, Nov 30, 2012 at

Re: CF application ends prematurely in CFHTTP

2012-11-29 Thread Claude Schnéegans
Then that indicates that there is no error... There was an error, a timeout error. A far as I can remember, timeout errors were thrown, even while executing a CFHTTP request. ~| Order the Adobe Coldfusion Anthology now!

Re: CF application ends prematurely in CFHTTP

2012-11-29 Thread Andrew Scott
Timeout errors are ColdFusion problems, they are not captured by the cftry. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Fri, Nov 30, 2012 at 11:35 AM, wrote: Then that indicates that there is no error... There

Re: CF application ends prematurely in CFHTTP

2012-11-29 Thread Russ Michaels
A timeout usually results in an error though. Regards Russ Michaels www.michaels.me.uk www.cfmldeveloper.com - Free CFML hosting for developers www.cfsearch.com - CF search engine On Nov 30, 2012 12:42 AM, Andrew Scott andr...@andyscott.id.au wrote: Timeout errors are ColdFusion problems,

Re: CF application ends prematurely in CFHTTP

2012-11-29 Thread Andrew Scott
Well technically a timeout is an error, but it is ColdFusion throwing it because it can't run the page in the specified time, and is still not handled by cftry. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Fri, Nov 30,