ASP.NET, VB.NET, and C# Training Classes     
Accelebrate delivers SharePoint , ASP.NET, SQL Server, Java, and other training courses in the USAAccelebrate delivers SharePoint, ASP.NET, SQL Server, and Java training courses in Canada     Accelebrate delivers SharePoint, ASP.NET, SQL Server, and Java training courses in the UK     Accelebrate delivers SharePoint, ASP.NET, SQL Server, and Java training courses in Ireland     Accelebrate delivers SharePoint, ASP.NET, SQL Server, and Java training courses in the Netherlands     Accelebrate delivers SharePoint, ASP.NET, SQL Server, and Java training courses internationally  
1 877 849 1850   0808 234 2132   1 800 550 311   0 800 022 6730   +1 678 648 3113  
Microsoft and .NET TrainingSQL Server TrainingSharePoint TrainingJava TrainingAdobe TrainingDatabase and Reporting TrainingXML, JavaScript, and Other TrainingWeb/Application Server Training
HomeAboutContact Us 


Please contact us
for GSA pricing.

GSA - Accelebrate delivers SharePoint, ASP.NET, SQL Server, and Java training courses
Contract #
GS-35F-0307T



Recent Training Venues

Accelebrate has recently trained for clients in the following cities:

  • Huntsville, Alabama
  • Montgomery / Birmingham, Alabama
  • Anchorage, Alaska
  • Edmonton & Calgary, Alberta
  • Phoenix, Arizona
  • Tucson, Arizona
  • Fayetteville / Little Rock, Arkansas
  • Amsterdam, The Netherlands / Brussels, Belgium
  • Vancouver, British Columbia
  • Oakland / San Jose / San Francisco, California
  • Sacramento, California
  • San Diego, California
  • Orange County / Los Angeles, California
  • Boulder / Colorado Springs / Denver, Colorado
  • Washington, DC
  • Wilmington, Delaware
  • Manchester / London, England
  • Orlando, Florida
  • Fort Lauderdale / Miami, Florida
  • Jacksonville, Florida
  • Saint Petersburg / Tampa, Florida 
  • Alpharetta & Atlanta, Georgia
  • Augusta & Savannah, Georgia
  • Boise, Idaho
  • Chicago, Illinois
  • Indianapolis, Indiana
  • Cedar Rapids / Des Moines, Iowa
  • Dublin, Ireland
  • Wichita, Kansas
  • Lexington / Louisville, Kentucky
  • Baton Rouge/New Orleans, Louisiana
  • Portland, Maine
  • Hagerstown & Frederick, Maryland
  • Annapolis / Baltimore, Maryland
  • Boston / Cambridge, Massachusetts
  • Hartford, Connecticut / Springfield, Massachusetts
  • Ann Arbor / Detroit, Michigan
  • Grand Rapids, Michigan
  • Saint Paul / Minneapolis, Minnesota
  • Jackson, Mississippi
  • St. Louis, Missouri
  • Kansas City, Missouri
  • Lincoln / Omaha, Nebraska
  • Reno and Las Vegas, Nevada
  • Fredericton / Moncton / Saint John, New Brunswick
  • Albuquerque, New Mexico
  • Princeton, New Jersey & Philadelphia, Pennsylvania
  • Albany, New York
  • Buffalo, New York
  • White Plains / New York City, New York
  • Charlotte, North Carolina
  • Durham / Raleigh, North Carolina
  • Canton / Akron, Ohio
  • Cincinnati, Ohio
  • Cleveland & Columbus, Ohio
  • Dayton, Ohio
  • Tulsa / Oklahoma City, Oklahoma
  • Toronto, Ontario
  • Portland, Oregon
  • Pittsburgh, Pennsylvania
  • San Juan, Puerto Rico
  • Providence, Rhode Island
  • Saskatoon / Regina, Saskatchewan
  • Edinburgh / Glasgow, Scotland
  • Columbia & Charleston, South Carolina
  • Spartanburg & Greenville, South Carolina
  • Knoxville, Tennessee
  • Memphis / Nashville, Tennessee
  • Houston, Texas
  • El Paso, Texas
  • San Antonio / Austin, Texas
  • Dallas, Texas
  • Salt Lake City, Utah
  • Fairfax / Dulles / McLean / Herndon / Reston, Virginia
  • Richmond / Alexandria / Arlington, Virginia
  • Virginia Beach / Norfolk, Virginia
  • Tacoma / Seattle, Washington
  • Charleston, West Virginia
  • Madison / Milwaukee, Wisconsin

