How to aggregate data from two different sources in Mule ESB -


i trying aggregate data 2 tables in mule. using scatter-gather flow control achieve this. able see data in debugger not sure how can combine single format

payload[0]= [[{"gender":"m","dob":"1974-11-23",                "last_name":"harding","first_name":"ezekiel"}], payload[1]= [{"role":"sr. developer"}]] 

what want create is

payload = [[{"gender":"m","dob":"1974-11-23",              "last_name":"harding","first_name":"ezekiel",              "role":"sr. developer}] 

if understood correctly, there 1 transformer need. the:

<combine-collections-transformer /> 

Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -