Service Orchestration

What you'll build

When information from several services are required for constructing a response to a client request, service chaining needs to be implemented. That is, several services are integrated based on some business logic and exposed as a single, aggregated service.

In this tutorial, when a client sends a request for a medical appointment, the Micro Integrator performs several service call to multiple back-end services in order to construct the response that includes all the necessary details. The Call mediator allows you to specify all service invocations one after the other within a single sequence.

You will also use the PayloadFactory mediator to take the response from one back-end service and change it to the format that is accepted by the other back-end service.

Concepts and artifacts used

  • REST API
  • HTTP Endpoint
  • Property Mediator
  • Call Mediator
  • PayloadFactory Mediator

Let's get started!

Step 1: Set up the workspace

Download the relevant WSO2 Integration Studio based on your operating system.

Step 2: Develop the integration artifacts

Create an Integration project

An Integration project is a maven multi module project, which will contain all the required modules for the integration solution.

  1. Open WSO2 Integration Studio.
  2. Click New Integration Project in the Getting Started tab as shown below.

    This will open the New Integration Project dialog box.

  3. Enter SampleServices as the project name and select the following check boxes to create the required modules.

    • Create ESB Configs
    • Create Composite Exporter
  4. Click Finish.

You will now see the projects listed in the Project Explorer.

Create new Endpoints

Let's create three HTTP endpoints to represent all three back-end services: Hospital Service, Channeling Service, Payment Service.

  1. Right-click SampleServicesConfigs in the project explorer and click New -> Endpoint.
  2. Ensure Create a New Endpoint is selected and click Next.
  3. Let's create the hospital service endpoint (HospitalServicesEP) using the following values:

    Property Value Description
    Endpoint Name HospitalServicesEP This is a single endpoint configured to forward requests to the relevant hospital by reading the hospital specified in the request payload.
    Endpoint Type HTTP Endpoint Indicates that the back-end service is HTTP.
    URI Template http://localhost:9090/{uri.var.hospital}/categories/{uri.var.category}/reserve The template for the request URL expected by the back-end service. The following two variables will be replaced by the corresponding values in the request message:
    • {uri.var.hospital}
    • {uri.var.category}
    Method POST Endpoint HTTP REST Method.
    Static Endpoint
    Select this option because we are going to use this endpoint only in this ESB Config module and will not reuse it in other projects.

    Note: If you need to create a reusable endpoint, save it as a Dynamic Endpoint in either the Configuration or Governance Registry.
    Save Endpoint in SampleServicesConfigs This is the ESB Config module we created in the last section.

  4. Click Finish.

  5. Create another endpoint for the Channeling back-end service and specify the details given below:

    Property Value Description
    Endpoint Name ChannelingFeeEP The name of the endpoint.
    Endpoint Type HTTP Endpoint Indicates that the back-end service is HTTP.
    URI Template http://localhost:9090/{uri.var.hospital}/categories/appointments/{uri.var.appointment_id}/fee The template for the request URL expected by the back-end service. The following two variables will be replaced by the corresponding values in the request message:
    • {uri.var.hospital}: This will be the hospital ID extracted from the original request payload.
    • {uri.var.appointment_id}: This will be the appointment ID extracted from the response payload that is received from the hospital service.
    Method GET This endpoint artifact will be used to get information from the back-end service.
    Static Endpoint
    Select this option because we are going to use this endpoint only in this ESB Config module and will not reuse it in other projects.

    Note: If you need to create a reusable endpoint, save it as a Dynamic Endpoint in either the Configuration or Governance Registry.
    Save Endpoint in SampleServicesConfigs This is the ESB Config module.

  6. Click Finish.

  7. Create another endpoint for the Settle Payment back-end service and specify the details given below:

    Property Value Description
    Endpoint Name SettlePaymentEP The name of the endpoint.
    Endpoint Type HTTP Endpoint Indicates that the back-end service is HTTP.
    URI Template http://localhost:9090/healthcare/payments The template for the request URL expected by the back-end service.
    Method POST This endpoint artifact will be used to post informtion to the back-end service.
    Static Endpoint
    Select this option because we are going to use this endpoint only in this ESB Config module and will not reuse it in other projects.

    Note: If you need to create a reusable endpoint, save it as a Dynamic Endpoint in either the Configuration or Governance Registry.
    Save Endpoint in SampleServicesConfigs This is the ESB Config module.

  8. Click Finish.

