Difference between revisions of "AJAX and REST"

From AgileApps Support Wiki
imported>Aeric
imported>Aeric
Line 21: Line 21:
When you create a [[Pages|Page]] in the platform, you are creating a JSP page. You can embed Java code in that page, and use it to directly interact with the platform. Or you can use AJAX and the REST APIs, whichever is easiest.
When you create a [[Pages|Page]] in the platform, you are creating a JSP page. You can embed Java code in that page, and use it to directly interact with the platform. Or you can use AJAX and the REST APIs, whichever is easiest.


=====Basic AJAX Syntax=====
For information on using AJAX in a JSP page, see the tech community article [http://techcommunity.softwareag.com/pwiki/-/wiki/Main/Invoking%20REST%20API%20Calls%20using%20AJAX%20in%20AgileApps%20Pages Invoking REST API Calls using AJAX in AgileApps Pages].
In this syntax description, <tt>xmlhttp</tt> is the communications object. You'll learn how to make one in the example that follows. For now, the focus is on the methods you use to interact with it.
:<syntaxhighlight lang="javascript" enclose="div">
xmlhttp.open(method, resource_url, async);
xmlhttp.send();                  // GET or DELETE
xmlhttp.send("request data");    // POST or PUT
</syntaxhighlight>
 
:where:
::* ''method'' is <tt>GET</tt>, <tt>POST</tt>, <tt>PUT</tt>, or <tt>DELETE</tt>
::* ''resource_url'' is the resource you are accessing
::* ''async'' is a boolean.
:::* If <tt>true</tt>, you put processing code into an <tt>onreadystatechange</tt> function, and the page continues  displaying itself while the request is being processed. Whenever the response from the server is received, it is integrated into the page. (That is the preferred way to do things.)
:::* If <tt>false</tt>, you put processing code after the <tt>send()</tt> statement. (You don't need a function, but the page may appear to hang while it is being rendered, so this procedure is not recommended.)
 
:;Considerations:
:* Most often, you'll want to make asynchronous requests. They're slightly harder to write, because you have to add the  <tt>onreadystatechange</tt> function. But the page won't hang while waiting for the server to respond.
:* The platform's [[REST API]]s return XML, by default. To get back JSON data, you append "?alt=JSON" to the URL.
:* When a resource that responds to a GET request takes additional data, the data is included by appending a ''query string'' to the URL, in order to [[Specifying_Query_Parameters_in_REST_APIs|Specify Query Parameters]].
:* Platform GET (read), PUT (update), and DELETE requests return 200 on success.
:* Platform POST (create) requests return 201 on success.
 
{{Tip|In Firefox, the [http://getfirebug.com/ Firebug] plugin makes it possible to debug JavaScript. You can set breakpoints, see the content of variables, and review the structure of the internal DOM after elements have been dynamically added.}}
 
=====Example: Retrieving Data with a GET Request =====
{{:HowTo:Use AJAX and REST in a Web Page to GET data}}
 
=====POST/PUT Syntax=====
When there is too much data to send using [[Specifying_Query_Parameters_in_REST_APIs|Query Parameters]], a REST API will require you to send the data in a POST request (to add something new) or in a PUT request (to update something existing). You'll specify add a request header that tells the platform what form the data is in:
:<syntaxhighlight lang="java" enclose="div">
xmlhttp.open(method,resource_url,async);
xmlhttp.setRequestHeader("Content-type","application/xml");  // or "application/json"
xmlhttp.send("request data");   
</syntaxhighlight>
 
=====Example: Sending Data with a POST Request =====
{{:HowTo:Use AJAX and REST in a Web Page to POST data}}


=====Example: Validating a CSRF session for POST, PUT, and DELETE=====
=====Example: Validating a CSRF session for POST, PUT, and DELETE=====

Revision as of 12:30, 31 August 2020

The combination of JavaScript and the platform's REST APIs lets you build a lot of power into a page that displays on a client-side browser.

About AJAX

AJAX is the name given to a set of JavaScript functions that let you connect to a server, get back data, and parse the data into something usable. It originally stood for "Asynchronous JavaScript and XML", but it can also use the JSON format for data interchange.

Perhaps the best summary of AJAX comes from the w3c.schools tutorial:

"AJAX is the art of exchanging data with a server, and updating parts of a web page, without reloading the whole page."

While an arbitrary string can be passed to or from the server, the two most popular formats by far are XML and JSON. The platform understands both, so you can choose the flavor you prefer. (A common variation is to send XML data to the platform because it's easy to build up strings in XML format, and then get JSON back because that is the easiest format to parse in JavaScript.)

Learn more: AJAX Tutorial

Using AJAX in a Form

The jQuery functions included in the platform make it as simple as possible to make an AJAX call.

The code is expected to be executed as part of a Form, either as part of a Field Script or a Form Script. It builds up an XML string to send to a REST API. In this case, it creates the input XML required by the REST exec API, which executes a method in a Java class. And then tells the API to return JSON, which allows individual elements to be accessed by specifying little more than a JavaScript path.

For more information about using AJAX in a form, see the tech community article How to invoke a class from formscript using AJAX.

Using AJAX in a JSP Page

When you create a Page in the platform, you are creating a JSP page. You can embed Java code in that page, and use it to directly interact with the platform. Or you can use AJAX and the REST APIs, whichever is easiest.

For information on using AJAX in a JSP page, see the tech community article Invoking REST API Calls using AJAX in AgileApps Pages.

Example: Validating a CSRF session for POST, PUT, and DELETE

You have to validate a CSRF session for POST, PUT, and DELETE requests. For information about validating a CSRF session, see the Tech Community article at Validating a CSRF session for POST, PUT, and DELETE. This article provides sample codes for validating CSRF sessions for Form Submissions and REST APIs.

Notepad.png

Note: Ensure to add the header X-XSRF-TOKEN with value of xsrfToken from the login response.