I was able to succeed writing a method with one XML and one XSLtranformation.
But my another requirement is executing more than one XSL transformations in sequence. i.e Output of first transformation should be used as input of the subsequent transformation,...Something like as follows
public static String transformer(InputStream xml, List<InputStream> xsltInputStreamChain) {
}
I am not getting idea how this can be achieved. Can anyone help me out