YOUR FEEDBACK
Immo Huneke wrote: A well written article, an ingenious solution to a real problem often encountere...
Cloud Computing Conference
March 30 - April 1, New York
Register Today and SAVE !..

SYS-CON.TV

2008 East
DIAMOND SPONSOR:
Data Direct
Frontiers in Data Access: The Coming Wave in Data Services
PLATINUM SPONSORS:
Red Hat
The Opening of Virtualization
Intel
Virtualization – Path to Predictive Enterprise
Green Hills
IT Security in a Hostile World
JBoss / freedom oss
Practical SOA Approach
GOLD SPONSORS:
Software AG
The Art & Science of SOA: How Governance Enables Adoption
PlateSpin
Effective Planning for Virtual Infrastructure Growth
Fujitsu
Automated Business Process Discovery & Virtualization Service
Ceedo
Workspace Virtualization
Click For 2007 West
Event Webcasts

2008 East
PLATINUM SPONSORS:
Appcelerator
Think Fast: Accelerate AJAX Development with Appcelerator
GOLD SPONSORS:
DreamFace Interactive
The Ultimate Framework for Creating Personalized Web 2.0 Mashups
ICEsoft
AJAX and Social Computing for the Enterprise
Kaazing
Enterprise Comet: Real–Time, Real–Time, or Real–Time Web 2.0?
Nexaweb
Now Playing: Desktop Apps in the Browser!
Sun
jMaki as an AJAX Mashup Framework
POWER PANELS:
The Business Value
of RIAs
What Lies Beyond AJAX?
KEYNOTES:
Douglas Crockford
Can We Fix the Web?
Anthony Franco
2008: The Year of the RIA
Click For 2007 Event Webcasts
TOP THREE LINKS YOU MUST CLICK ON


Creating a ColdFusion Web Service
This is the ColdFusion equivalent of the PHP Web service we just looked at

This content is reprinted from Real-World AJAX: Secrets of the Masters published by SYS-CON Books. To order the entire book now along with companion DVDs for the special pre-order price, click here for more information. Aimed at everyone from enterprise developers to self-taught scripters, Real-World AJAX: Secrets of the Masters is the perfect book for anyone who wants to start developing AJAX applications.

Creating a ColdFusion Web Service
We'll duplicate our PHP Web service in ColdFusion now using XMLRPC.CFC to format our XML response and the CFJSON.cfm for our JSON response.

Listing 6.7 The Code

<CFSETTING showDebugOutput="no" enablecfoutputonly="yes">
<!--- Because of ColdFusion's poor whitespace handling it is necessary to
//--- use enablecfoutputonly="yes" and then wrap all of our output in CFOUTPUT tags.
--->

<!--- Only proceed if we were given numbers to sum --->
<CFIF IsDefined('URL.numbers')>
   <!--- Split our string into an array using REReplace on any non-digit character. --->
   <CFSET numbers = ListToArray(REReplace(URL.numbers, "[^\d]+", " ", "all"), ' ')>
   <CFSET sum = ArraySum(numbers)>

   <!--- Build our response object.
   //--- We include the original request only to make our response more complex.
   --->
   <CFSET response = StructNew()>
   <CFSET garbage = StructInsert(response, 'sum', sum)>
   <CFSET garbage = StructInsert(response, 'numbers', numbers)>

   <!--- Check to see if an output format was requested, and if it was JSON
   //--- Return XML output by default
   --->
   <CFIF IsDefined('URL.output') AND URL.output EQ 'json'>
     <CFINCLUDE template="jsencode.cfm">
     <CFOUTPUT>#jsonencode(response)#</CFOUTPUT>
   <CFELSE>
     <!--- Send our XML content-type header --->
     <CFHEADER name="Content-type" value="text/xml">
     <CFSET arr = ArrayNew(1)>
     <CFSET arr[1] = #response#>
       <!--- We're using the XMLRPC component to format our response --->
     <CFINVOKE component="xmlrpc"
       method="CFML2XMLRPC"
       returnvariable="rs"
       type="response"
       data="#arr#">

       <!--- Replace is only used to make our output more human-readable --->
       <CFOUTPUT><?xml version="1.0" encoding="iso-8859-1"?>
         #Replace(rs, "><", ">" & Chr(13) & Chr(10) & "<", "all")#
       </CFOUTPUT>
     </CFIF>
   </CFIF>

