SlideShare a Scribd company logo
AJAX
Asynchronous JavaScript And XML
AGENDA
Introduction to AJAX.
Traditional web application.
AJAX web application.
Programming AJAX.
References
2
Introduction to AJAX
AJAX stands for Asynchronous JavaScript And XML. 
It  is  a  part  of Web 2.0 Techniques which  allows  some 
part  or  the  whole  document  to  dynamically  update 
without refreshing the whole web page. 
So  the  time  taken  to  get  the  response  from  the  server 
gets  reduced  as  the  pages  are  getting  updated  in  the 
background through AJAX.
3
Introduction to AJAX(continued..)
AJAX Acronym:
A:
‘A’ stands for Asynchronous mode. This technique allows 
the web page to make request in 
asynchronous/synchronous mode to the web server.. The 
advantage of making it asynchronous is that is will allow 
the web page to make multiple calls at a same time which 
will work in the background and will update the page 
dynamically as soon the request gets over.
3
Introduction to AJAX(continued..)
AJAX Acronym:
J:
‘J’ stands for JavaScript. AJAX extensively rely on JavaScript 
Engine for its functioning. So it is essential that the 
JavaScript should be enabled for AJAX to work.
X:
‘X’ stands for XML. AJAX uses the XMLHttpRequest 
Object of the JavaScript Engine. With this object it can 
also handle the request and response messages in XML 
Format apart from traditional text format.
3
4
Traditional web application
The traditional model talks about majority of the user activities 
triggering an HTTP request back to the web server and thereby, 
the  server  returning  the  HTML  page  to  the  client  after  doing 
some processing. 
Technically this works fine, but does not give out a favourable 
user experience. There is a lot of wait time involved for the end 
user.
4
Traditional web application(continued..)
Fig shows client upon requesting the server need to wait until it 
get response from the server.
Fig. 2 traditional web application communication
4
AJAX web application
Fig. 3 AJAX web application model
4
AJAX web application (continued..)
Fig. 4 AJAX web application communication
4
AJAX web application (continued..)
 An Ajax application eliminates the start-stop-start-stop nature of interaction on the Web by
introducing an intermediary — an Ajax engine — between the user and the server
 Instead of loading a webpage, at the start of the session, the browser loads an Ajax engine.
 AJAX engine is responsible for both rendering the interface the user sees and
communicating with the server on the user’s behalf.
 The Ajax engine allows the user’s interaction with the application to happen
asynchronously — independent of communication with the server.
 Every user action that normally would generate an HTTP request takes the form of a
JavaScript call to the Ajax engine instead.
 If the engine needs something from the server in order to respond to the browser, the
engine makes those requests asynchronously using java script XMLHttpRequest.
AJAX Working
5
Working of AJAX
There is a 5 step approach for the browser to work with AJAX.
1.Initialize the XMLHttpRequest Object
2.Opening the connection to the remote server side script
3.Define the function handler
4.Send the request back to the server
5.Receive the data from the server through the handler
6
Working of AJAX (continued..)
Step 1–Initialize the XMLHttpRequest Object:
Every browser has a different way to initialize the XMLHttpObject. For example
Microsoft Browsers treat them as a ActiveX Object where as other browsers like
Firefox, Chrome, etc. treat them as a XMLHttp Object.
Defining XMLHttpRequest Object in Internet Explorer:
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
Depending on the browser version it will take appropriate ActiveX Object. Here we are
creating a new ActiveXObject and assigning it to xmlHttp variable.
Defining XMLHttpRequest Object in Firefox, chrome Browsers:
xmlHttp = new XMLHttpRequest();
Here we are creating a new Object instance of the XMLHttpRequest and assigning it
to xmlHttp variable. 6
Working of AJAX (continued..)
Step 2 – Opening the connection to the remote server side script
After successfully creating the AJAX object you now try to call the remote
script.
Methods inside XMLHttp Object for Connection:
xmlhttp.open(method_name, url, mode of operation);
Responsible for opening the connection to the remote server.
method – It can be GET or POST depending on the amount of data
you want to send to the server.
remote filename(url) – Server path of the remote file name.
mode of operation – Accepts a Boolean value indication Async/Sync
mode of operation. True indicates Asynchrou nous Mode whereas False
indicated Synchronous Mode.
Example:-
 xmlhttp.open("GET", dynamic.jsp?reset, true) for GET method
