Fullasagoog

Show all feed information | Ping Blog Update

ColdFusion and Windows 8 3 months ago

Adobe when are you goign to sort this out. ColdFusion should well and truly be workign on Windows 8 now. I'm not going to hack up an install this should be working. My team want to upgrade? When?

Railo - Java methods resolved by reflection at run time Nice! 5 months ago

I didn't know this was included in Railo 4.0 but it's nice. If you call a method that doesn't exist in CFML it will fall back and attempt to call a java method. Consider the following code: Comes from: https://groups.google.com/forum/?fromgroups=#!topic/railo/IEh5pMdawyk

Updates 6 months ago

I've really neglected my blog for quite a while. I've been really busy with work and home life I was prompted to write this post as I noticed it was May 15th that ColdFusion 10 was released. Unfortunately were still not on it yet and to be honest I'm sort of glad. There seems to have been a …

ColdFusion PHP ASP.net... they all work 6 months ago

Throughout my day I probably jump between 3 main languages. PHP, ASP.net and CFML in no particular order. On the side I do some of my own work and in past years in most cases the language choice has been CFML. I thought it was worth talking about with all the news around the blogs and …

Merging PDF's with ColdFusion 9 months ago

A new tutorial is up at LearnCf.com merging PDF's with ColdFusion check it out: http://tutorial45.learncf.com/
keywords coldfusion

ColdFusion 10 on Java 7 9 months ago

With Java 6 EOL I decided to try ColdFusion 10 on Java 7. Works fine without any issues so far on our applications.

ColdFusion Builder 2.0.1 Update last year

So ColdFusion 10 and ColdFusion Builder 2.0.1 update were released today. I'll move all our servers to 10 shortly but immediately I want to upgrade to Builder 2.0.1. Well it's a little confusing you actually need to re-download the whole ColdFusion Builder 2 installer and re-install. As you …
keywords adobe, servers, support coldfusion

Sending Arrays from javascript to ColdFusion and Railo - The diferences last year

Wile attempting to answer a question on Stack Overflow I ran into an interesting difference between Railo and ACF I've begun to use Railo more and more and this simple piece of code I expected would "just work". Well on Railo it did. On ACF it did not. ACF sees the js array passed as a variable …

ColdFusion structs and case sensitivity last year

Typical use for structs in ColdFusion are: The problem with this is the struct keys are case insensitive. Why is this a problem? Well it's not, not in CFML anyway but it is when you are passing data back to a ajax request and I have seen many people scratch there heads trying to work out why …

Indexes are often forgotten last year

We have all worked on legacy code bases. One of the applications I work on is truly massive, occasionally some of the internal reporting tools have an issue running some of our reports, almost always it's because there is a query being looped and 1 or more queries being executed from within that …