Hi,

I need to parse a xml file and put the node content in the web using spring framework.

I'd like to use groovy to parse the xml file in certain directory in window. any sample code, please?
the xml file is like this:

<plan>
<week capacity="8">
<task done="2" total="2" title="read XML chapter"/>
<task done="3" total="3" title="try some reporting"/>
<task done="1" total="2" title="use in current project"/>
</week>
<week capacity="8">
<task done="0" total="1" title="re-read DB chapter"/>
<task done="0" total="3" title="use DB/XML combination"/>
</week>
</plan>

Janez.