| By Graham P. Harrison | Article Rating: |
|
| December 14, 2005 06:30 AM EST | Reads: |
91,076 |
The repaintable 'status' area of the screen is defined as follows:
<span id="adminBanner" class="style1"></span>
'adminBanner' will be used to identify the repaintable area when the XML response is parsed and the message extracted.
The initAdmin() method schedules a JavaScript method, trapAlert(), to be executed after callbackTimeout milliseconds:
function setCallback() {
callBack = setTimeout('trapAlert()',callbackTimeout);
}
function initAdmin() {
setCallback();
}
It's the trapAlert() method that initiates the XMLHttpRequest with the now familiar ring:
function trapAlert() {
if (window.XMLHttpRequest) {
req = new XMLHttpRequest();
} else if (window.ActiveXObject) {
req = new ActiveXObject("Microsoft.XMLHTTP");
}
req.onreadystatechange = processRequest;
req.open("GET", './admin?reqid=0', true);
req.send(null);
}
HTTP GET is used to read data (only a small request parameter is used), and the admin servlet is targeted. The request is asynchronous, and when the request state changes, the processRequest JavaScript function is invoked:
req.onreadystatechange = processRequest;
It might seem reasonable to wait for a response before continuing processing. However, you run the risk of having your script hang if a network or server problem prevents completion of the transaction. An asynchronous call with the onreadystatechange event is more resilient.
As the request cycles through to completion, the processRequest event handler is invoked:
function processRequest() {
if (req.readyState == 4) {
if (req.status == 200) {
parseMessages();
}
....
setCallback(); // only do this when complete
}
}
Listing 1 shows the available status codes. When the request is complete and HTTP status code 200 (OK) is returned, the parseMessages() method is called to extract the data from the XML message. Then the trapAlert() method is rescheduled again. If the XML response has a different retry interval, this will have been set by the parseMessages() function.
Parse XML Response and Repaint Screen
The parseMessages() function first extracts the XML response
response = req.responseXML;
and extracts the elements for alert status, alert text, and retry interval:
itemStatus = response.getElementsByTagName('status')[0].firstChild.nodeValue;
itemText = response.getElementsByTagName('textBody')[0].firstChild.nodeValue;
callbackTimeout =
parseInt(response.getElementsByTagName('callBack')[0].firstChild.nodeValue);
The alert text is then repainted on to the adminBanner document element (see above):
document.getElementById("adminBanner").innerHTML = itemText;
The alert message appears on the screen as shown in Figure 3.
Servlet Formats the XML Response
For the browser to display management alerts to the user, XMLHttpRequest is used to request the management state.
When the browser sends the request, the servlet uses the MBean helper to check the alert state and, if an alert is available, constructs an XML document as a response.
If there's no state to return, the response status is set as follows:
response.setStatus(HttpServletResponse.SC_NO_CONTENT);
Otherwise the text/XML response type is set:
response.setContentType("text/xml");
Listing 2 shows the servlet method in full.
When the servlet is invoked and the XML content returned, the console should print:
Received alert: alert.broadcast
<message><status>1</status><textBody><![CDATA[System Down in 10
Minutes]]></textBody><callBack>10000</callBack></message>
Capacity Modelling and Security
Because AJAX opens up the architecture in interesting ways, two key areas require elaboration:
- Capacity Modelling
- Security
Capacity Modelling
AJAX-enabled rich clients won't necessarily submit requests any more frequently than before. But with XMLHttpRequest executed asynchronously in the browser, the number of HTTP requests to the server increases in line with the retry interval.
- Retry interval (Think Time) = 20 seconds
- Number of connected users = 5000
- Transactions per second (TPS) = 5000/20 = 250
Of course, it depends what these requests do at the server to increase latency in response time. In our example, each request must look up MBean properties and format an XML response, but the response is very small and the MBean is in local memory. With each Web server thread able to handle approximately 200 GET requests a second, and the user requests load balanced across a J2EE server cluster of perhaps 200 threads, the increased loading isn't significant.
When modelling AJAX architectures, increased load injection can be offset by reduced bandwidth, since the response contains data only in contrast to data plus mark-up.
Security
Suppose you only wanted users in the WebUser group to access the Admin servlet?
If only authenticated users can access the admin servlet, then the XMLHttpRequest will run as that user if that user has authenticated.
For example, once user Joe logs into the application, and Joe is a member of group WebUser, the XMLHttpRequest will be able to invoke the Admin servlet.
Adding the following code to the admin servlet would confirm the authenticated subject, returning true and Joe respectively:
request.isUserInRole("WebUser");
request.getRemoteUser();
Published December 14, 2005 Reads 91,076
Copyright © 2005 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Graham P. Harrison
Previously a Senior Consultant with BEA, Graham is the author of Dynamic Web Programming using Java (Prentice Hall, 2000) in addition to a number of articles for the Java Developers Journal and IBM DeveloperWorks. He has a focus on Enterprise Architecture, Performance Tuning and Capacity Planning
![]() |
Mark 09/29/06 02:36:10 PM EDT | |||
I would like to get a copy of the source code that accompanies this article. Please send it to elihusmails[at]gmail[dot]com thank you. |
||||
![]() |
Mark 09/29/06 02:29:13 PM EDT | |||
I would like to get a copy of the source code that accompanies this article. Please send it to elihusmails[at]gmail[dot]com thank you. |
||||
![]() |
hong li 05/29/06 09:40:54 AM EDT | |||
My email address is : hongli3648@yahoo.com.cn |
||||
![]() |
hong li 05/29/06 09:38:44 AM EDT | |||
Could you please forward the whole source code to me which show those code to implement function of notification system useing Ajax and JMX? Thanks! |
||||
![]() |
Pete 02/05/06 09:10:28 AM EST | |||
Great article when you want to understand an integration point between AJAX and wider J2EE space. |
||||
![]() |
Bill Ley 01/31/06 07:44:42 PM EST | |||
This is an awful article. |
||||
![]() |
?? ???? 12/22/05 09:12:21 PM EST | |||
Trackback Added: AJAX with the JMX Notification Framework; blockquote>Integrating AJAX with the JMX Notifica |
||||
- The Top 150 Players in Cloud Computing
- Commercial vs Federal Cloud Computing
- Why IBM’s Server Chief Got Busted
- Industry Experts Discuss the State of Cloud Computing
- Cloud Expo New York Call for Papers Now Open
- Cloud Computing on Gartner's Top 10 List and SYS-CON Events' 2010 Calendar
- US Federal Government is Major Cloud Computing Innovator
- Google Wave
- Ulitzer.com Named Exclusive "New Media" Sponsor of Cloud Computing Conference & Expo
- Tactical Cloud Computing Panel at 1st Annual GovIT Expo
- Adaptivity & Cloud Computing: Exclusive Q&A with CEO Tony Bishop
- 4th International Cloud Expo: Photo Album
- The Top 150 Players in Cloud Computing
- SYS-CON.TV: Cloud Computing Expo Power Panel
- Commercial vs Federal Cloud Computing
- Why IBM’s Server Chief Got Busted
- 1st Annual GovIT Expo: Letter from the Technical Chair
- Industry Experts Discuss the State of Cloud Computing
- Deputy CIO of the CIA to Keynote 1st Annual GovIT Expo
- SOA World Power Panel on SYS-CON.TV
- CIA was Headed to an Enterprise Cloud All Along: Jill Tummler Singer
- Cloud Expo New York Call for Papers Now Open
- 1st Annual Government IT Conference & Expo: Themes & Topics
- Stock in Focus: Dragon Capital
- The i-Technology Right Stuff
- Who Are The All-Time Heroes of i-Technology?
- Get the Message
- Where Are RIA Technologies Headed in 2008?
- i-Technology Viewpoint: Is Web 2.0 the Global SOA?
- i-Technology Viewpoint: Thinking Outside the VC Box
- ESB Myth Busters: 10 Enterprise Service Bus Myths Debunked
- i-Technology Viewpoint: When to Leave Your First IT Job
- SOA Web Services Edge Conference Coverage on SYS-CON.TV
- Five Reasons Why Web 2.0 Matters
- SYS-CON.TV's "SOA Web Services" and "Enterprise Open Source" Programs To Air in December
- SOA World Conference & Expo SYS-CON.TV Power Panel Live From Times Square










Cloud computing is a game changer. The cloud ...






