Advanced ColdFusion Training: Working with XML, Web Services, and the File System in ColdFusion 8

Print This Outline
E-mail This Outline
Get A Quote
Course Number: CF-104
Duration: 2 days
view class outline

ColdFusion Training Overview

Accelebrate's Advanced ColdFusion Training: Working with XML, Web Services, and the File System in ColdFusion 8 training course teaches attendees how to make the best use of several external data types including XML, Web Services, <cfhttp> and more. The course also explores how to read, write, append and even upload ColdFusion® files.

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. These courses can also be delivered as live, private online classes for groups that are geographically dispersed or wish to save on the instructor's or students' travel expenses. To receive a customized proposal and price quote private training at your site or online, 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/?action=category&page=coldfusion.

ColdFusion Training Prerequisites

All attendees must have taken Accelebrate's 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 Adobe Press' ColdFusion Web Application Construction Kit: Advanced Application Development and related courseware.

Software Needed on Each PC

  • Windows XP, Windows Vista, Windows 7, or MacOS X
  • ColdFusion 9 or later - ColdFusion should be set up to run as a stand-alone server for purposes of the class
  • Adobe Dreamweaver 8, Dreamweaver CS3, CS4, or later
  • Microsoft Access
  • Firefox 2.0 or later or Internet Explorer 6 or later
  • A minimum of 2GB RAM

ColdFusion Training Objectives

  • To master XML syntax basics
  • To teach attendees how to load, access, query, and manipulate XML data.
  • To transform XML into readable output for the user using XSL with ColdFusion.
  • To teach students to read and write text files and to upload documents with <cffile>.
  • To dynamically create static HTML pages.
  • To learn how to make http requests with <cfhttp> to display external data.
  • To create an "Intelligent Agent" using <cfhttp> and <cfhttpparam>.
  • To learn how to convert an existing ColdFusion Component into a Web Service and to invoke an External Web Service such as .NET.
  • To master using the WDDX file format to pass data between different environments and computers.

ColdFusion Training Outline

  • XML Syntax Basics
    • XML Logical Structure
    • XML Physical Structure
    • XML Logic: Designing Datasheets
    • Parsing XML data with ColdFusion
    • Demo: Convert an XML datasheet into an XML Document Object with XMLParse()
    • Demo: Referring to Specific XML nodes
    • Demo: Loop through each node with <cfloop>
    • Demo: Counting Children Nodes
    • Exercise: Create a Calendar of Events Built from External XML Files Provided by External Organizations
  • Loading XML data
    • Demo: Access XML Data with <cffile> tag
    • Demo: Build XML Object in .cfm Document with <cfxml> Tag
    • Demo: Query Database to Build XML Document Object
    • Manipulating XML data with Built-in Functions
    • List of Structure/Array Functions that may be used on an XML Document Object
    • List of XML-specific Functions
    • Demo: Add nodes to XML Document Object
    • Exercise: Add an Event to the Calendar
  • Create Query Object from Existing XML
    • Demo: Combine Multiple XML Document Objects into One
    • Demo: Convert XML Document Objects into a Query Object
    • Exercise: Co-mingle the Events on the Calendar
  • Extensible Stylesheet Language (XSL) Review
    • XSL, XSLT, and XSLFO
    • XSL Basics: Linking to an XSL Stylesheet
    • Examining an XSL Stylesheet
    • Server-side XSL Transformation with ColdFusion
    • Demo: Transforming XML Data with XSL
    • Idea! Transforming XML Data into XML Data
    • Exercise: Transform XML data
  • XPath Syntax Basics
    • XPath: the XSL Node Matching Syntax
    • Using XPath with ColdFusion
    • Demo: Select Nodes Based on Attribute Values
    • Exercise: Using XPath to select specific XML elements
  • Read and Write Text Files with <cffile>
    • Demo: Read Plain Text Documents
    • Demo: Write Text File
    • Exercise: Build a Simple Message Board
  • Upload Documents with <cffile>
    • Demo: Dynamically Create Static HTML Pages
    • Form tag additions
    • Saving long variable values with <cfsavecontent>
    • Exercise: Upload External Files
  • Using <cfdirectory>
    • Demo: Using <cfdirectory>
  • <cfhttp>
    • Making http requests with <cfhttp>
    • Demo: Using <cfhttp> to display a complete page
    • Demo: Using <cfhttp> to download a complete page and save with <cffile>
    • Attributes of <cfhttp>
    • Demo: Convert a Text File into a Query with <cfhttp>
    • While looping though the records...
    • Demo: Add a Column to Query
    • Idea! Dynamically Creating Static Pages
    • Exercise: Using <cfhttp> to Access and Parse External Data
  • Passing Variables with <cfhttp> and <cfhttpparam>
    • Creating an Intelligent Agent
    • Demo: Examine a Simple Traditional Application
    • Demo: Convert Simple Application into an Intelligent Agent
    • Exercise: Simulate the Post Method with <cfhttp> and Create an "Intelligent Agent"
  • Web Services
    • Creating WSDL Documents
    • Demo: Converting CFCs into Web Services
    • SOAP
    • A note about security
    • XML Parser
    • Exercise: Convert Existing CFC into Web Service
  • Invoking External Web Services
    • Locating Web Services
    • Invoking .NET Web Services
    • Demo: Consuming internal and external Web Services
    • Exercise: Consuming External Web Services
  • Dreamweaver, Web Services and Components
  • WDDX
  • Conclusion
 

