In this post, we will see how to resolve DataWeave expression returning unwanted array Question: I have the following DataWeave expression: That returns this result: But I need this structure as the output: So that the inner extensions are not ...
In this post, we will see how to resolve Not able to deploy Spring-based application after migrating from Mule 3.x to Mule 4.x Question: I have a Maven and Spring-based application that I am trying to deploy on Mule 4 ...
In this post, we will see how to resolve how to refer/use DataWeave files from domain or other projects in Mule 4 Question: The idea is to use or refer the dwl files from domain project so the same DataWeave ...
In this post, we will see how to resolve Mule transform JSON to Map Question: I have this JSON object “actos-evaluacion” : [ { ”subject” : < id-subject>, ”name” : < name>, ”marks” : [“<student_id>:< mark>”,”< student_id>:< mark>”, ”<student_id>:< mark>”] ...
Question: I’m migrating my Mule apps from 3.9.0 to Mule 4.4.0. I’m using a Java object to propagate metadata and other objects across transports. Here is a snippet of that class: the static methods being called (simplified for example): and ...
Question: I am using scatter-gather to call many endpoints with the same host and different paths. How can I add the HTTP request connector inside For Each scope, that can loop into the different paths and add the payload to ...
Question: I try to aggregate the payload of three http request call into 1 file. I use the scatter gather for that. One of http requests call is using the output response of one http request and the other is ...
Question: I want to set a variable based on the output in Mule 3. For example the check I want to do is if there is any payload I want to set the var value to this ${http.path.one} else ${http.path.two}. ...
Question: I am trying to transform data in Mule 3 (DataWeave 1.0) but I am not getting the desire result. This is the input payload: And my desire output need to be like the one below Thanks for helping guys. ...