Hi all,
I am new to camel and I am trying a POC for enriching where a data
from sql database is to be inserted into the xml message that is received.
I would like to use this xml and the input message---> from a file
<?xml version="1.0" encoding="ISO-8859-1"?>
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<year>1985</year>
</cd>
</catalog>
where as the resulting xml that goes to the outbound endpoint should result
like
<?xml version="1.0" encoding="ISO-8859-1"?>
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
</cd>
</catalog>
the price is taken from the database...
right now I don't want any logic to take the price from the data base.My
priority is to insert the data in the xml message.
Thanks,
Naveen Raj Balasubramaniam
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-XML-Message-Enrichment-tp5718525.html
Sent from the Camel - Users mailing list archive at Nabble.com.