Presentation is loading. Please wait.

Presentation is loading. Please wait.

Step Outside the Box – Part II ColdFusion and Ajax.

Similar presentations


Presentation on theme: "Step Outside the Box – Part II ColdFusion and Ajax."— Presentation transcript:

1 Step Outside the Box – Part II ColdFusion and Ajax

2 Theo Rushin Jr I am an avid snowboarder in the winter and paintball player during the other seasons. During the week I work as an independent consultant for hire. I have spent the past 6+ years establishing myself as an expert Coldfusion and Flash Rich Internet Application Developer and Trainer. During my 6 years of web application development I have created and supported many enterprise-wide web-based applications I have worked on various development efforts using technologies such as ColdFusion, Flash Actionscript, and Ajax. I can be reached at rushint@yahoo.com or on the snowrushint@yahoo.com

3 ColdFusion and Ajax What Is AJAX? Asynchronous JavaScript and XML AJAX itself is not a technology but a collection of existing technologies used in such a way to provide a more responsive, interactive, and Rich Internet Application-like experience. The key technology used in AJAX is the XMLHttpRequest object. It provides the capability to transmit data to and from the server without refreshing the entire page. The page then communicates with the browser’s Document Object Model (DOM) to update the page.

4 ColdFusion and Ajax What Is AJAX? (continued) Here are the basic technologies involved in Ajax applications: HTML is used to build Web forms and identify fields for use in the rest of your application. JavaScript code is the core code running Ajax applications and it helps facilitate communication with server applications using the XMLHTTPRequest object. DHTML, or Dynamic HTML, helps you update your forms dynamically. You'll use div, span, and other dynamic HTML elements to mark up your HTML. DOM, the Document Object Model, will be used (through JavaScript code) to work with both the structure of your HTML and (in some cases) XML returned from the server.

5 ColdFusion and Ajax Is Ajax a Web 2.0 technology? Well … Yes and No

6 ColdFusion and Ajax Is Ajax a Web 2.0 technology? No because … Ajax is nothing new and has been around for years. The XMLHttpRequest object was introduced in the Internet Explorer browser back in 1999. Companies such as Google, Netflix, and Yahoo have recently re-ignited the interest in using these technologies. Take a look at these sites: http://maps.google.com/ http://www.netflix.com/Default

7 ColdFusion and Ajax Is Ajax a Web 2.0 technology? Yes because … The technologies that makeup Ajax play an integral part in delivering sites that are very interactive, responsive, and deliver a Rich Internet Application-like experience. Check out these sites: http://web2.wsj2.com/the_best_web_20_software_of_2005.htm

8

9 ColdFusion and Ajax Q:What are Mashups? A: A mashup is a website or web application that seamlessly combines content from more than one source into an integrated experience. Content used in mashups is typically sourced from a third party via a public interface or API. Other methods of sourcing content for mashups include Web feeds (e.g. RSS or Atom) and JavaScript. Excerpt from: http://en.wikipedia.org/wiki/Mashup_(web_application_hybridhttp://en.wikipedia.org/wiki/Mashup_(web_application_hybrid)

10 ColdFusion and Ajax Q:How can I integrate AJAX into my ColdFusion apps? A:Use CFAJAX. CFAjax is an AJAX implementation for ColdFusion applications. It allows your ColdFusion pages to communicate with ColdFusion methods using JavaScript. CFAjax comes with easy to use JavaScript and ColdFusion API methods that help marshal the response between your CF methods and client page. CFAjax is an open source product, you are free to use and distribute CFAjax with your applications. The home for this tools is: http://www.indiankey.com/cfajax/

11 ColdFusion and Ajax Q:What browsers support CFAJAX? A: CFAJAX works on the following browsers: CFAJAX currently works on the following browsers: Firefox 1.0+ I.E. 5.0+ Mozilla 1.0+ Netscape 7.0+ Safari 1.2+

12 ColdFusion and Ajax Q:So, how do I use CFAJAX? A: After you have downloaded, installed, and configured the tool you may begin to use the following methods to make AJAX calls.