You have now created the endpoints that are required for this tutorial.

Create a REST API

  1. In the Project Explorer, right-click SampleServicesConfigs and navigate to New -> REST API.
  2. Ensure Create A New API Artifact is selected and click Next.
  3. Enter the details given below to create a new REST API.

    Property Value Description
    Name HealthcareAPI The name of the REST API.
    Context /healthcare Here you are anchoring the API in the /healthcare context. This will become part of the name of the generated URL used by the client when sending requests to the Healthcare service. For example, setting the context to /healthcare means that the API will only handle HTTP requests where the URL path starts with http://host:port/healthcare.
    Save location SampleServicesConfigs This is the ESB Config module where the artifact will be saved.

  4. Click the default API Resource to access the Properties tab and enter the following details:

    Property Value Description
    Url Style URI_TEMPLATE You can now specify dynamic variables to extract values from the request URL.
    URI-Template Enter /categories/{category}/reserve. The request URL should match this template. The {category} variable will be replaced with the value sent in the request.
    Methods POST This API resource will accept POST requests.

Update the mediation flow

You can now start updating the API resource with the mediation flow.

  1. Open the REST API resource. You will see the canvas for the in sequence and out sequence as shown below.
  2. Drag a Property mediator from the Mediators palette to the In Sequence of the API resource and name it Get Hospital. This is used to extract the hospital name that is sent in the request payload.
  3. With the Property mediator selected, access the Properties tab and give the following details:

    Property Value Description
    Property Name New Property... Specifies that a new property is created.
    New Property Name uri.var.hospital The name that will be used to refer this property's values.
    Property Action set The property action.
    Property Scope default The scope of the property.
    Value (Expression) json-eval($.hospital_id)

    Follow the steps given below to specify the expression value:

    1. Click the Ex button before the Value field. This specifies the value type as expression.
    2. Now, click the f button to open the Expression Selector dialog box.
    3. Enter json-eval($.hospital_id) as the expression value.
    Note: This is the JSONPath expression that will extract the hospital from the request payload.

  4. Add a new Property mediator just after the Get Hospital property mediator and name it Get Card Number. This will retrieve and store the card number that is sent in the request payload.

  5. With the Property mediator selected, access the Properties tab and specify the following details:

    Property Value Description
    Property Name New Property... Specify a new property.
    New Property Name card_number The name of the property, which will be used to refer this property.
    Property Action set The property action.
    Value (Expression) json-eval($.cardNo)

    Follow the steps given below to specify the expression:

    1. Click the Ex button before the Value field. This specifies the value type as expression.
    2. Now, click the f button to open the Expression Selector dialog box.
    3. Enter json-eval($.cardNo) as the expression value.
    Note: This is the JSONPath expression that will extract the card number from the request payload.
    Description Get Card Number The description of the property.

  6. Add a Call mediator from the Mediators palette and add the HospitalServicesEP endpoint from the Defined Endpoints palette to the empty box adjoining the Call mediator.

    Info

    Using the Call mediator allows us to define other service invocations following this mediator.

    Note

    The following response will be returend from GrandOakEP, ClemencyEP, or PineValleyEP:

    {"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":"[email protected]"},
           "fee":7000.0,
           "confirmed":false}

    Let's use Property mediators to retrieve and store the values that you get from the response you receive from GrandOakEP, ClemencyEP, or PineValleyEP.

  7. Add a Property mediator to retrieve and store the value sent as appointmentNumber.

  8. With the Property mediator selected, access the Properties tab and specify the following details:

    Property Value Description
    Property Name New Property Specify a new property.
    New Property Name uri.var.appointment_id This value is used when invoking ChannelingFeeEP
    Property Action

    Select set

    The action of the property
    Value (Expression) json-eval($.appointmentNumber)

    Follow the steps given below to specify the expression:

    1. Click the Ex button before the Value field. This specifies the value type as expression.
    2. Now, click the f button to open the Expression Selector dialog box.
    3. Enter json-eval($.appointmentNumber) as the expression value.
    Note: This is the JSONPath expression that will extract the appointment number from the request payload.
    Description Get Appointment Number

  9. Similarly, add two more Property mediators. They will retrieve and store the doctor details and patient details respectively from the response that is received from GrandOakEP, ClemencyEP, or PineValleyEP.

    • To store doctor details:

      Property Value Description
      Property Name New Property A new property will be defined.
      New Property Name doctor_details The property name that will be used to refer this property.
      Property Action set The property action name.
      Value (Expression) json-eval($.doctor)

      Follow the steps given below to specify the expression:

      1. Click the Ex button before the Value field. This specifies the value type as expression.
      2. Now, click the f button to open the Expression Selector dialog box.
      3. Enter json-eval($.doctor) as the expression value.
      Note: This is the JSONPath expression that will extract the doctor details from the request payload.
      Description Get Doctor Details The description of the property.

    • To store patient details:

      Property Description
      Property Name Select New Property
      New Property Name Enter patient_details
      Property Action Select set
      Value json-eval($.patient)

      Follow the steps given below to specify the expression:

      1. Click the Ex button before the Value field. This specifies the value type as expression.
      2. Now, click the f button to open the Expression Selector dialog box.
      3. Enter json-eval($.patient) as the expression value.
      Note: This is the JSONPath expression that will extract the patient details from the request payload.
      Description Get Patient Details The description of the property.

  10. Add a Call mediator and add the ChannelingFeeEP endpoint from the Defined Endpoints palette to the empty box adjoining the Call mediator.

    Note

    The following response that is received from ChannelingFeeEP:

    {"patientName":" John Doe ", 
    "doctorName":"thomas collins", 
    "actualFee":"7000.0"}

  11. Add a Property mediator adjoining the Call mediator box to retrieve and store the value sent as actualFee

  12. Access the Property tab of the mediator and specify the following details:

    Property Description
    Property Name Select New Property
    New Property Name Enter actual_fee

    Note: This value is used when invoking SettlePaymentEP.
    Property Action Select set
    Value

    Follow the steps given below to specify the expression:

    1. Click the Ex button before the Value field. This specifies the value type as expression.
    2. Now, click the f button to open the Expression Selector dialog box.
    3. Enter json-eval($.actualFee) as the expression value.
    Description Get Actual Fee

  13. Let's use the PayloadFactory mediator to construct the following message payload for the request sent to SettlePaymentEP.

    {"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":"[email protected]"
        },
        "fee":7000.0,
        "Confirmed":false,
        "card_number":"1234567890"
    }
  14. Add a PayloadFactory mediator (from the mediators palette) next to the Property mediator to construct the above message payload.

  15. With the PayloadFactory mediator selected, access the properties tab of the mediator and specify the following details:

    Property Description
    Payload Format Select Inline
    Media Type Select json
    Payload {"appointmentNumber":$1, "doctor":$2, "patient":$3, "fee":$4, "confirmed":"false", "card_number":"$5"}

    This is the message payload to send with the request to SettlePaymentEP. In this payload, $1, $2, $3, $4, and $5 indicate variables.
  16. To add the arguments for the PayloadFactory mediator:

    1. Click the plus icon () in the Args field to open the PayloadFactoryArgument dialog.
    2. Enter the following information in the PayloadFactoryArgument dialog box. This provides the argument that defines the actual value of the first variable (used in the format definition given in the previous step).

      Tip

      To avoid getting an error message, first select the Media Type before providing the Payload.

      Property Description
      Argument Type Select Expression.
      Argument Expression

      Follow the steps given below to specify the expression:

      1. Click the text box for the Argument Expression field. This opens the Expression Selector dialog.
      2. Select Expression from the list.
      3. Enter $ctx:uri.var.appointment_id. Note that the $ctx method is similar to using the get-property method. This method checks in the message context.
      4. Click OK.
      Evaluator Select xml.

      This indicates that the expression is provided in XML.

  17. Similarly, click Add and add more arguments to define the other variables that are used in the message payload format definition. Use the following as the Value for each of them:

    • $ctx:doctor_details
    • $ctx:patient_details
    • $ctx:actual_fee
    • $ctx:card_number
  18. Add a Call mediator and add SettlePaymentEP from the Defined Endpoints palette to the empty box adjoining the Call mediator.

  19. Add a Respond mediator to send the response to the client.

