Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Objective: Script mediators using Ruby

Table of Contents

Introduction

The ESB Script mediator can be programmed using any BSF compatible programming language. This Sample demonstrates how to use Ruby Scripts for mediation using the Script mediator.

Prerequisites

Support for Ruby scripting. To enable Ruby support, see Setting up Ruby Support.

For a list of general prerequisites, see Prerequisites to Start the ESB Samples.

Building the sample

The XML configuration for this sample is as follows: 

Code Block
languagehtml/xml
titleXML
<definitions xmlns="http://ws.apache.org/ns/synapse">

    <localEntry key="stockquoteScript" src="file:repository/samples/resources/script/stockquoteTransform.rb"/>
    <in>
        <!-- transform the custom quote request into a standard quote request expected by the service -->
        <script language="rb" key="stockquoteScript" function="transformRequest"/>

        <!-- send message to real endpoint referenced by name "stockquote" and stop -->
        <send>
            <endpoint name="stockquote">
                <address uri="http://localhost:9000/services/SimpleStockQuoteService"/>
            </endpoint>
        </send>
    </in>
    <out>
        <!-- transform the standard response back into the custom format the client expects -->
        <script language="rb" key="stockquoteScript" function="transformResponse"/>
        <send/>
    </out>
</definitions> 

This configuration file  synapse_sample_353.xml is available in the <ESB_HOME>/repository/samples directory.

To build the sample

  1. Start the ESB with the sample 353 configuration. For instructions on starting a sample ESB configuration, see Starting the ESB with a sample configuration.

    The operation log keeps running until the server starts, which usually takes several seconds. Wait until the server has fully booted up and displays a message similar to "WSO2 Carbon started in n seconds."

  2. Start the Axis2 server. For instructions on starting the Axis2 server, see Starting the Axis2 server.

  3. Deploy the back-end service SimpleStockQuoteService. For instructions on deploying sample back-end services, see Deploying sample back-end services.

The script used in this sample  stockquoteTransform.rb is as follows:

Code Block
languagehtml/xml
titleRuby
<x><![CDATA[
require 'rexml/document'
include REXML

def transformRequest(mc)
   newRequest= Document.new '<m:getQuote xmlns:m="http://services.samples/xsd">'<<
            '<m:request><m:symbol></m:symbol></m:request></m:getQuote>'
   newRequest.root.elements[1].elements[1].text = mc.getPayloadXML().root.elements[1].get_text
   mc.setPayloadXML(newRequest)
end

def transformResponse(mc)

  newResponse = Document.new '<m:CheckPriceResponse xmlns:m="http://services.samples/xsd"><m:Code>' <<
 
    '</m:Code><m:Price></m:Price></m:CheckPriceResponse>'
   newResponselastPrice=mc.getPayloadXML().root.elements[1].text = get_elements('*:last')
  code=mc.getPayloadXML().root.elements[1].elements[1].get_textelements('*:symbol') 
  newResponse.root.elements[21].text = mc.getPayloadXML()code[0].get_text
  newResponse.root.elements[12].elements[2text =lastPrice[0].get_text 
  mc.setPayloadXML(newResponse)
end
]]></x>

Prerequisites:

This sample uses Ruby so first set up Ruby support as described in Configuring the ESB for Script Mediator Support.

...

This sample is functionally equivalent to sample # 350 (#351 and #8) but instead uses a Ruby script using the JRuby interpreter. The script has two functions, 'transformRequest' and 'transformResponse', and the Synapse configuration specifies to be invoked when used. Execute the stock quote client to send a custom stock quote as per Sample 350 and check the received stock quote responseESB configuration uses the function attribute to specify which function should be invoked. 

Executing the sample

The sample client used here is the Stock Quote Client, which can operate in several modes. For further details on this sample client and its operation modes, see Stock Quote Client.

To execute the sample client

Run the following command from the <ESB_HOME>/samples/axis2Client directory.

Code Block
languagebash
ant stockquote -Daddurl=http://localhost:9000/services/SimpleStockQuoteService -Dtrpurl=http://localhost:8280/ -Dmode=customquote

Analyzing the output

You will see that the ESB uses the Script mediator and the specified function to convert the custom request to a standard quote request, and that the response received is subsequently transformed and sent back to the client.

For additional examples that use the Script Mediator, see Using Scripts in Mediation (Script Mediator).