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/.

Convert a JSON Message to SOAP and SOAP to JSON

This tutorial uses the WSO2 API Manager Tooling Plug-in and the  PhoneVerification  API created in  Create and Publish an API .

The API Gateway has a default mediation flow for the API invocation requests that it receives. You can extend this default mediation flow to do additional custom mediation for the messages in the API Gateway. An extension is provided as a synapse mediation sequence. You can design sequences using a tool such as the WSO2 API Manager Tooling Plug-in and then store the sequence in the Gateway's registry. 

Let's see how to convert message types using custom sequences. In this tutorial, we convert a JSON payload to SOAP before sending it to a SOAP backend. Then we receive the response in SOAP and convert it back to JSON.

  1. Log in to the API Publisher and click the PhoneVerification API.

  2. Click the Edit icon to go to its edit mode.

  3. Create the following resource and add it to the API. 

    Tip: The resource you create here invokes the SOAP 1.2 Web service of the backend. Therefore, the recommended method is HTTP POST. As you do not include the payload in a query string, avoid giving any specific name in the URL pattern, which will be amended to the actual backend URL.

    Field
    Sample value
    ResourcesURL pattern/*

    Request types

    POST

  4. After the resource is added, expand it and edit the parameter as follows. This parameter is used to pass the payload to the backend.

    Parameter nameDescriptionParameter TypeData TypeRequired
    PayloadPass the phone number and license keybodystringTrue

    Next, let's write a sequence to convert the JSON payload to a SOAP request. We do this because the backend accepts SOAP requests.

  5. Navigate to the Implement page and change the endpoint of the API to http://ws.cdyne.com/phoneverify/phoneverify.asmx?WSDL. Once the edits are done, click Save.


  6. Download and install the WSO2 API Manager Tooling Plug-in if you have not done so already. Open Eclipse by double clicking the  Eclipse.app  file inside the downloaded folder. 

  7. Click Window > Open Perspective > Other to open the Eclipse perspective selection window. Alternatively, click the Open Perspective icon shown below at the top right corner.
  8. On the dialog box that appears, select WSO2 API Manager and click OK.
  9. On the API-M perspective, click the Login icon as shown below.

  10. On the dialog box that appears, enter the URL, username and password of the Publisher server.
  11. On the tree view that appears, expand the folder structure of the existing API.
  12. Right-click on the In sequence folder and click Create to create a new In sequence.
  13. Name the sequence JSONtoSOAP.
  14. Your sequence now appears on the APIM perspective. From under the  Mediators  section, drag and drop a  PayloadFactory  mediator to your sequence and give the following values to the mediator.

    Tip: The PayloadFactory mediator transforms the content of your message. The <args> elements define arguments that retrieve values at runtime by evaluating the provided expression against the SOAP body. You can configure the format of the request/response and map it to the arguments. 

    For example, in the following configuration, the values for the format parameters PhoneNumber and LicenseKey will be assigned with values that are taken from the <args> elements (arguments,) in that particular order.

    For details on how you got this configuration, see PayloadFactory Mediator in the WSO2 ESB documentation.


    Payload
    <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
        <soap12:Body>
            <CheckPhoneNumber xmlns="http://ws.cdyne.com/PhoneVerify/query">
                 <PhoneNumber>$1</PhoneNumber>
                 <LicenseKey>$2</LicenseKey>
            </CheckPhoneNumber>
         </soap12:Body>
    </soap12:Envelope>
     Args

    Give the arguments as a json expression as follows:

    TypeValueEvaluator
    expression
    //request/PhoneNumber
    xml
    expression//request/LicenseKeyxml
  15. Similarly, add a Property mediator to the same sequence and give the following values to the property mediator. This mediator changes the payload type of the outgoing message to soap+xml. More information about the Property mediator can be found here

    Property NamemessageType
    Value TypeLiteral
    Valueapplication/soap+xml
    Property Scopeaxis2
  16. Save the sequence, which is in XML format (e.g., JSONtoSOAP.xml). This will be the In sequence for your API. Next, create an Out sequence.

  17. Right-click on the Out sequence folder and click Create to create a new Out sequence.

  18. Name the sequence SOAPtoJSON.
  19. Add a Log mediator to the sequence and give the following values. Note that the property value provided is a string literal. 

    The Log mediator is used to log mediated messages. Having a custom log level allows logging only the properties added to the Log mediator configuration. More information can be found here.

    Log CategoryINFO
    Log LevelCUSTOM
    Log Separator,
    PropertiesName: TRACE
    Type: LITERAL
    Value/Expression: Global Mediation Extension

  20. Similarly, add a PayLoadFactory mediator with the following values. This mediator in the out sequence is used to transform the SOAP message content returned from the backend into JSON. 

    Payload FormatInline
    Payload<CheckPhoneNumber xmlns="http://ws.cdyne.com/PhoneVerify/query"><PhoneNumber>$1</PhoneNumber><LicenseKey>$2</LicenseKey></CheckPhoneNumber>
    ArgsType: Expression
    Value: //request/PhoneNumber
    Evaluator: xml

    Type: Expression
    Value: //request/LicenseKey
    Evaluator: xml
    Media Typexml
  21. Finally, add a Property mediator with the following values. This mediator changes the payload type of the incoming message to json.

    Property NamemessageType
    Property Actionset
    Value TypeLiteral
    Property Data TypeString
    Valueapplication/json
    Value String Capturing Group0
    Property Scopeaxis2

  22. Save the sequence, which is in XML format (e.g., SOAPtoJSON.xml). This will be the Out sequence for your API.

  23. Click the Push all changes to the server icon shown below to commit your changes to the Publisher server.

  24. Log back in to the API Publisher, click the Edit link associated with the API and navigate to the Implement tab. Select the Enable Message Mediation check box and engage the In and Out sequences that you created earlier.

    JSONtoSOAP in sequence will serve the purpose of transforming the JSON payload to SOAP before sending it to the SOAP backend. SOAPtoJSON out sequence will transform the SOAP message returned from the backend to JSON.

  25. Save the API.
    You have created an API, a resource to access the SOAP backend and engaged sequences to the request and response paths to convert the message format from JSON to SOAP and back to JSON. Let's subscribe to the API and invoke it.
  26. Log in to the API Store and subscribe to the API and create an access token if you have not done so already.

  27. Go to the API Console tab and expand the POST method.

  28. Give the payload in the body parameter in JSON format and click Try it out. Here's a sample JSON payload: {"request":{"PhoneNumber":"18006785432","LicenseKey":"0"}}

  29. Note that you get a JSON response to the JSON request whereas the backend accepts SOAP messages. The request and response are converted by the sequences that you engaged. 

In this tutorial, you converted a message from JSON to SOAP and back to JSON using In and Out sequences.