Hi,
I am using the kXML API in particular the XmlSerializer however all
my xml tags are generated with a prefix on them for example:
If i was trying to generate:
<test id='123'></test>
it is coming out as:
<n0:test n0:id='123'><n0:test>
i have tried using
setPrefix("",NAMESPACE)
however this at best only manages to do:
<test n0:id='123'></n0:test>
am I doing something wrong? is more information required?