Dissecting the Code
This is the ColdFusion equivalent of the PHP Web service we just looked at. It can be accessed in a REST-like manner through the resources URI and expects two variables in the query string: numbers and output. The variable numbers will contain a delimited list of numbers that this Web service will sum and return. To make our return object more complex, we'll return the original request as well as the sum. You can specify your desired output format by setting output to JSON or XML.

A normal GET request to http://yourserver/add.cfm?numbers=1+2+3&output=json will print the following:

{"numbers":[1,2,3],"sum":6}

That same request with output set to XML (http://yourserver/add.cfm?numbers=1+2+3&output=xml) will return:

Listing 6.8

<?xml version="1.0" encoding="iso-8859-1"?>
<methodResponse>
  <params>
   <param>
    <value>
     <struct>
      <member>
       <name>numbers</name>
       <value>
        <array>
         <data>
          <value>
           <double>1</double>
          </value>
          <value>
           <double>2</double>
          </value>
          <value>
           <double>3</double>
          </value>
         </data>
        </array>
       </value>
      </member>
      <member>
       <name>sum</name>
        <value>
         <double>6</double>
        </value>
       </member>
      </struct>
     </value>
    </param>
   </params>
</methodResponse>

There are slight differences between the PHP and ColdFusion XML output, with the ColdFusion XML-RPC component choosing to define anything that passes isNumeric() as a double. You can force a type, but to keep the code simple we haven't done that here. We array_walk() to apply settype() to all the values of our array in PHP and set the type to integer.

Now that we've created some Web services, let's take a look at how to use AJAX to consume these and other Web services.

Server-Side Architectures
In this section we'll build several AJAX applications that will consume a Web service. We'll show examples that use a client-side framework and server-side frameworks.

This content is reprinted from Real-World AJAX: Secrets of the Masters published by SYS-CON Books. To order the entire book now along with companion DVDs, click here to order.

About Corey Gilmore
Corey Gilmore is the president of CFG Consulting, Inc., specializing in developing rich internet applications with ColdFusion, PHP and Ajax for the Federal government and Fortune 100 clients. He guiltily enjoys designing and implementing low-cost, high performance business continuity plans using VMware ESX server. As the former Director of Information Technology for the United States Senate Democratic Leadership, he designed and implemented a continuity of operations plan to ensure Senate business continuity in the event of a disaster. Corey can be reached at cfgci.com.

About Jason Blum
Jason Blum is principal engineer with the advanced technologies development team in the United States Senate, Office of the Sergeant at Arms. Formerly the lead administrator of the Senate’s shared Web hosting environment, Jason now designs and manages the implementation of schema and pattern-centric solutions for Senate offices in XML, ColdFusion, Flex, and .NET. He is a Certified Advanced ColdFusion developer with a BA in philosophy, Masters Degrees in philosophy of education and in IT, and an intermediate certification in Hungarian from itk.hu.

About Phil McCarthy
Philip McCarthy is a UK-based software development consultant specializing in J2EE and Web technologies. An early adopter of rich browser-based client development, he has several years' experience of integrating Ajax technologies into enterprise Java frameworks, gained on projects in the financial services, telecoms, and digital media sectors. Philip is also the author of the "Ajax for Java Developers" series for IBM developerWorks, and blogs about software development at chimpen.com.

LATEST AJAXWORLD RIA STORIES
Curl announced the release of Curl Data Kit Data Services (CDK-DS) for enterprise developers building new applications using Adobe Flex or Flash, as well as developers upgrading existing Curl applications. This addition to the Curl Rich Internet Application (RIA) Platform is an i...
rPath and WANdisco today announced that WANdisco has selected the rPath rBuilder and rPath Lifecycle Management Platform to build and maintain its Subversion MultiSite solution as a manageable set of application images for delivery in virtualized and cloud-based environments. rPa...
MuleSource has announced a partnership with FastConnect that will provide Mule architecture and implementation services throughout the French market. FastConnect spans the domains of data and service integration, through to the user interface, using technologies such as SOA, dist...
Adobe and Intel plan to collaborate on porting Adobe’s Flash widgetry to Intel’s Media Processor CE 3100, a way to put Flash-enhanced web content and rich Flash applications on television. The chip is bound for cable set-top boxes, Blu-ray Disc players, digital TVs and retail...
Here, SYS-CON's Web 2.0 Journal has asked a selection of the industry's brightest minds what their own advice would be in these troubled times, and assembled it into a ten-point guide for software vendors, entrepreneurs, and startups to riding out a recession.
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS
SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

Click Here

SYS-CON FEATURED WHITEPAPERS

ADS BY GOOGLE