+ All Categories
Home > Documents > Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint -...

Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint -...

Date post: 31-Jul-2020
Category:
Upload: others
View: 0 times
Download: 0 times
Share this document with a friend
24
Ajax at HBS David Lieberman Application Software Architect Educational Technologies Group Harvard Business School [email protected]
Transcript
Page 1: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

Ajax at HBS

David LiebermanApplication Software ArchitectEducational Technologies GroupHarvard Business [email protected]

Page 2: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

Why bother?

• Performance gain?

• Simpler code?

• Better, more intuitive UI

• Rising user expectations!

Page 3: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

What does AJAX mean, anyway?

• Asynchronous JavaScript And XML

Page 4: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

What does AJAX mean, anyway?

• Asynchronous JavaScript And XML

Page 5: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

What does AJAX mean, anyway?

• Asynchronous JavaScript And XML• Just plain “Ajax,” thank you.

Page 6: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

My Goals for Ajax

• Take the protocol out of the equation

Page 7: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

My Goals for Ajax

• Take the protocol out of the equation– Put data exchange in the foreground

Page 8: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

My Goals for Ajax

• Take the protocol out of the equation– Put data exchange in the foreground– If I have to write

request.getParameter(“…”)I’m not interested …

Page 9: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

My Goals for Ajax

• Take the protocol out of the equation– Put data exchange in the foreground– If I have to write

request.getParameter(“…”)I’m not interested …

• So: XML in, XML out

Page 10: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

My Goals for Ajax

• Take the protocol out of the equation– Put data exchange in the foreground– If I have to write

request.getParameter(“…”)I’m not interested …

• So: XML in, XML out• Show me the framework!

– Struts?

Page 11: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

XMLHttpRequest properties

• responseText [String]

Raw response text• responseXML [XML Object]

If response text is well-formed XML

• readyState [Integer]

• status [Integer = the HttpResponse code]

Page 12: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

XMLHttpRequest methods

• open([String] method,[String] url,

[boolean] asynchronous)

• send([String] arg)

Page 13: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

XMLHttpRequest event

• onReadyStateChange

Page 14: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

XMLHttpRequest

Set up method variables

function get(url, callback) {

var ajaxrequest;

var ajaxresponse;

. . .

}

Page 15: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

XMLHttpRequest

Bind the request callback method

function get(url, callback) {

. . .

function bindRequestChange() {

if (ajaxrequest.readyState == 4) {

if (ajaxrequest.status == 200) {

ajaxresult = ajaxrequest.responseXML;

eval(callback + "(ajaxresult)");

} else {

alert("There was a problem retrieving the XML data: \n" + ajaxresult.statusText);

}

}

}

}

Page 16: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

XMLHttpRequest

Instantiate the XMLHttpRequest object

function get {. . .

if (window.XMLHttpRequest) {ajaxrequest = new XMLHttpRequest();

} else if (window.ActiveXObject) {ajaxrequest = new ActiveXObject("Microsoft.XMLHTTP");

}

if (ajaxrequest) {ajaxrequest.onreadystatechange = bindRequestChange;ajaxrequest.open("GET", url, true);ajaxrequest.send(null);

}}

Page 17: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

Three Implementations at HBS

• Application Access Admin

• Tutorial Platform Authoring

• Videotools Portal Admin

• Controlled environments with small user communities

Page 18: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

Application Access Admin

• Utility for controlling access to applications or application modules based on group membership

• Ajax feature:– Auto-populating roles selector

Page 19: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

Tutorials Platform Authoring

• Tutorials Platform: exposes Flash content to end-users delivered via XML (Ajax competitor alert!)

• Authoring environment: assembling these tutorials element-by-element

• Ajax features:– Metadata– Tree sorting– Rich text editor

Page 20: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

Gotchas

• Support!

• Google we are not.

• The Javascript DOM API: more like JAXP than JDOM (cfJDOM + JXPath)

• Safari!

Page 21: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

Videotools Portal Admin

• Portal: a stylized, sorted collection of video assets targeted to a specific user community

• Admin requires: sorting, labeling, refreshing, creating RSS feeds.

• Out with XML, in with JSON!

Page 22: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

Coming (maybe) to a browser near you …

• Ajax Push– AKA “Reverse Ajax”– AKA “Comet”

Page 23: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

JavaScript Libraries

• Scriptaculoushttp://script.aculo.us/

• Prototypehttp://prototype.conio.net/

• Yahoo! UI Libraryhttp://developer.yahoo.com/yui/

• Zimbra Toolkithttp://www.zimbra.com/community/ajaxtk_download.html

• Dojo http://dojotoolkit.org/

• DWR http://getahead.org/dwr/getstarted

Page 24: Ajax at HBS - Harvard Universitycscie259/distribution/lectures/12/... · Microsoft PowerPoint - AJAX at HBS.ppt [Read-Only] Created Date: 5/3/2007 11:39:03 AM ...

Other Resources

• http://www.jdom.org

• http://jakarta.apache.org/commons/jxpath/

• http://www.json.org

• http://www.ajaxian.com


Recommended