Say if I have the following xml array produced with JAXB to be xslted:\[code\]<warning>blah</warning><warning>blah</warning>...\[/code\]However I forgot to use a root/parent element to wrap the arrays. So how do I add preceding content to the transformed results of the array, say:\[code\]Warning:blahblah...\[/code\]Because we have over thousands of xmls I prefer not to marshal them again but get a front-end way out like JS or XSL.The only solution I can think of is to check if wanring exists in xsl templates. However I've got dozens of templates and warnings can occur basically anywhere in the xml so I prefer not to check of every template.