XML transform using XSL
Hi,
I am new to the javax technology.
I have a xml that has data in this format
<?xml version="1.0" encoding="UTF-8"?>
<emps>
<emp>
<empName>Me</empName>
<empAge>23</empAge>
</emp>
<emp>
<empName>You</empName>
<empAge>23</empAge>
</emp>
</emps>
Can i convert this to an XML that has tags and data like
<employees>
<employee>
<name>me</name>
<age>23</age>
</employee>
<employee>
<name>you</name>
<age>23</age>
</employee>
</employees>
using a XSLT?
thanks,
Dilip

