 |
Beginning ColdFusion
Advanced ColdFusion
Building ColdFusion Sites with Dreamweaver training
Live Online Training
Please contact us
for GSA pricing.
Contract #
GS-35F-0307T

Complimentary Adobe ColdFusion Training Seminar
Organizations in the Atlanta, Georgia area are encouraged to contact Accelebrate® about having a complimentary, one-hour Adobe ColdFusion seminar delivered for their developers. Contact us today for more information.

Recent Training Venues
Accelebrate has recently trained for clients in the following cities:
- Huntsville, Alabama
- Montgomery / Birmingham, Alabama
- Anchorage, Alaska
- Calgary, Alberta
- Phoenix, Arizona
- Fayetteville / Little Rock, Arkansas
- Oakland / San Jose / San Francisco, California
- Oceanside / San Diego, California
- Pasadena / Orange County / Los Angeles, California
- San Bernardino / Riverside, California
- Boulder / Colorado Springs / Denver, Colorado
- Washington, DC
- Wilmington, Delaware
- Manchester / London, England
- DeLand / Orlando, Florida
- Fort Lauderdale / Miami, Florida
- Gainesville / Jacksonville, Florida
- Saint Petersburg / Tampa, Florida
- Titusville & Melbourne, Florida
- Alpharetta & Atlanta, Georgia
- Augusta & Savannah, Georgia
- Macon & Columbus, Georgia
- Bloomington, Illinois
- Chicago, Illinois
- Indianapolis, Indiana
- Cedar Rapids / Des Moines, Iowa
- Dublin, Ireland
- Kingston, Jamaica
- Wichita, Kansas
- Paducah / Lexington / Louisville, Kentucky
- Baton Rouge, Louisiana
- Valletta, Malta
- Hagerstown & Frederick, Maryland
- Greenbelt / Silver Spring / Baltimore, Maryland
- Boston / Cambridge, Massachusetts
- Hartford, Connecticut / Springfield, Massachusetts
- Taunton, Massachusetts / Providence, Rhode Island
- Ann Arbor / Farmington Hills / Detroit, Michigan
- Grand Rapids, Michigan
- Lansing, Michigan
- Saginaw / Flint / Bay City / Midland, Michigan
- Saint Paul / Minneapolis, Minnesota
- Jackson, Mississippi
- Gulfport / Biloxi, Mississippi
- Whiteman Air Force Base / Kansas City, Missouri
- Reno and Las Vegas, Nevada
- Santa Fe / Albuquerque, New Mexico
- Newark, New Jersey
- Princeton, New Jersey & Philadelphia, Pennsylvania
- White Plains / New York City, New York
- Charlotte, North Carolina
- Durham / Raleigh, North Carolina
- Bowling Green / Toledo, Ohio
- Cincinnati, Ohio
- Cleveland & Columbus, Ohio
- Tulsa / Oklahoma City, Oklahoma
- Toronto, Ontario
- Portland, Oregon
- Pittsburgh, Pennsylvania
- Providence, Rhode Island
- Edinburgh / Glasgow, Scotland
- Columbia & Charleston, South Carolina
- Memphis / Jackson / Nashville, Tennessee
- College Station and Houston, Texas
- El Paso, Texas / Ciudad Juarez, Mexico
- San Antonio / Austin, Texas
- Wichita Falls & Dallas, Texas
- Ogden / Salt Lake City, Utah
- Burlington, Vermont
- Fairfax / Dulles / McLean / Herndon / Reston, Virginia
- Richmond / Alexandria / Arlington, Virginia
- Virginia Beach / Norfolk, Virginia
- Tacoma / Seattle, Washington
- Madison / Milwaukee, Wisconsin
|
 |
 |