Step 3: Package the artifacts

Package the artifacts in your composite exporter (SampleServicesCompositeExporter) to be able to deploy the artifacts in the server.

  1. Open the pom.xml file in the composite exporter.
  2. Ensure that the following projects and artifacts are selected in the POM file.

    • SampleServicesCompositeExporter
      • HealthcareAPI
      • HospitalServicesEP
      • ChannelingFeeEP
      • SettlePaymentEP
  3. Save the changes.

Step 4: Build and run the artifacts

To test the artifacts, deploy the packaged artifacts in the embedded Micro Integrator:

  1. Right-click the composite exporter module and click Export Project Artifacts and Run.
  2. In the dialog box that opens, confirm that the required artifacts from the composite exporter module are selected.
  3. Click Finish.

The artifacts will be deployed in the embedded Micro Integrator and the server will start.

  • See the startup log in the Console tab.
  • See the URLs of the deployed services and APIs in the Runtime Services tab.

Step 5: Test the use case

Let's test the use case by sending a simple client request that invokes the service.

Start the back-end service

  1. Download the JAR file of the back-end service from here.
  2. Open a terminal, navigate to the location where your saved the back-end service.
  3. Execute the following command to start the service:

    java -jar Hospital-Service-JDK11-2.0.0.jar

Send the client request

