MuleSoft Helpful Links Bookmark 🙂 Press CTRL + D Listed below different links which are helpful in our day-to-day MuleSoft development work. JSON Base64 Encryption JSON Validator Base64 Encode PGP Encryption & Decryption JSON Formatter Base64 Decode PGP Key Generator JSON to JSON Schema Image to Base64 Converter PGP Key Verification JSON Schema…
Read MoreEnable/DISABLE Logging In Mule 4 In this tutorial we will demonstrate how can we enable/disable the logging in mule 4, logging will help to debug and monitor your application by logging the important message and the error logs, mule logs the message asynchronously which is useful to enhance the performance Supported Log Levels: DEBUG…
Read MoreRetrieve URI Parameters from HTTP URL in Mule 4 In this tutorial we will demonstrate how can we retrieve the URI parameters from HTTP URL In Mule 4 Create a project in anypoint studio and configure the listener to trigger the request We have passed the empid as uri parameter as shown in below…
Read MoreSecure Properties Placeholder As the name suggest it’s another level of security which can be applied in MuleSoft application code base. Some application related data are confidential and should not be put as plain text in code base. to manage confidential data efficiently we have secure properties placeholder. First create a secure properties file…
Read MoreRetrieve Query Parameters from Http Url Create a project in Anypoint studio and configure the listener to retrieve Query Parameters from HTTP URL We will pass the Name and EmpId as query parameter. http://localhost:8081/retrieveQueryParams?Name=John&EmpId=123 Drag and drop transform message and write Dataweave expression Dataweave expression: Deploy the project and run in debug mode and…
Read MoreRetrieve Custom Header from HTTP request In this tutorial we will explain how we can retrieve custom header from HTTP request in Mule 4. We are sending the messageid and transactionid as custom header with http rest call Create a project in Anypoint studio and configure the listener Create the transform message and write…
Read MoreAdd Module In Anypoint Studio How to add the module in Anypoint studio Click on settings as highlighted Click on + sign on Modules Search the module you want to add and click on Add and finish Apply and close you will see modules are added in anypoint studio mule palette…
Read MoreCall external Http Rest API To call external HTTP REST APIs, We can start by creating project in Anypoint studio For this tutorial we will Invoke below rest URL http://dummy.restapiexample.com/api/v1/employees Drag and drop http listener and configure also set path as /getAllemployees Drag and drop Http Requester and configure the host as…
Read MoreHello World REST API in mule In this tutorial we will demonstrate how to create a simple Hello World REST API in mule and deploy the project on Mulesoft runtime environment Create Project in Anypoint Studio as Mule Project – HelloWorld Click Finish and Project is now created. Drag and drop HTTP component Click…
Read More