RE: GC overhead limit exceeded

2014-12-08 Thread Mark A Kruger
Dan, I was just reading this post by CF Gurur Mike B. It has some cf10 specific tips that might be applicable to you since your problem is OOM. http://www.cfwhisperer.com/post.cfm/coldfusion-10-enhanced-performance-setti ngs -mark Mark Kruger - CFG CF Webtools www.cfwebtools.com

Re: GC overhead limit exceeded

2014-12-08 Thread Don
Dan, I was just reading this post by CF Gurur Mike B. It has some cf10 specific tips that might be applicable to you since your problem is OOM. http://www.cfwhisperer.com/post.cfm/coldfusion-10-enhanced-performance-setti ngs -mark Cheers Mark. We are also looking at the database ( MS SQL

RE: GC overhead limit exceeded

2014-12-08 Thread Mark A Kruger
MSSQL express has some limitations as to size (of the DB) and connection limits. If I have time I'll look for a matrix - but such things could definitely result in degraded performance. I'm at a loss to say how they would contribute to a memory leak however. -Original Message- From: Don

Re: GC overhead limit exceeded

2014-12-08 Thread Don
I created another page ( that is not accessing the DB ) under the root directory and was able to access this fine on the domain whilst the site was still down.. It wasn't until I ran the application which is accessing the DB that we are experiencing that site blowing up ( massive lag ). So

Re: Work Around for SSLv3 Vulnerability?

2014-12-08 Thread Wil Genovese
I just published blog posts today on how to prevent ColdFusion from falling back to SSLv3 with CFHTTP. http://www.trunkful.com/index.cfm/2014/12/8/Preventing-SSLv3-Fallback-in-ColdFusion http://www.coldfusionmuse.com/index.cfm/2014/12/8/colfusion-jvm-versions-sslv3-tls Enjoy! Wil Wil

bypassing the site-wide error handler

2014-12-08 Thread Chris Norloff
Hi, when can an application bypass the CF v9 site-wide error handler? We host an app, that uses cftry/catch, but that appears to not handle the errors correctly. The errors do not trigger the site-wide error handler, and the errors are displayed to the users. The site-wide error handler works

Re: bypassing the site-wide error handler

2014-12-08 Thread Dave Watts
Hi, when can an application bypass the CF v9 site-wide error handler? We host an app, that uses cftry/catch, but that appears to not handle the errors correctly. The errors do not trigger the site-wide error handler, and the errors are displayed to the users. The site-wide error handler

Re: bypassing the site-wide error handler

2014-12-08 Thread Rodney Enke
The site wide error handler will not run if there is a local error handler, such as CFTRY/CFCATCH or CFERROR, unless the CFTRY/CFCATCH block rethrows the error. - Rodney On Mon, Dec 8, 2014 at 8:52 PM, Dave Watts dwa...@figleaf.com wrote: Hi, when can an application bypass the CF v9