How can i include more than one template in Freemarker configuration file using Smooks?
If you look at example you will see that each ftl:template
tag should be inside ftl:freemarker
tag. in your case:
<ftl:freemarker applyOnElement="Response">
<ftl:template>template1.ftl</ftl:template>
</ftl:freemarker>
<ftl:freemarker applyOnElement="Response">
<ftl:template>template2.ftl</ftl:template>
</ftl:freemarker>