Re: Is Cold Fusion version 8 compatible with Java 7?
I would suggest not to use newer versions of Java on an old, especially, end-of-life, version of ColdFusion. It might work, but will involve reinventing the wheel - pun intended - and will lead to...
View ArticleRe: cfspreadsheet problem with large datasets
As of 2014, this is still an issue with our implementation, which is probably due to us still using CF 9.0.2.If this is fixed, can you please provide details about in which version was this is...
View ArticleRe: Optimise CFHTTP Requests/Requests Being Throttled?
Wow!! Thanks very much for this! I'll have a look into cURL and see how customisable it is (to pass in custom header values) and report back.
View Articleis the directory watcher multi-threaded once it calls the cfc?
the docs say there's a single thread that watches the directory. But say for example it finds 3 files and calls the cfc. At that point do all 3 files run one at a time on a single thread in the order...
View ArticleRe: cf 10 500.0 Internal Server Error
@MonkeySaysWhat1, The mandatory update thing is to patch a problem with Adobe's security certificate (this is not the fault of the ColdFusion development team but of the top-level Adobe security...
View ArticleRe: Optimise CFHTTP Requests/Requests Being Throttled?
I've always thought that CFHTTP had alot of overhead. a year or two ago we were looking at switching to php (have since dropped that in favor of .NET), and had a php programmer convert one of our...
View ArticleNumber field displays differently on two systems.
I have a ColdFusion front end/Oracle backend application I inherited from the company that lost the contract to my company. In one screen, there is a field the customer wished to increase from NUMBER...
View ArticleRe: Number field displays differently on two systems.
es336td wrote: ... there is a field the customer wished to increase from NUMBER (10,3) to NUMBER (10,8)... upon saving it (unlike my Development test) truncates/rounds up (i.e.- 123.87654321 becomes...
View ArticleRe: is the directory watcher multi-threaded once it calls the cfc?
Yes, the directory-watcher runs in a single thread. However, the question whether or not "all 3 files run one at a time" is irrelevant. It is the directory-watcher that runs. When the watcher runs,...
View ArticleRe: is the directory watcher multi-threaded once it calls the cfc?
Maybe i didn't word the question correctly, but i'm not asking if the directory watcher itself is multi-threaded, which is what you describe. I'm asking when it calls the cfc, are the calls to the cfc...
View Articlecoldfusion.sql.QueryTable casting issue
After upgrading to coldfusion 10, we are facing an issue with Java objects passed from Coldfusion to Java and vice versa. We have one functions myfunctionname in Java, which use...
View ArticleRe: Number field displays differently on two systems.
Yes, I understand that. Previously it was set to NUMBER (10,3) but the other DBAs changed it to just NUMBER isn't that default (15,38)?
View ArticleCF 10, Consistent java.lang.NullPointerException at cflogin after 20 minutes
Fresh install of cf 10, using tested, mature code written for cf 9. Code is in production on cf 9 in several installations. Application is sitting on its home screen, where there are 4 areas that have...
View ArticleCF 10 maxing out cpu and pages timing out with lots of Tomcat errors
We are having a issue where ColdFusion maxes out the CPU. It will remain that way until we restart ColdFusion. This has happened a few times before but the last time it completely hung and displayed...
View ArticleColdfusion Collection linking problem
I am in the process of creating a search engine in coldfusion. I can't get the search engine to pull the pdf files when trying to do a search. I created a collection in cold fusion administrator.
View ArticleRe: Number field displays differently on two systems.
es336td wrote: ...the other DBAs changed it to just NUMBER isn't that default (15,38)?(15,38) is likely a mistake. The precision must at least equal the scale. The Oracle documentation on numerical...
View ArticleRe: Number field displays differently on two systems.
Understood... but why does it appear on one system as 123.87654321 and the other as 123,87700000? The code and databases are identical except for the data source name.
View ArticleRe: is the directory watcher multi-threaded once it calls the cfc?
I think I understood your questions. There were more than one, some implicit. Here are my answers: ColdFusion runs the directory-watcher in a single thread.During the execution of that same thread,...
View Article