Now that Scorpio is here (at least in beta), it is time to start figuring out
all the new tricks of the trade, right? However, as most of your clients will
not be switching immediately, you will still have to be doing ColdFusion 7
work for some time.
How do you run both ColdFusion 7 to support your current clients and
ColdFusion 8 to keep your development skills sharp? You could run one using
the built-in Web server, but that's not really the same as your production
systems. Instead, let's take a look at using the multiserver configuration
option to run both CF7 and CF8 instance... (more)
Many times object-oriented programming (OOP) is billed as the end-all
solution to cure the spaghetti code that can come from procedural style
applications. After all, you just have to stuff your logic code into a
component (big OOP buzzword - encapsulation), and now your code is instantly
better, right? How hard is it to stick a createObject function call or a
tag in when you ... (more)