Archive for March, 2007

Reflection in ColdFusion Part 2

Posted: 28th March 2007 by Adam Presley in ColdFusion, Development
Tags: , ,

Yesterday I was working on using Java reflection to create function pointers in ColdFusion to native ColdFusion methods. I was able to get this to work on any function with only String parameters, but not integer. Well, I found out why. The integer data type in Java is a primitive data type. There IS a [...]

Reflection in ColdFusion

Posted: 27th March 2007 by Adam Presley in ColdFusion, Development
Tags: , ,

So I was reading a blog entry on Ben Nadel’s site about him trying to do function pointers in ColdFusion. It seems that a solution was never presented to him, though I am not sure as the entry is nearly a month old. I decided to play with the concept and met with some success. [...]