Reflection in ColdFusion Part 2

March 28, 2007

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 class [...]

0

Reflection in ColdFusion

March 27, 2007

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. [...]

1