Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Difference between AJAX and REST
Home
SOAPUI
Difference between AJAX and REST
0
votes
asked
Dec 3, 2019
in
SOAPUI
by
Sinaya
Difference between AJAX and REST
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Dec 3, 2019
by
Sinaya
AJAX
REST
In Ajax, the request are sent to the server by using XMLHttpRequest objects. The response is used by the JavaScript code to dynamically alter the current page
Ajax is a set of technology; it is a technique of dynamically updating parts of UI without having to reload the page
Ajax eliminates the interaction between the customer and server asynchronously
REST requires the interaction between the customer and server
REST have a URL structure and a request/response pattern the revolve around the use of resources
REST is a type of software architecture and a method for users to request data or information from servers
REST requires the interaction between the customer and server
...