Let's send a request to the API resource to make a reservation. You can use the embedded HTTP Client of WSO2 Integration Studio as follows:

  1. Open the HTTP Client of WSO2 Integration Studio.

    Tip

    If you don't see the HTTP Client pane, go to Window -> Show View - Other and select HTTP Client to enable the client pane.

  2. Enter the request information as given below and click the Send icon ().

    Method POST
    Headers Content-Type=application/json
    URL http://localhost:8290/healthcare/categories/surgery/reserve

    • The URI-Template format that is used in this URL was defined when creating the API resource: http://:/categories/{category}/reserve.
    Body
    { "patient": { "name": "John Doe", "dob": "1940-03-19", "ssn": "234-23-525", "address": "California", "phone": "8770586755", "email": "[email protected]", "cardNo": "7844481124110331" }, "doctor": "thomas collins", "hospital_id": "grandoaks", "hospital": "grand oak community hospital", "appointment_date": "2025-04-02" }

    • This JSON payload contains details of the appointment reservation, which includes patient details, doctor, hospital, and data of appointment.

If you want to send the client request from your terminal:

  1. Install and set up cURL as your REST client.
  2. Create a JSON file named request.json with the following request payload.

    {
      "patient": {
      "name": "John Doe",
      "dob": "1940-03-19",
      "ssn": "234-23-525",
      "address": "California",
      "phone": "8770586755",
      "email": "[email protected]",
      "cardNo": "7844481124110331"
      },
      "doctor": "thomas collins",
      "hospital_id": "grandoaks",
      "hospital": "grand oak community hospital",
      "appointment_date": "2025-04-02"
    }
    3. Open a terminal and navigate to the directory where you have saved the request.json file.

  3. Execute the following command.

    curl -v -X POST --data @request.json  http://localhost:8290/healthcare/categories/surgery/reserve  --header "Content-Type:application/json"

Analyze the response

You will see the response received to your HTTP Client:

{
"patient":"John Doe",
"actualFee":7000.0,
"discount":20,
"discounted":5600.0,
"paymentID":"480fead2-e592-4791-941a-690ad1363802",
"status":"Settled"
}

You have now explored how the Micro Integrator can do service chaining using the Call mediator and transform message payloads from one format to another using the PayloadFactory mediator.

Top