Sometimes Boomi Atom Processes need to communicate with external services in the middle of process execution. Anything from pulling data from a database, calling a service for a credit check, or validating the status of a warranty claim for processing a product return. These are synchronous types of calls, meaning the Boomi Atom Process needs to wait for the response before proceeding.
On May 15th 2021, Boomi released the latest version of the Solace connector to support this type of interaction: support for a Request Action in the Solace Connector Shape.
In this codelab, you will learn how to use the Solace Connector for Boomi Request Action.
After you finish the Getting Started with Boomi and Solace codelab, you'll have the following
A Solace trial account
A Boomi trial account
A local atom up and running
An understanding of how to deploy a Boomi process to a Boomi Atom
In this example, we will be using the new Request Action within the Solace Connector Shape to perform a blocking synchronous request/reply in the middle of a Boomi Process. We will be doing the following:
Use Solace to handle the request which means the document that we feed to the Solace Connector Request will be published onto a topic.
The replying service will consume that document, do something with it.
Reply to a dynamically created ReplyTo topic with the response and the CorrelationID (also dynamically created by the Solace Connector).
We are not going to create a service replier the first time through. We are going to use a Solace web GUI to perform the reply so we can better see the inner workings.
The Boomi Process will be setup to publish a request to the topic T/boomi/request
You will configure a Solace Broker to handle the request
You will use the Try Me feature of the Solace Web GUI to function as a Javascript client listening to T/boomi/request
You will see the request come in and manually respond using the Try Me feature (copy and paste the generated ReplyTo topic and correlation ID)
The Solace Broker will route the reply to the waiting Boomi Process
Let's get started!
The first thing we will do is create a simple Process in Boomi that makes a request via a publication to a Solace topic
Create a new Process
In your Boomi environment, create a new Process. You may call it anything you like. We will be calling ours Boomi Requestor
Configure the Solace Connector Shape
Set the start shape type to "No Data"
Drag a Message Shape onto the canvas and give it some sample data
I am putting text in the message body to demonstrate sending data in the message body. However the replier is not going to use this data.
Drag a Solace Connector Shape onto the canvas and configure it to send a Request
Set the Connection to your Solace instance
Configure the operation as below.
You can use any topic you like, or just copy the one I have below
Set the Reply Timeout in the Request Operation to 100000, so we have plenty of time to manually respond.
Add a Stop Shape to the end and then wire the shapes together and click Save
Prepare the Solace WebUI Try-Me tab to function as the consumer of the posted request and the replier to the Boomi Atom Process
Login to your Solace PS+ Service that your Boomi Process is pointed to. Mine is hosted in Solace Cloud.
Click on the Try-Me link on the left
Connect the Publisher by changing the default port to 443 for Solace Cloud.
Set the Username
Set the Password
You can get these values in the "Solace Web Messaging" section of the Connect tab of the Solace Cloud Console
Confirm the "Same as Publisher" checkbox is checked for the Subscriber and connect both the Publisher and Subcriber to the Solace Broker by clicking Connect on each.
Lastly, have the Subscriber start listening on the topic to which we will publish by typing the topic name in and clicking on Subscribe.
Use the Test capability in Boomi to test the Request Process
Go back to your Boomi Process and click Test in the upper right
You should see your test process look to hang on the Solace Request Shape.
Once you see this, switch over to your Solace Try Me UI
Use the Solace Subscriber to confirm receipt of the request from the Boomi Process
You should see that the message we configured in the Boomi Process has been recieved by our listener. Note 3 things: The messages text should be what you entered. There should be a generated ReplyTo topic name to which we will reply. There should be a generated Correlation ID that we need to include in our reply.
Use the Solace Publisher to publish the reply
Copy and paste the ReplyTo and CorrelationID values into the Publisher and also add some text if you want to confirm that the response payload is also captured. You will need to click on "Show Advanced" in order to include the CorrelationID.
Use the Boomi Test capability to confirm receipt of the reply and process completion.
The Boomi Process should have completed with success.
And you can check the Source data for the Stop Shape to see what data was returned.
What did you learn?
We now have a native way for Boomi Atom Processes to communicate with external services in the middle of process execution by using what you learned in this codelab:
How to configure and deploy the Solace Connector using the Request Operation.
How to use that to request data/processing from an external service
Note: This service could reside as another Process on the same Boomi Atom, another Booomi Atom in the same DC, another Boomi Atom half way around the world. The only requirement is that is can connect to the Solace Event Mesh.
How to use Solace Try-Me to test successful operation of the new Solace Connector Operation.