Print This OutlineE-mail This OutlineGet A Quote


Adobe ColdFusion® is a registered trademark of AdobeSystems Incorporated in the United States and/or other countries.
Java® and all Java-based marks are registered trademarks of the Oracle Corporation in the U.S. and other countries.

 
Request Information for Group Training at Your Site   Request Information for Group Training at Your Site
 
Accelebrate®
Focuses on You!


Accelebrate’s courses are taught for private groups of 3 or more people at your site or online anywhere worldwide.

Don't settle for a "one size fits all" public class! Have Accelebrate deliver exactly the training you want, privately at your site or online, for less than the cost of a public class.

For pricing and to learn more, please contact us via information request form or phone, or email us at info@accelebrate.com today.

             
               

VB.NET, C#, ASP, & ASP.NET Training Java Training SQL Server Training
SharePoint Training  Adobe Training PHP Training XML Training Perl Training Sitemap

“Accelebrate,” “Accelerated Learning Celebrated Results,” and the Accelebrate logo are registered trademarks of Accelebrate, Inc. All other product names and trademarks are property of their respective owners. Course outline content may mirror or be derived from the book that each student receives with the course. Otherwise, all content is copyright © 2003- by Accelebrate, Inc. of Atlanta, Georgia, USA. To contact us, please use the contact form, email info@accelebrate.com us, or call 1 877 849 1850 in the US and Canada, 0808 234 2132 in the UK, 1 800 550 311 in Ireland, or +1 678 648 3113 from all other locations.

Recent client sites: Birmingham, AL | Phoenix, AZ | Los Angeles, CA | Sacramento, CA | San Diego, CA | San Francisco, CA | San Jose, CA | Denver, CO | Washington, DC | Jacksonville, FL | Miami, FL | Orlando, FL | Tampa, FL | Atlanta, GA | Chicago, IL | Indianapolis, IN | Boston, MA | Baltimore, MD | Detroit, MI | Minneapolis, MN | Kansas City, MO | Saint Louis, MO | Charlotte, NC | Raleigh, NC | Albuquerque, NM | Las Vegas, NV | Albany, NY | New York City, NY | Cincinnati, OH | Cleveland, OH | Columbus, OH | Dayton, OH | Oklahoma City, OK | Toronto, ON | Portland, OR | Philadelphia, PA | Pittsburgh, PA | Memphis, TN | Nashville, TN | Austin, TX | Dallas, TX | Houston, TX | San Antonio, TX | Salt Lake City, UT | Seattle, WA | Dublin, Ireland | London, UK