Boomi Mail Using SMTP server How to send Mail Using SMTP server in Boomi In this blog, we will see how to send mail in Boomi using Gmail as SMTP server. What is Mail connector and why is it used? It is a connector in Boomi which is used for receiving and sending emails to […]
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 GET AND SET DYNAMIC DOCUMENT PROPERTIES IN GROOVY SCRIPT In this blog, we will see how to get and set dynamic document properties in Groovy script and retrieve them in the Boomi process. What is Dynamic Document Property? These are key/value pairs that can be set at a document level. It can be […]
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, […]
FORMATTING DATE FROM YYYY-MM-DD TO YYYYMMDD IN BOOMI. In this blog, we will see how to format date from YYYY-MM-DD to YYYYMMDD in Boomi. In this Use Case, We will pass a sample xml document through message shape which contains date in YYYY-MM-DD format. We will use map shape for custom scripting to convert the […]
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 […]
Developing REST web service in Boomi In this blog, we will see how to develop REST web service in Boomi. To develop any REST service in Boomi, we have to configure a connector called as “Web Services Server” connector. In this example, we will develop a REST web service which will perform addition of two […]
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 […]