Mule Esb File output not received -


i tried create data-mapper example in mule in both inbound , outbound endpoints file, looks thing like.

enter image description here

when execute program output folder of file remains empty, logically assume need put , hashmap xml transformer between data mapper , output file. more on created csv file xml file selecting example option in data mapper. tried use ftp endpoint started resulting error replaced ftp file endpoint.

here sharing configuration.xml file

<mule xmlns:file="....>     <data-mapper:config name="sample_mapper_grf" transformationgraphpath="sample_mapper.grf" doc:name="datamapper"/>     <flow name="csv_to_xml_data_mapperflow1" doc:name="csv_to_xml_data_mapperflow1">         <file:inbound-endpoint path="/home/jay/csv_xml_/input"  responsetimeout="10000" doc:name="input file"/>         <data-mapper:transform config-ref="sample_mapper_grf" doc:name="datamapper"/>         <file:outbound-endpoint path="/home/jay/csv_xml_/output/" responsetimeout="10000" doc:name="output file"/>     </flow> </mule> 

data-mapper configuration image here this image specification of csv file xml , when move on preview on right top , run converts csv xml

add groovy component after data mapper , try , dump contents

println "post mapping payload " + payload  return payload  

Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -