In this blog, we will discuss how to import Java classes, call Java functions, instantiate Java classes that are present in our Mule project through DataWeave. We can only call Static methods via DataWeave (methods that belong to a Java class, not methods that belong to a specific instance of a class). Note- The Listener… Continue reading Java Methods in Mule 4 Using DataWeave
Category: MuleSoft Technical Guides
Guides for MuleSoft Developers.
Reduce Function in DataWeave
Reduce is a useful operator that applies a reduction expression on an array. This function can operate on each of the elements in an array. Syntax: Array<T> reduce( (item: T, accumulator: T) -> T): T | Null OR reduce(Array<T>, (item: T, accumulator: T) -> T): T | Null Here, Array is an array on which… Continue reading Reduce Function in DataWeave
Mule 4 connectors for Salesforce
Anypoint Connector for Salesforce (Salesforce Connector) enables us to create apps that react to Salesforce events such as adding, changing, or deleting objects, topics, documents, and channels. Salesforce Connector enables us to connect to the Salesforce APIs. In this blog we will dive into usage, configuration and output parameters of 5 most useful connectors. 1.… Continue reading Mule 4 connectors for Salesforce
Mule Migration Assistant
Mule Migration Assistant is an open-source tool for accelerating the conversion process from Mule 3 to Mule 4 application. Due to the complexities in the conversion process, MMA will not be able to convert 100 percent of the applications, and manual intervention is required to attain a fully functional Mule 4 application. The tool doesn’t… Continue reading Mule Migration Assistant