Re: Merging multiple generated_web.xmls

2006-10-05 Thread Antoine Levy-Lambert
Hello, you can try also to create a stylesheet (*.xsl) doing the merge that you want. Look at document() to access several source XMLs in one transformation. the ant task can do the transformation. Regards, Antoine [EMAIL PROTECTED] wrote: > We are already using the "token method" to insert one

Re: Merging multiple generated_web.xmls

2006-09-26 Thread ant-m
Nice, thanks Brian this looks like the right tool for the job! Brian Agnew <[EMAIL PROTECTED]> wrote: > XMLTask may well help you. It's designed to do this sort of thing. You > can insert XML files into other XML files at any given point, which > sounds like what you want to do. > > http://www.oop

Re: Merging multiple generated_web.xmls

2006-09-26 Thread Brian Agnew
XMLTask may well help you. It's designed to do this sort of thing. You can insert XML files into other XML files at any given point, which sounds like what you want to do. http://www.oopsconsultancy.com/software/xmltask Brian [EMAIL PROTECTED] wrote: We are already using the "token method" t

Merging multiple generated_web.xmls

2006-09-26 Thread ant-m
We are already using the "token method" to insert one generated_web.xml into our web.xml, but now we need to merge in another. Of course the token method doesn't work so well with more than one generated_web.xml as all the servlets need to be above all the servlet-mappings. Has this wheel already