Can you share an XSLT with me which achieves following please?
Input:
<alfa data="abc" xmlns="http://test1.com/">
<mus:beta xmlns:mus="http://test2.com">
<mus:a>1234567897</mus:a>
<mus:s>777666</mus:s>
</mus:beta>
</alfa>
Output should be:
<alfa data="abc" xmlns="http://test1.com/">
<beta xmlns="http://test2.com">
<a>1234567897</a>
<s>777666</s>
</beta>
</alfa>
In fact; the input is generated with XmlBeans; I can not achieve the output with xmlbeans; So i will do a transform with xslt in mediation; however I need a xslt first :) XmlBeans solution is acceptable too. :)
For xmlbeans users; following does not work, fyi:
Map map = new HashMap();
map.put("http://test1.com/","");
map.put("http://test2.com/","");
xo.setSaveSuggestedPrefixes(map);
Cheers, Kaan
Here is a stylesheet: