Transforming Message Content
In this tutorial, you send a request message to a back-end service where the payload is in a different format when compared to the request payload expected by the back-end service. The Data Mapper mediator in the ESB is used to transform the request message payload to the format expected by the back-end service.
Before you begin,
- Install Oracle Java SE Development Kit (JDK) version 1.8.* and set the JAVA_HOME environment variable.
- Download the product installer from here, and run the installer.
Let's call the installation location of your product the <EI_HOME> directory. This is located in a place specific to your OS as shown below:OS Home directory Mac OS /Library/WSO2/EnterpriseIntegrator/6.4.0
Windows C:\Program Files\WSO2\EnterpriseIntegrator\6.4.0\
Ubuntu /usr/lib/wso2/EnterpriseIntegrator/6.4.0
CentOS /usr/lib64/EnterpriseIntegrator/6.4.0
Select and download the relevant WSO2 EI tooling ZIP file based on your operating system from here and then extract the ZIP file.
The path to this folder will be referred to as<EI_TOOLING>
throughout this tutorialGetting an error message? See the troubleshooting tips given under Installing Enterprise Integrator Tooling.
- If you did not try the Routing Requests Based on Message Content tutorial yet, open the WSO2 EI Tooling environment, click File, and then click Import. Next, select Existing WSO2 Projects into workspace under the WSO2 category, click Next and upload the pre-packaged project. This contains the configurations of the Routing Requests Based on Message Content tutorial so that you do not have to repeat those steps.
- Download the MSF4J service from here and copy the JAR file to
<EI_HOME>/wso2/msf4j/deployment/microservices
folder. The back-end service is now deployed in the MSF4J profile of WSO2 EI.
Let’s assume this is the format of the request sent by the client:
{ "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", "cardNo": "7844481124110331", "appointment_date": "2017-04-02" }
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" "cardNo": "7844481124110331" }, "doctor": "thomas collins", "hospital": "grand oak community hospital" "appointment_date": "2017-04-02" }
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 ESB Solution project and will get auto-picked here.
Click OK. You view the data mapping editor.
Create a JSON file (e.g.,
input.json
) 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", "cardNo": "7844481124110331", "appointment_date": "2025-04-02" }
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 (i.e.,
input.json
) 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 (e.g.,
out
put.json
) 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", "appointment_date": "2025-04-02" }
- 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.
Packaging the artifacts
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
Starting the ESB profile and deploying the artifacts
Assuming you have already added a server for the ESB profile in Eclipse, on the Servers tab, expand the WSO2 Carbon server, right-click SampleServicesCompositeApplication, and choose Redeploy. The Console window of the ESB profile 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 ESB server using a Composite Application Archive (CAR) file.
Starting the MSF4J profile
To be able to send requests to the back-end service (which is an MSF4J service deployed in the MSF4J profile), you need to first start the MSF4J runtime:
- Open a terminal and navigate to the
<EI_HOME>/wso2/msf4j/bin
directory. Start the runtime by executing the MSF4J startup script as shown below.
The Healthcare service is now active and you can start sending requests to the service.
Sending requests to the ESB
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", "cardNo": "7844481124110331", "appointment_date": "2025-04-02" }
- 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":1, "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 the ESB profile of 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.