Anypoint Service Mesh Overview In current business scenario most of the companies are adapting micro service architecture because of the drawbacks of the monolithic architecture where the complete application is built on either on single technology or on single platform which is tightly coupled, if we need to make any changes with one functionality…
Read Morepagination or while loop using recursion Pagination is very common scenario in APIs nowadays. If you need to interact with an API that has pagination, you will need to build a logic where you can call the API again and again until you have reached end of the page. This is like recursion but…
Read MoreFlow or Subflow as a function Another very important aspects which we have observed is, developers duplicate their code whenever they need to repeat the same execution but with different parameters. e.g. If you have a third party API and you are trying to build system API on to that. Developer would duplicate the…
Read MoreRetrying only in case of connectivity failure We have seen people exploiting until successful scope. People just put everything under until successful scope to retry and that is not the right way. We should retry only for a particular scenario we have been asked to retry for. e.g. when calling an API, if…
Read MoreAggregator Module In Mule 4 Aggregator module in mule 4 is used to club the data on the basis of some condition, we are going to demonstrate size based aggregator in this tutorial Different Aggregator Types Size Based Aggregator: This aggregator aggregate the payload/data until a predefined size is reached Time Based Aggregator: This…
Read MoreDataweave Streaming In Mule 4 In this tutorial we will demonstrate how we can use dataweave streaming in mule 4 which is useful to process the large files in quickly without any memory issues which consume less resources compare to old way of reading and writing big documents. Supported Format JSON XML CSV Limitations…
Read MoreGenerate Flows From RAML Using Manage Dependency In this tutorial we will Generate Flows From RAML Using Manage Dependency, This is one of the easiest way to generate the flow from RAML, in that case raml will be referred from Anypoint Exchange directly and a dependency will be added in POM.xml Create a…
Read MoreManipulation On Array In Mule 4 In this tutorial we will demonstrate how can we do Manipulation On Array In Mule 4. To use this module, we first need to import DataWeave code, for example, by adding the line import * from dw::core::Arrays to the header of your DataWeave script Please find below few important Array…
Read MoreYAML file as Configuration Property In Mule As part of this tutorial we will demonstrate how can we use YAML file to define property in hierarchical manner and consume the property from inside the dataweave or mule configuration. Also, we will show how we can define secure property as YAML and refer the secure…
Read MoreHow to use MuleSoft as Web Server for deploying web application There could be use case when you want to create a simple web application, but you do not want to use tomcat or any other web server due to some constraint. MuleSoft can come handy for these situations. In this tutorial we will…
Read More