(true/false -> Asynchronous/synchronous).
 xmlhttp.open("POST“ ,url, true); for POST method 6
Working of AJAX (continued..)
 Step 3 – Define the function handler on change of every state
During AJAX operation while connecting to the remote script, the server returns various
states value which indicates the current state of operation. So we have to define a function
that will take care of the states and after the response is complete fetch all the data and
display it.
xmlhttp.onreadystatechange = handleServerResponse;
6
readyState Description
0 Initialized
1 loading
2 loaded
3 Some interactive with the
server (Complete Data not
available)
4 Complete
handleServerResponse is the callback function for every change in state. There are 5 different
states that the web server will return in AJAX call.
Working of AJAX (continued..)
Step 4 – Send off a request to the server:
This step will tell the Ajax Object to send the request back to the Web
Server.
xmlhttp.send(null); //GET METHOD
xmlhttp.send(param); //POST METHOD
In GET Method you pass all the data along with the url in .open() method.
In POST Method you pass all the data along with the variable inside send
method.
Step 5 – Receive the data from the server through the function
handler
You will get all your data back from the server from the function handler function.
You will need to check for ready state before capturing the data.
6
Status Code Definition
200 OK
400 Bad Request
401 Unauthorized
404 Not Found
405 Method Not Allowed
500 Internal Server Error
Working of AJAX (continued..)
function handleServerResponse() {
if(xmlhttp.readystate == 4) {
if(xmlhttp.status == 200) {
//Perform your operation
}
}
else {
//Loading state or show error message }}
The above code tells the JavaScript Engine to process further only when the
readystate = = 4. Also inside we check for status which gives me the HTTP Status. If
both the condition matches then proceed further and perform your operation.
If the ready state does not matches then you can display Loading State until it
reaches 4.
6
Working of AJAX (continued..)
Accessing the response data:
We have two options to collect the data:
1. xmlHttp.responseText: It is used to access plain text response from the
server.
2. xmlHttp.responseXML: It is used to obtain XML formatted data.
In the method above, the response data is collected in the variable str and
then it is used to alert the message.
Example : -
document.getElementById(“pid”).innerHTML = xmlHttp.responseText;
here in the above example the responseText in made visible in field with id “pid”.
6
Asynchronous data transfer using AJAX
Client Side Program
Step 1: Creating XMLHttpRequest();
xmlHttp = new XMLHttpRequest();
Step 2: Opening the connection to the remote server side script:-
When page is first time loaded:
 xmlhttp.open(GET, ”dynamic.jsp?function=reset” , true);
 GET method used.
 URL: Server side program dynamic.jsp’s variable function is set to reset.
 Asynchronous mode of operation.
6
Asynchronous data transfer using AJAX (continued..)
Client Side Program
After loading:
 xmlhttp.open(GET, ”dynamic.jsp?function=ok” , true);
 Server side code dynamic.jsp’s variable function is set to ok.
Step 3: Define the function handler on change of every state:-
Initial loading
 xmlhttp.onreadystatechange = startCallback;
After loading
 xmlhttp.onreadystatechange = pollcallback;
6
Asynchronous data transfer using AJAX (continued..)
Client Side Program
Step 4: Send off a request to the server:-
xmlhttp.send(null); //GET METHOD
Step 5: Receive the data from the server through the function handler:-
Initial loading
• function startCallback() {
if(xmlhttp.readystate == 4) {
if(xmlhttp.status == 200) {
refresh time();
}
}
} 6
Asynchronous data transfer using AJAX (continued..)
Client Side Program
After loading
• function pollcallback () {
if(xmlhttp.readystate == 4) {
if(xmlhttp.status == 200) {
message = xmlHttp.responseText;xmlHttp.responseText;
refresh time();
}
}
}
• For every specified milliseconds the function pollcallback() will get executed and
responseText is the response given by the server.
•responseText is used for displaying data in Jlabel and for every
specified milliseconds only Jlabel area is loaded instead of loading whole
page for updating data. 6
Asynchronous data transfer using AJAX (continued..)
Server Side Program
The String variable ‘function’ value is checked every time.
if function = “reset”
 Initial display is loaded.
If function is other than “reset”
 Loaded jlabel’s text will get updated with new values.
Response is sent to client using,
response.getwriter(); //which is of Printwriter() type
6
REFERENCES
www.hiteshagrawal.com/ajax/basics-of-ajax-part-1/
www.javajazzup.com/issue10/page14.shtml
www.adaptivepath.com/ideas/ajax-new-approach-
web-applications/
www.dotnetgallery.com/tutorials/4-ASPNET-
Ajax.aspx
14
Ajax

More Related Content

PPT
Aggregating Data Using Group Functions
Salman Memon
 
PPTX
Mysql Crud, Php Mysql, php, sql
Aimal Miakhel
 
PDF
JavaScript - Chapter 10 - Strings and Arrays
WebStackAcademy
 
PPTX
Functions in c++
Rokonuzzaman Rony
 
PPTX
Introduction to ajax
Pihu Goel
 
PPTX
PHP Powerpoint -- Teach PHP with this
Ian Macali
 
PPTX
PHP Functions & Arrays
Henry Osborne
 
Aggregating Data Using Group Functions
Salman Memon
 
Mysql Crud, Php Mysql, php, sql
Aimal Miakhel
 
JavaScript - Chapter 10 - Strings and Arrays
WebStackAcademy
 
Functions in c++
Rokonuzzaman Rony
 
Introduction to ajax
Pihu Goel
 
PHP Powerpoint -- Teach PHP with this
Ian Macali
 
PHP Functions & Arrays
Henry Osborne
 

What's hot (20)

PPT
MYSQL - PHP Database Connectivity
V.V.Vanniaperumal College for Women
 
PDF
JavaScript - Chapter 13 - Browser Object Model(BOM)
WebStackAcademy
 
PPT
Document Object Model
chomas kandar
 
PPSX
Php and MySQL
Tiji Thomas
 
PPTX
PHP FUNCTIONS
Zeeshan Ahmed
 
PPT
Css Ppt
Hema Prasanth
 
PPTX
Lesson 6 php if...else...elseif statements
MLG College of Learning, Inc
 
PDF
JavaScript - Chapter 6 - Basic Functions
WebStackAcademy
 
PPSX
Javascript variables and datatypes
Varun C M
 
PPTX
Introduction to JavaScript Basics.
Hassan Ahmed Baig - Web Developer
 
PPT
Control Structures In Php 2
Digital Insights - Digital Marketing Agency
 
PPT
Asp.net.
Naveen Sihag
 
PPT
Arrays in PHP
Compare Infobase Limited
 
PPTX
Introduction to Angularjs
Manish Shekhawat
 
PPT
jQuery Ajax
Anand Kumar Rajana
 
PPTX
Modern JS with ES6
Kevin Langley Jr.
 
PPT
MYSQL.ppt
webhostingguy
 
PPTX
Servlets
Akshay Ballarpure
 
PPTX
Servlets
ZainabNoorGul
 
MYSQL - PHP Database Connectivity
V.V.Vanniaperumal College for Women
 
JavaScript - Chapter 13 - Browser Object Model(BOM)
WebStackAcademy
 
Document Object Model
chomas kandar
 
Php and MySQL
Tiji Thomas
 
PHP FUNCTIONS
Zeeshan Ahmed
 
Css Ppt
Hema Prasanth
 
Lesson 6 php if...else...elseif statements
MLG College of Learning, Inc
 
JavaScript - Chapter 6 - Basic Functions
WebStackAcademy
 
Javascript variables and datatypes
Varun C M
 
Introduction to JavaScript Basics.
Hassan Ahmed Baig - Web Developer
 
Control Structures In Php 2
Digital Insights - Digital Marketing Agency
 
Asp.net.
Naveen Sihag
 
Introduction to Angularjs
Manish Shekhawat
 
jQuery Ajax
Anand Kumar Rajana
 
Modern JS with ES6
Kevin Langley Jr.
 
MYSQL.ppt
webhostingguy
 
Servlets
ZainabNoorGul
 
Ad

Similar to Ajax (20)

PPTX
Unit-5.pptx
itzkuu01
 
PDF
Ajax and xml
sawsan slii
 
PDF
Core Java tutorial at Unit Nexus
Unit Nexus Pvt. Ltd.
 
PPT
Asynchronous JavaScript & XML (AJAX)
Adnan Sohail
 
PPT
Ajax Tuturial
Anup Singh
 
PPT
Ajax
ch samaram
 
PPTX
Ajax
Zia_Rehman
 
PPTX
Ajax Technology
Zia_Rehman
 
PPT
Ajax tutorial by bally chohan
WebVineet
 
PPTX
Web-Engineering-Lec-14 (1 ).pptx
iamayesha2526
 
PPTX
Web-Engineering-Lec-14 (1) .pptx
iamayesha2526
 
PPTX
AJAX.pptx
Ganesh Chavan
 
PPTX
Ajax
Nibin Manuel
 
PPT
Ajax
Manav Prasad
 
PPT
Web Programming using Asynchronous JavaX
SivanN6
 
PPT
PHP - Introduction to PHP AJAX
Vibrant Technologies & Computers
 
PDF
Ajax
gauravashq
 
Unit-5.pptx
itzkuu01
 
Ajax and xml
sawsan slii
 
Core Java tutorial at Unit Nexus
Unit Nexus Pvt. Ltd.
 
Asynchronous JavaScript & XML (AJAX)
Adnan Sohail
 
Ajax Tuturial
Anup Singh
 
Ajax Technology
Zia_Rehman
 
Ajax tutorial by bally chohan
WebVineet
 
Web-Engineering-Lec-14 (1 ).pptx
iamayesha2526
 
Web-Engineering-Lec-14 (1) .pptx
iamayesha2526
 
AJAX.pptx
Ganesh Chavan
 
Web Programming using Asynchronous JavaX
SivanN6
 
PHP - Introduction to PHP AJAX
Vibrant Technologies & Computers
 
Ad

Recently uploaded (20)

PPT
Understanding the Key Components and Parts of a Drone System.ppt
Siva Reddy
 
PDF
Packaging Tips for Stainless Steel Tubes and Pipes
heavymetalsandtubes
 
PPTX
quantum computing transition from classical mechanics.pptx
gvlbcy
 
PPTX
Online Cab Booking and Management System.pptx
diptipaneri80
 
PPTX
MSME 4.0 Template idea hackathon pdf to understand
alaudeenaarish
 
PDF
Cryptography and Information :Security Fundamentals
Dr. Madhuri Jawale
 
PDF
The Effect of Artifact Removal from EEG Signals on the Detection of Epileptic...
Partho Prosad
 
PDF
2025 Laurence Sigler - Advancing Decision Support. Content Management Ecommer...
Francisco Javier Mora Serrano
 
PPTX
sunil mishra pptmmmmmmmmmmmmmmmmmmmmmmmmm
singhamit111
 
PPTX
business incubation centre aaaaaaaaaaaaaa
hodeeesite4
 
PDF
Zero carbon Building Design Guidelines V4
BassemOsman1
 
PDF
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
PPTX
22PCOAM21 Session 2 Understanding Data Source.pptx
Guru Nanak Technical Institutions
 
PDF
2010_Book_EnvironmentalBioengineering (1).pdf
EmilianoRodriguezTll
 
PDF
20ME702-Mechatronics-UNIT-1,UNIT-2,UNIT-3,UNIT-4,UNIT-5, 2025-2026
Mohanumar S
 
PDF
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
PDF
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
PDF
Machine Learning All topics Covers In This Single Slides
AmritTiwari19
 
PPTX
Information Retrieval and Extraction - Module 7
premSankar19
 
PPTX
MT Chapter 1.pptx- Magnetic particle testing
ABCAnyBodyCanRelax
 
Understanding the Key Components and Parts of a Drone System.ppt
Siva Reddy
 
Packaging Tips for Stainless Steel Tubes and Pipes
heavymetalsandtubes
 
quantum computing transition from classical mechanics.pptx
gvlbcy
 
Online Cab Booking and Management System.pptx
diptipaneri80
 
MSME 4.0 Template idea hackathon pdf to understand
alaudeenaarish
 
Cryptography and Information :Security Fundamentals
Dr. Madhuri Jawale
 
The Effect of Artifact Removal from EEG Signals on the Detection of Epileptic...
Partho Prosad
 
2025 Laurence Sigler - Advancing Decision Support. Content Management Ecommer...
Francisco Javier Mora Serrano
 
sunil mishra pptmmmmmmmmmmmmmmmmmmmmmmmmm
singhamit111
 
business incubation centre aaaaaaaaaaaaaa
hodeeesite4
 
Zero carbon Building Design Guidelines V4
BassemOsman1
 
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
22PCOAM21 Session 2 Understanding Data Source.pptx
Guru Nanak Technical Institutions
 
2010_Book_EnvironmentalBioengineering (1).pdf
EmilianoRodriguezTll
 
20ME702-Mechatronics-UNIT-1,UNIT-2,UNIT-3,UNIT-4,UNIT-5, 2025-2026
Mohanumar S
 
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
Machine Learning All topics Covers In This Single Slides
AmritTiwari19
 
Information Retrieval and Extraction - Module 7
premSankar19
 
MT Chapter 1.pptx- Magnetic particle testing
ABCAnyBodyCanRelax
 

Ajax

  • 2. AGENDA Introduction to AJAX. Traditional web application. AJAX web application. Programming AJAX. References 2
  • 3. Introduction to AJAX AJAX stands for Asynchronous JavaScript And XML.  It  is  a  part  of Web 2.0 Techniques which  allows  some  part  or  the  whole  document  to  dynamically  update  without refreshing the whole web page.  So  the  time  taken  to  get  the  response  from  the  server  gets  reduced  as  the  pages  are  getting  updated  in  the  background through AJAX. 3
  • 4. Introduction to AJAX(continued..) AJAX Acronym: A: ‘A’ stands for Asynchronous mode. This technique allows  the web page to make request in  asynchronous/synchronous mode to the web server.. The  advantage of making it asynchronous is that is will allow  the web page to make multiple calls at a same time which  will work in the background and will update the page  dynamically as soon the request gets over. 3
  • 5. Introduction to AJAX(continued..) AJAX Acronym: J: ‘J’ stands for JavaScript. AJAX extensively rely on JavaScript  Engine for its functioning. So it is essential that the  JavaScript should be enabled for AJAX to work. X: ‘X’ stands for XML. AJAX uses the XMLHttpRequest  Object of the JavaScript Engine. With this object it can  also handle the request and response messages in XML  Format apart from traditional text format. 3
  • 6. 4 Traditional web application The traditional model talks about majority of the user activities  triggering an HTTP request back to the web server and thereby,  the  server  returning  the  HTML  page  to  the  client  after  doing  some processing.  Technically this works fine, but does not give out a favourable  user experience. There is a lot of wait time involved for the end  user.
  • 8. 4 AJAX web application Fig. 3 AJAX web application model
  • 9. 4 AJAX web application (continued..) Fig. 4 AJAX web application communication
  • 10. 4 AJAX web application (continued..)  An Ajax application eliminates the start-stop-start-stop nature of interaction on the Web by introducing an intermediary — an Ajax engine — between the user and the server  Instead of loading a webpage, at the start of the session, the browser loads an Ajax engine.  AJAX engine is responsible for both rendering the interface the user sees and communicating with the server on the user’s behalf.  The Ajax engine allows the user’s interaction with the application to happen asynchronously — independent of communication with the server.  Every user action that normally would generate an HTTP request takes the form of a JavaScript call to the Ajax engine instead.  If the engine needs something from the server in order to respond to the browser, the engine makes those requests asynchronously using java script XMLHttpRequest.
  • 12. Working of AJAX There is a 5 step approach for the browser to work with AJAX. 1.Initialize the XMLHttpRequest Object 2.Opening the connection to the remote server side script 3.Define the function handler 4.Send the request back to the server 5.Receive the data from the server through the handler 6
  • 13. Working of AJAX (continued..) Step 1–Initialize the XMLHttpRequest Object: Every browser has a different way to initialize the XMLHttpObject. For example Microsoft Browsers treat them as a ActiveX Object where as other browsers like Firefox, Chrome, etc. treat them as a XMLHttp Object. Defining XMLHttpRequest Object in Internet Explorer: xmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); Depending on the browser version it will take appropriate ActiveX Object. Here we are creating a new ActiveXObject and assigning it to xmlHttp variable. Defining XMLHttpRequest Object in Firefox, chrome Browsers: xmlHttp = new XMLHttpRequest(); Here we are creating a new Object instance of the XMLHttpRequest and assigning it to xmlHttp variable. 6
  • 14. Working of AJAX (continued..) Step 2 – Opening the connection to the remote server side script After successfully creating the AJAX object you now try to call the remote script. Methods inside XMLHttp Object for Connection: xmlhttp.open(method_name, url, mode of operation); Responsible for opening the connection to the remote server. method – It can be GET or POST depending on the amount of data you want to send to the server. remote filename(url) – Server path of the remote file name. mode of operation – Accepts a Boolean value indication Async/Sync mode of operation. True indicates Asynchrou nous Mode whereas False indicated Synchronous Mode. Example:-  xmlhttp.open("GET", dynamic.jsp?reset, true) for GET method (true/false -> Asynchronous/synchronous).  xmlhttp.open("POST“ ,url, true); for POST method 6
  • 15. Working of AJAX (continued..)  Step 3 – Define the function handler on change of every state During AJAX operation while connecting to the remote script, the server returns various states value which indicates the current state of operation. So we have to define a function that will take care of the states and after the response is complete fetch all the data and display it. xmlhttp.onreadystatechange = handleServerResponse; 6 readyState Description 0 Initialized 1 loading 2 loaded 3 Some interactive with the server (Complete Data not available) 4 Complete handleServerResponse is the callback function for every change in state. There are 5 different states that the web server will return in AJAX call.
  • 16. Working of AJAX (continued..) Step 4 – Send off a request to the server: This step will tell the Ajax Object to send the request back to the Web Server. xmlhttp.send(null); //GET METHOD xmlhttp.send(param); //POST METHOD In GET Method you pass all the data along with the url in .open() method. In POST Method you pass all the data along with the variable inside send method. Step 5 – Receive the data from the server through the function handler You will get all your data back from the server from the function handler function. You will need to check for ready state before capturing the data. 6 Status Code Definition 200 OK 400 Bad Request 401 Unauthorized 404 Not Found 405 Method Not Allowed 500 Internal Server Error
  • 17. Working of AJAX (continued..) function handleServerResponse() { if(xmlhttp.readystate == 4) { if(xmlhttp.status == 200) { //Perform your operation } } else { //Loading state or show error message }} The above code tells the JavaScript Engine to process further only when the readystate = = 4. Also inside we check for status which gives me the HTTP Status. If both the condition matches then proceed further and perform your operation. If the ready state does not matches then you can display Loading State until it reaches 4. 6
  • 18. Working of AJAX (continued..) Accessing the response data: We have two options to collect the data: 1. xmlHttp.responseText: It is used to access plain text response from the server. 2. xmlHttp.responseXML: It is used to obtain XML formatted data. In the method above, the response data is collected in the variable str and then it is used to alert the message. Example : - document.getElementById(“pid”).innerHTML = xmlHttp.responseText; here in the above example the responseText in made visible in field with id “pid”. 6
  • 19. Asynchronous data transfer using AJAX Client Side Program Step 1: Creating XMLHttpRequest(); xmlHttp = new XMLHttpRequest(); Step 2: Opening the connection to the remote server side script:- When page is first time loaded:  xmlhttp.open(GET, ”dynamic.jsp?function=reset” , true);  GET method used.  URL: Server side program dynamic.jsp’s variable function is set to reset.  Asynchronous mode of operation. 6
  • 20. Asynchronous data transfer using AJAX (continued..) Client Side Program After loading:  xmlhttp.open(GET, ”dynamic.jsp?function=ok” , true);  Server side code dynamic.jsp’s variable function is set to ok. Step 3: Define the function handler on change of every state:- Initial loading  xmlhttp.onreadystatechange = startCallback; After loading  xmlhttp.onreadystatechange = pollcallback; 6
  • 21. Asynchronous data transfer using AJAX (continued..) Client Side Program Step 4: Send off a request to the server:- xmlhttp.send(null); //GET METHOD Step 5: Receive the data from the server through the function handler:- Initial loading • function startCallback() { if(xmlhttp.readystate == 4) { if(xmlhttp.status == 200) { refresh time(); } } } 6
  • 22. Asynchronous data transfer using AJAX (continued..) Client Side Program After loading • function pollcallback () { if(xmlhttp.readystate == 4) { if(xmlhttp.status == 200) { message = xmlHttp.responseText;xmlHttp.responseText; refresh time(); } } } • For every specified milliseconds the function pollcallback() will get executed and responseText is the response given by the server. •responseText is used for displaying data in Jlabel and for every specified milliseconds only Jlabel area is loaded instead of loading whole page for updating data. 6
  • 23. Asynchronous data transfer using AJAX (continued..) Server Side Program The String variable ‘function’ value is checked every time. if function = “reset”  Initial display is loaded. If function is other than “reset”  Loaded jlabel’s text will get updated with new values. Response is sent to client using, response.getwriter(); //which is of Printwriter() type 6