| By Corey Gilmore, Jason Blum, Phil McCarthy | Article Rating: |
|
| June 2, 2007 05:30 PM EDT | Reads: |
13,120 |
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.
Published June 2, 2007 Reads 13,120
Copyright © 2007 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By 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.
More Stories By 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.
More Stories By 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.
- Creating a ColdFusion Web Service
- Real-World AJAX Book Preview: Creating a Live Search Web Service with PHP
- Real-World AJAX Book Preview: AJAX Without a Server-side Framework
- AJAX in a SOA
- Real-World AJAX Book Preview: Using TinyAjax to Create Live Search
- Real-World AJAX Book Preview: Advanced Techniques
- Real-World AJAX Book Preview: Creating an AJAX-Friendly Web Service
- Real-World AJAX Book Preview: Common Server-Side Languages
- Real-World AJAX Book Preview: Building AJAX-Friendly Web Services
- Real-World AJAX Book Preview: Flavors of XML
























