Blog

3.0.0 M6 bits updated

Luis Majano |  August 08, 2010
Last minute mishap, so I just updated the 3.0.0 M6 bits due to a mis-path location in the exception services.  Please make sure you check your M6 build, it should be coldbox-buildID-201008082139.

Thanks and please re-download

...
Read More

ColdBox 3.0.0 M6 Released!

Luis Majano |  August 08, 2010

I am super excited to announce the ColdBox Platform 3.0.0 M6 release! Why? Because it holds one of my favorite subjects......Caching! With this release we complete yet another standalone framework cycle with the introduction to CacheBox. However, we won't delve too much on CacheBox in this post as it is deserving of its own, so the next post is the announcement of the release of CacheBox 1.0. However, the major part of this release is CacheBox, so lets introduce this bad boy:

Read More

ColdBox Platform Utilities v2.1 Released

Luis Majano |  August 08, 2010
We have now released version 2.1 of the ColdBox Platform Utilities extension for ColdFusion Builder.  This version brings new application templates that are ColdBox 3.0.0 M6 compatible and ready.  We have also introduced a new application temp...
Read More

ColdFusion powered iPhone applications

Luis Majano |  August 04, 2010
Another video we have just added to the vimeo ColdBox Platform channel.  Here is our presentation at CFUnited2010 about building mobile applications such as iPhone or Android native applications by powering them with ColdFusion/ColdBox RESTful services.  Enjoy!
Read More

ColdBox Platform 3.0.0 video at CFUnited

Luis Majano |  August 04, 2010
We have started posting our videos in our new vimeo ColdBox Platform channel so you can enjoy lots of new videos coming.  Here is our presentation at CFUnited2010 about the ColdBox Platform 3.0.0
Read More

Combine/Merge ColdFusion arrays with Java Array addAll()

Curt Gratz |  July 21, 2010

Have you ever wanted a quick and easy way to combine arrays in ColdFusion.  I have done this a number of ways in the best, but came across this gem and thought I would share.

All ColdFusion arrays are of the Java vector type, we can use the underlying java.util.Vector class methods, specifically the addAll() method.

Keep in mind that this is not a "documented" use of arrays in ColdFusion, so at any version it may stop working.

Merging two arrays in ColdFusion with the java.util.vector.addAll()

ar1 = ["a","b","c"]; ar2 = ["d","e","f"]; ar1.addAll(ar2); writeDump(ar1);

 

Read More