Parse Template is the Mule component to use for processing a template and obtaining a result. A template is defined as text with embedded Mule expressions that are evaluated and replaced with their result. There are some scenarios where we need to use a parse template in the flow. Some of the scenarios are: When […]
API Service Component: Routing Headers: When we have two or more REST APIs with same endpoint, the Routing header will help us to route to specific API or webservice (i.e., linked subprocess) based on specified header value. Steps to expose an API using a web service server connector Step 1.1: Log onto the Boomi platform […]
In this blog, we will develop a synchronous soap API. In this Use case, We will expose soap which takes employee id as request. We will retrieve employee data from database using employee id. Then, we will send employee data as response. Let us begin with the steps. Step 1: Log on to Boomi platform […]
HOW TO SEND AND RECEIVE TO/FROM AMAZON SQS. In this blog, we will see how to send and receive to/from Amazon SQS. What is Amazon SQS? Amazon Simple Queue Service (SQS) is a message queue service offered by Amazon Web Services. It is used by distributed applications to exchange messages through a polling model. The […]
Tracking Fields and How to set those in Boomi Process In this blog, let us see what are Tracking Fields and How to set those in Boomi Process. What are Tracking Fields? It can be used to track the documents’ process execution history based on the specific tracking field defined in Document Tracking. Tracking Fields allows us […]
INTEGRATE AMAZON S3 WITH BOOMI How to Integrate Amazon S3 with Boomi In this blog, we will see how to integrate Amazon S3 with Boomi by creating a bucket in AWS S3 and storing the file that comes from the Boomi Process. What is AWS S3? This is an offering from AWS (Amazon Web Services) […]
HOW TO GET AND SET DYNAMIC PROCESS PROPERTIES IN THE GROOVY SCRIPT In this blog, we will see how to get and set dynamic process properties in the Groovy script and retrieve them in the Boomi process. What is Dynamic Process Property? These are key/value pairs that can be set at the process level. It […]
How to Add User-Defined Functions and Do a Lookup On the Map In this blog, we will see how to add USER-DEFINED FUNCTIONS and DO A LOOKUP on the map. What is User Defined Functions? These functions allow us to perform different transformations using multiple functions. We can use any type of function like String, […]
Developing SOAP web service in Boomi In this blog, we will see how to develop SOAP web service in Boomi. What is SOAP? SOAP stands for simple object access protocol which follows SOA i.e., simple object architecture. It provides a way to communicate between applications running on different technologies. SOAP is based on XML. A […]
In this blog, let us see how to consume SOAP service. To consume SOAP service in Boomi, we have a connector called “web services soap client” through which we can use the service provided by third party API. Here, I am consuming add service from third party API where I give two values i.e., int […]