MuleSoft Helpful Links

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…

Share this:
Read More

Secure Properties Placeholder

Secure 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…

Share this:
Read More

Retrieve Query Parameters from HTTP URL

Retrieve 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…

Share this:
Read More

Retrieve Custom Header from HTTP request

Retrieve 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…

Share this:
Read More

Call HTTP REST service

Call 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…

Share this:
Read More

Hello World REST API In Mule

Hello 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…

Share this:
Read More