At some point, you may have a service that returns a lot of fields and related objects. What if the service consumer doesn’t want all the fields all the time? In other words, he/she would like to have the response filtered. Here come the Content Filter to the rescue. After you read this article you…
Master your skillset – Anypoint Exchange
Recently I was challenged by the survey for the Trailblazer profile. I was thinking about the beginning of the journey of becoming an Integration Developer. What I did to become successful in my day to day job and what I am doing now. As a result, I have decided to share my insight here. First,…
How to attach your application to Mule Domain?
In the previous article, I have described how to create a custom Mule Domain Project. This time we will try to consume that. In other words, we will attach the Mule application to our previously defined domain. Link Just to recap. Let us see how our domain looks like. We have a mydomain project with…
Practical overview of sharing global configuration using Domain Project
In the previous article, I have described how to share common functionality encapsulated in the flows and subflows. This time I will focus on the common configurations that should be shared among our applications, especially in the context of on-prem deployment. Mule has a domain project application that can solve that. You will see how…
How to share reusable code in MuleSoft
Reusability is essential to deliver functionality quicker and more consistently. I wrote about reusing DataWeave code in Modules, and also reusing RAML using API Fragments. Today I focus on sharing common logic encapsulated within the (private) flow or subflow. I will create a standard MuleSoft application and amend it to make it truly Common Module….
DataWeave Modules, new way to introduce reusability
It is always desirable to reuse as much code as possible. We can do the same regarding DataWeave transformations and custom functions. In this article, I will describe how to reuse code in the newest DataWeave using modules. For those working with DataWeave 1.0, I will describe how to reuse code with readUrl function. DataWeave…