Introduction What is Object Store v2 Rest API? The Object Store v2 APIs allow you to use REST for the following operations: Object Store V2 REST API Anypoint exchange link : https://anypoint.mulesoft.com/exchange/portals/anypoint-platform/f1e97bc6-315a-4490-82a7-23abe036327a.anypoint-platform/object-store-v2 Implementation Step 1: To use the Object Store V2 REST API we need to have an application deployed in CloudHub with object store […]
Introduction What is an Object Store? An object store is a mechanism for storing objects within or across Mule applications. The Mule runtime engine (Mule) leverages object stores to persist data for future retrieval. Internally, Mule uses object stores in various filters, routers, and message processors that require state persistence between messages. Where are object […]
Introduction What is JCE Cryptography? The Java Cryptography Extension (JCE) is an officially released Standard Extension to the Java Platform and is included in the Java Cryptography Architecture (JCA). JCE offers a framework and implementations for encryption, key generation, key agreement, and Message Authentication Code (MAC) algorithms. JCE Cryptography modules in Mulesoft The JCE strategy […]
Introduction What is Two-Way SSL? Two-Way SSL, also known as Mutual SSL or Bidirectional SSL, is a type of SSL (Secure Sockets Layer) communication where both the client and the server authenticate each other. This enhances security by ensuring that both parties in the communication can verify each other’s identity. How does Two Way SSL […]
Introduction What is One Way SSL? One-way SSL (Secure Sockets Layer), also known as SSL/TLS authentication or server-side SSL authentication, is a security protocol used to establish an encrypted link between a client and a server. In one-way SSL, only the server is authenticated to the client. How does One Way SSL work? As previously […]
Introduction What is MUnit? MUnit is a Mule application testing framework that allows you to easily build automated tests for your integrations and APIs. Why use MUnit? It provides a full suite of integration and unit test capabilities and is fully integrated with Maven and Surefire for integration with your continuous deployment environment. With MUnit […]
Objective: We are going to write test cases for the scenarios where the flow is going to throw errors. The application we are going to test is Database configuration Query Database Postman Request and response Error handler “transform messages” DB:CONNECTIVITY MULE:ANY Step 1: Select the flow you want to test (“lookup-based-on-customer-name”) then right-click on […]