Hi the file you're merging is probably not an xml file, since the buildlog is an xml file, it can only put any non-xml file in a CDATA section.
Otherwise the buildlog file itself would violate XML compliance. you can still use xsl to query CDATA sections, but that is a pain If this is a self made program, I would suggest to make the outputfile xml compliant If it is not, I would call a second program, that takes the current output file as input, and turns it into a xml compliant form, making the xsl in the dashboard/email a lot easier. with kind regards Ruben Willems On Fri, Mar 6, 2009 at 7:47 AM, सिद्धार्थ <[email protected]> wrote: > > I have created a an xml file which i want to merge with the > CruiseControl Log file . > i have used the merge task for that. > the problem is that when it merges it of the following format. > > <cruisecontrol> > <build> > <![CDATA[ > <abc> > <cdf> > <xyz>Hi</xyz> > </cdf> > <cdf> > <xyz>Hello</xyz> > </cdf> > > </abc> > ]]> > </build> > <cruisecontrol> > > so it is putting the merged file in under comment. > Please help me > > regards, > sid >
