This site contains the documentation that is relevant to older WSO2 product versions and offerings.
For the latest WSO2 documentation, visit https://wso2.com/documentation/.
Transforming Message Content
{ "name": "John Doe", "dob": "1940-03-19", "ssn": "234-23-525", "address": "California", "phone": "8770586755", "email": "johndoe@gmail.com", "doctor": "thomas collins", "hospital": "grand oak community hospital" }
However, the format of the message must be as follows to be compatible with the backend service.
{ "patient": { "name": "John Doe", "dob": "1990-03-19", "ssn": "234-23-525", "address": "California", "phone": "8770586755", "email": "johndoe@gmail.com" }, "doctor": "thomas collins", "hospital": "grand oak community hospital" }
The client message format must be transformed to the back-end service message format within the In sequence.
Let's get started!
This tutorial contains the following sections:
Creating the deployable artifacts
The Data Mapper mediator transforms the message within the In sequences. The Data Mapper mediator is a data mapping solution that can be integrated into a mediation sequence. It converts and transforms one data format to another, or changes the structure of the data in a message.
In WSO2 EI Tooling, add a Data Mapper mediator just after the Property mediator in the In sequence of the API resource.
Double click the Data Mapper mediator icon and provide the following name for the data mapping configuration file that will be created.
Configuration Name: RequestMapping
The SampleServicesRegistry project is created at the time of creating the WSO2 EI Solution project and will get auto picked here.
Click OK. You view the data mapping editor.
Create a JSON file by copying the following sample content of the request message sent to the API Resource, and save it in your local file system.
{ "name": "John Doe", "dob": "1990-03-19", "ssn": "234-23-525", "address": "California", "phone": "8770586755", "email": "johndoe@gmail.com", "doctor": "thomas collins", "hospital": "grand oak community hospital" }
You can create a JSON schema manually for input and output using the Data Mapper Diagram editor.
Right-click on the top title bar of the Input box and click Load Input as shown below .
Select JSON as the Resource Type as shown below.
Click the file system link in Select resource from, select the JSON file you saved in your local file system in step 5, and click Open.
You view the input format loaded in the Input box in the editor as shown below.
Create another JSON file by copying the following sample content of the request message expected by the backend service, and save it in your local file system.
{ "patient": { "name": "John Doe", "dob": "1990-03-19", "ssn": "234-23-525", "address": "California", "phone": "8770586755", "email": "johndoe@gmail.com" }, "doctor": "thomas collins", "hospital": "grand oak community hospital" }
- Right-click on the top title bar of the Output box and click Load Output as shown below.
- Select JSON as the resource type
Click the file system link in Select resource from, select the JSON file you saved in your local file system in step 7, and click Open.
You view the input format loaded in the Output box in the editor as shown below.
Check the Input and Output boxes with the sample messages, to see if the element types (i.e. (Arrays, Objects and Primitive values) are correctly identified or not. Following signs will help you to identify them correctly.
- {} - represents object elements
- [] - represents array elements
- <> - represents primitive field values
- A - represents XML attribute value
- Do the mapping by dragging arrows from field values in the input box to the relevant field values in the output box. The final mapping is as follows:
Save and close the configuration.
Go back to the Design View of the API Resource and select the Data Mapper Mediator and edit the following in the Properties tab:
- Input Type: JSON
Output Type: JSON
Save the REST API configuration.
We are now ready to package and deploy the C-App and send the request.
Deploying the Artifacts to WSO2 EI
Since we created a new Registry Resource project, this will need to be packaged into our existing C-App.
Package the C-App names SampleServicesCompositeApplication project with the artifacts created.
Ensure the following artifact check boxes are selected in the Composite Application Project POM Editor.
- SampleServices
- HealthcareAPI
- ClemencyEP
- GrandOakEP
- PineValleyEP
- SampleServicesRegistry
- SampleServices
On the Servers tab, expand the WSO2 Carbon server, right-click SampleServicesCompositeApplication, and choose Redeploy. The Console window will indicate that the CApp has been deployed successfully.
If you do not have a server added in Eclipse, refer this tutorial .
You can also deploy the artifacts to the Enterprise Integrator using a Composite Application Archive (CAR) file .
Sending requests to WSO2 EI
Create a JSON file names
request.json
with the following request payload.{ "name": "John Doe", "dob": "1990-03-19", "ssn": "234-23-525", "address": "California", "phone": "8770586755", "email": "johndoe@gmail.com", "doctor": "thomas collins", "hospital": "grand oak community hospital" }
- Open a command line terminal and execute the following command from the location where
request.json
file you created is saved:curl -v -X POST --data @request.json http://localhost:8280/healthcare/categories/surgery/reserve --header "Content-Type:application/json"
This is derived from the URI-Template defined when creating the API resource.
http://<host>:<port>/categories/{category}/reserve
You will see the response as follows:
{"appointmentNumber":2, "doctor": {"name":"thomas collins", "hospital":"grand oak community hospital", "category":"surgery","availability":"9.00 a.m - 11.00 a.m", "fee":7000.0}, "patient": {"name":"John Doe", "dob":"1990-03-19", "ssn":"234-23-525", "address":"California", "phone":"8770586755", "email":"johndoe@gmail.com"}, "fee":7000.0, "confirmed":false}
You have now explored how WSO2 EI can receive a message in one format and transform it into the format expected by the backend service using the Data Mapper mediator.