Using JSON with Data Services
You can send and receive JSON messages by default via WSO2 Enterprise Integrator's (WSO2 EI) ESB profile. See the topics given below to understand how data can be exposed in the JSON format, and how data can be changed by sending JSON payloads. In this tutorial, you will use a data service that exposes RDBMS data.
Before you begin!
If you have not tried the Exposing a Datasource as a Data Service tutorial previously follow the steps given below:
Download the RDBMSDataService from .
Download the product installer from here, and run the installer.
Start the WSO2 ESB profile.
Go to product's management console:
https://localhost:9443/carbonEnter
adminas the username and password.Click Add > Data Service > Upload.
Browse and add the
RDBMSDataService.dbsfile you downloaded.
A data service can expose data in one of the following formats: XML, RDF, or JSON. You can select the required format by specifying the output type for the data service query. To expose data in JSON, you need to select JSON as the output type, and map the output to a JSON template.
Map the output type to JSON
The data service we uploaded or created previously, maps the output type to XML. Follow the steps given below to change it to JSON.
Open the ESB profile's Management Console using https://localhost:9443/carbon, and log in using
adminas the username and the password.Click List under Main > Services. The RDBMS data service should be listed.
Click the data service to open the Service Dashboard.
Click Edit Data Service (Wizard) to open the data service using the Create Data Service wizard.
Click Next until you get to the Queries screen.
Edit the GetEmployeeDetails query.
Change the Output Type to JSON.
You can now start defining the JSON template for the output. Listed below are a few sample templates that you can use for this query.
Save the query.
GET data in JSON
The RDBMSDataService that you are using already contains the following resource:
Resource Path |
|
|---|---|
Resource Method |
|
Query ID |
|
You can now RESTfully invoke the above resource. To send a JSON message to a RESTful resource, you can simply add the “Accept:Application/json” to the request header when you send the request. The service can be invoked in REST-style via curl.
Shown below is the curl command to invoke the GET resource:
curl -X GET -H "Accept: application/json" http://localhost:8280/services/RDBMSDataService/Employee/{EmployeeNumber}Example:
curl -X GET -H "Accept: application/json" http://localhost:8280/services/RDBMSDataService/Employee/1You will receive the response in JSON format.
POST/UPDATE data using JSON
When a client sends a request to change data (POST/PUT/DELETE) in the datasource, the HTTP header Accept should be set to application/json. Also, if the data is sent as a JSON payload, the HTTP header Content-Type should be set to application/json.
The RDBMSDataService that you are using will already contain the following resources for adding and updating data.
Resource for adding employee information:
Resource for updating employee information:
You can RESTfully invoke the above resource by sending HTTP requests as explained below.
Post data
To post new employee information, you need to invoke the resource with the POST method.
First, create a file named
employee-payload.json, and define the JSON payload for posting new data as shown below.{ "_postemployee": { "EmployeeNumber" : "14001", "LastName": "Smith", "FirstName": "Will", "Email": "will@google.com", "Salary": "15500.0" } }On the terminal, navigate to the location where the
employee-payload.jsonfile is stored, and execute the following HTTP request:curl -X POST -H 'Accept: application/json' -H 'Content-Type: application/json' --data "@employee-payload.json" -k -v http://localhost:8280/services/RDBMSDataService/Employee
Post data in batches
You are able to post JSON data in batches using the RDBMSDataService that you created or uploaded.
To verify that batch requesting is enabled:
Log in to the product's management console.
Click List under Main > Services and select the RDBMSDataService.
Click the data service to open the Service Dashboard.
Click Edit Data Service (Wizard) to open the data service using the Create Data Service wizard.
See that the Batch Requesting check box is selected.
First, create a file named
employee-batch-payload.json, and define the JSON payload for posting multiple employee records (batch) as shown below.{ "_postemployee_batch_req": { "_postemployee": [ { "EmployeeNumber": "5012", "FirstName": "Will", "LastName": "Smith", "Email": "will@smith.com", "Salary": "13500.0" }, { "EmployeeNumber": "5013", "FirstName": "Parker", "LastName": "Peter", "Email": "peter@parker.com", "Salary": "15500.0" } ] } }On the terminal, navigate to the location where the
employee-batch-payload.jsonfile is stored, and execute the following HTTP request:curl -X POST -H 'Accept: application/json' -H 'Content-Type: application/json' --data "@employee-batch-payload.json" -k -v http://localhost:8280/services/RDBMSDataService/Employee_batch_req