13 ColdFusion and Ajax function getStateInfo() { var stateName = DWRUtil.getValue("state"); DWREngine._execute(_cfscriptLocation, null, ‘getStateInfo', stateName, getStateInfo_result); } JavaScript function called when user clicks on an element on the page. getStateInfo() – Javascript function that is called on the onClick event. DWRUtil.getValue – CFAJAX method that returns the selected value in a form element. DWREngine._execute – CFAJAX method that calls the server-side function passing the state variable. o_cfscriptLocation: A pointer to the location of the server-side ColdFusion template page. onull: Default value ogetStateInfo: CF function that will be executed ostateName: Parameter being passed to CF function ogetStateInfo_result: JavaScript callback function resortViewer.cfm

14 ColdFusion and Ajax function getStateInfo_result(result) { var divText = “”; for(i = 0; I < result.length; i++) { divText = divText + result[i].resortName + “ ”; } document.getElementById(“resortListing").innerHTML = divText; } JavaScript callback function called after the server-side function returns its results. You use this function to process the data that was returned from the CF function. resortViewer.cfm

15 ColdFusion and Ajax SELECT * FROM Resort WHERE state = ‘#stateName#’ ColdFusion function used to retrieve all records containing the passed in stateName. resorts.cfm

16 ColdFusion and Ajax Q:What other data types can I return? A: CFAJAX will allow you to return a variety of data types including; Strings Numerics Booleans Arrays Structures CFCs

17 ColdFusion and Ajax CF JS alert(result + “ THEO”) String The return for a ColdFusion string is a JavaScript string.

18 ColdFusion and Ajax CF JS var myAge = +return + 2006; Numeric Numerics returned from ColdFusion become JavaScript strings. If you return a numeric and then use the + operator in JavaScript to try to add something to it, JavaScript will join the two. You must first convert the returned value in JavaScript to a number first (e.g. var myCalc = +return + 23;)

19 ColdFusion and Ajax CF JS if(return == “YES”) { alert(“Yes it is true”) } else { alert(“Completely false”) } Boolean Booleans are returned as a “YES” or “NO” (all CAPS) for true or false. You may then need to convert to JavaScript booleans.

20 ColdFusion and Ajax CF JS for(i=0; i < result.length; i++) { alert(result[i]) } Array Only single dimension arrays are supported by CFAJAX. While ColdFusion arrays start at index 1, JavaScript arrays start at index 0.

21 ColdFusion and Ajax CF JS theStructNumberKey = return[0].KEY // returns "MYNUMBER" theStructNumberValue = return[0].VALUE // returns "1" theStructStringKey = return[1].KEY // returns "MYSTRING" theStructStringValue = return[1].VALUE // returns "hello" Structure A CF struct comes back as an array of objects. Each object has two properties, KEY and VALUE (note the CAPS; the key itself is also in CAPS as in the example), representing the key and value of a member in the CF struct; the array contains each of those members e.g.:

22 ColdFusion and Ajax CF SELECT * FROM Resort WHERE state = ‘#stateName#’ JS myFirstRowID = result[0].ID; mySecondRowDate = result[1].DATE; etc. Query The JS object that represents a CF query is an array of row objects, with each column as a property of each object. E.G. a cfquery that returns columns ID, NAME, DATE, SIZE and has 10 rows would become a JS array of length 10, with each element an object with properties ID, NAME, DATE, SIZE (note the CAPS - all column names are capitalized in the JS object):

23 ColdFusion and Ajax CF JS theCFCMyNumberKey = return[0].KEY // returns "MYNUMBER" theCFCMyNumberValue = return[0].VALUE // returns "1" theCFCMyStringKey = return[1].KEY // returns "MYSTRING" theCFCMyStringValue = return[1].VALUE // returns "whatever" CFC CFC properties declared in THIS return exactly the way a struct does (including CAPS for key names)

24 ColdFusion and Ajax Q:What kind of things should I watch out for? A: Yes, there are a few issues you need to know when using CFAJAX. First is the fact that CFAJAX will freeze if you attempt to return a multiline string containing line breaks. You can easily work around that by using the ReReplace function to remove line breaks.

25 ColdFusion and Ajax Secondly should you wish to use the CFSAVECONTENT tag in your ColdFusion function, you must enclose your output in CFOUTPUT tags. This is because CFAJAX contains the following tag which disables all output except those enclosed in CFOUTPUT tags. Another solution would be to include a CFSETTING tag before and after your block of code, setting the enablecfoutputonly attribute off and on respectively. [... Your code here...]

26 ColdFusion and Ajax Thirdly (if that’s a word) you may face cross-domain issues when trying to access resources on a different server from your ColdFusion function. By default, CFAJAX uses the HTTP POST method to pass and retrieve data. Doing so will cause the browser to display a “Security violation” popup. You can resolve the issue by using the HTTP GET method by using the following CFAJAX method. DWREngine.setVerb("GET"); //default is POST

27 ColdFusion and Ajax Lastly we can handle errors by including the following code; Add the following code to the ColdFusion page being used by you CFAJAX code. Add the following code to the error page specified above. alert("#JSStringFormat("Error:" & Error.Diagnostics)#");

28 ColdFusion and Ajax Q:Can we look at some code? A:Yes! It’s Show And Tell

29 ColdFusion and Ajax Q: What CFAJAX resources are there? http://www.indiankey.com/cfajax/ http://cfdj.sys-con.com/read/138966.htm http://www.fusionauthority.com/Techniques/4593-Using-AJAX-with- ColdFusion-Part-I http://groups.yahoo.com/group/cfajax/


Download ppt "Step Outside the Box – Part II ColdFusion and Ajax."

Similar presentations


Ads by Google