Advanced ColdFusion Training
|
Course Number: 305
Duration: 2 days
view class outline
ColdFusion Training Overview
Accelebrate's Advanced ColdFusion training class teaches attendees the advanced ColdFusion language skills they need to build more powerful ColdFusion applications. Attendees learn how to reuse code through functions, components, and CF_ tags, how to store and manipulate data in arrays and structures, and how to handle errors and debug their site using CFERROR, try-catch-finally exception handling, and CFDUMP.
Location and Pricing
Most Accelebrate courses are taught on-site at our clients' locations worldwide for groups of 3 or more attendees and are customized to their specific needs. Please visit our client list to see organizations for whom we have recently delivered training. To receive a customized proposal and price quote, please contact us.
In addition, some courses are available as live, online classes for individuals. To see a schedule of online courses, please visit http://www.accelebrate.com/online_training/adobe.htm.
ColdFusion Training Prerequisites
All students must be fluent in HTML, including text layout, image placement, hyperlinks, tables, and forms. Prior SQL and programming experience is helpful but not required. In addition, all attendees must have taken Beginning ColdFusion training or have equivalent experience.
Hands-on/Lecture Ratio
This ColdFusion training class is 70% hands-on, 30% lecture, with the longest lecture segments lasting for 20 minutes.
ColdFusion Training Materials
All students for this ColdFusion training receive a copy of Macromedia Press' Advanced Adobe ColdFusion Application Development, as well as copies of the instructor's presentation and a CD-R with all files used in the class.
Software Needed on Each PC
- Windows 2000, Windows XP, Windows Vista, or Windows Server 2003
- ColdFusion MX 6.1, 7, 8, or later - ColdFusion MX should be set up to run as a stand-alone server for purposes of the class
- Adobe Dreamweaver MX 2004, Dreamweaver 8, Dreamweaver CS3, or later
- Microsoft Access or SQL Server 2000 or later
- Firefox 1.5 or later or Internet Explorer 6 or later
- A minimum of 512MB RAM (1GB or greater is strongly recommended)
ColdFusion Training Objectives
- To show attendees more of the core language fundamentals of CFML and CFScript, including the use of arrays, lists, and structures for storing data
- To teach students how to efficiently reuse code through the use of CFINCLUDEs, functions, components, and CF_ tags.
- To master techniques for handling errors and debugging code through the use of centralized error handling strategies, try-catch-finally blocks for exception handling, and CFDUMP for displaying variables
- To teach attendees how to exchange data using WDDX and Web services
|
ColdFusion Training Outline
- Introduction
- Lists
- How a list stores data as a delimited string
- Changing the delimiter used to separate list elements
- Instantiating a list
- Adding elements to a list
- Retrieving elements from a list
- Removing or changing elements in a list
- Iterating through a list using CFLOOP
- How to break or continue the loop when necessary
- Discussion of how form data from multiple-select lists is treated as a list in ColdFusion
- Arrays
- How an array stores data as a numbered queue
- When to use an array instead of a list
- Instantiating an array
- Adding elements to an array
- Retrieving elements from an array
- Removing or changing elements in an array
- Iterating through an array using CFLOOP
- Structures
- Discussion of a structure as a type of object with named properties
- When to use a structure instead of an array or list
- Instantiating a structure
- Adding elements to a structure
- Retrieving elements from a structure
- Removing or changing elements in a structure
- Iterating through a structure using CFLOOP
- Introduction to object-oriented concepts
- Classes and objects
- Methods and properties
- Inheritance
- Connecting the concepts with ColdFusion:
- ColdFusion components work as classes and objects
- User-defined functions (UDFs) serve as methods
- Public variables serve as properties
- Understanding user-defined functions
- Creating, storing, and loading UDFs
- Passing arguments to a UDF
- Obtaining a value returned from a UDF
- Variable scoping within functions (and outside of functions)
- Creating and using ColdFusion components (CFCs)
- Wrapping one or more functions within a ColdFusion component
- Proper code formatting
- Saving the file as a .cfc file
- Acceptable directories for .cfc files
- Understanding static functions versus instance functions
- Instantiating and using components
- Reusing components across multiple projects
- Creating and using custom (CF_) tags
- Why write a tag instead of a component?
- Where custom tags can be stored (and how to control this in the ColdFusion Administrator)
- Invoking a custom tag
- Passing attributes to the custom tag
- Returning output and values from the custom tag
- Compare/contrast with CFX tags
- Error handling in ColdFusion
- Using CFDUMP as a way to see the status of all variables in the current template
- Using CFERROR and error pages to display a custom error message to the user
- Implementing structured error/exception handling with try-catch-finally
- Types of exceptions and their precedence
- Logging errors
- Emailing errors to the administrator
- File IO in ColdFusion
- Using CFFILE to read from, write to, append to, create, rename, copy, and delete files
- Using CFDIRECTORY to read from, write to, append to, create, rename, copy, and delete directories
- Processing file uploads from forms
- Setting the ENCTYPE attribute of the FORM tag
- Using CFFILE to handle the file(s) uploaded from the form
- WDDX
- Overview of WDDX as a way to serialize ColdFusion primitives and objects for later use
- Using the CFWDDX tag to serialize and deserialize data
- Alternatives to WDDX
- Web services
- Overview of Web services and their core technologies: SOAP, WSDL, and UDDI
- How to expose component functions as Web services
- How to invoke and use remote Web services
- Strategies for handling Web service failures at runtime
- Conclusion
|
| |
|
 |
Accelebrate®
Comes to You! |
 |
Accelebrate's courses are taught exclusively on-site at your location for groups of 3 or more attendees, anywhere worldwide.
Don't settle for a "one size fits all" public class! Have Accelebrate come to your site and deliver exactly the training you want, for less than the cost of a public class.
For pricing and to learn more, please call us at +1 877 849 1850, fill out our information request form, or email us at info@accelebrate.com today.

|
 |
|
| |
| Accelebrate E-Newsletter |
 |
Get the latest Web development news delivered to your email box once a month!

|
 |
|
|
 |