I am trying to extract information from an SQL database and convert it to an XML file. The schema for this xml file is defined in an xsd document.
For some reason though the outputted XML information looks like this <y0:Name xmlns:y0=" Text</y0:Name>
I dont understand why it is ammending the y0: information, I just want it to look like this
<Name>Test Text</Name>
I know this must have something to do with my xmlns definitions in the xsd file but i dont know how to correct this, can someone point me in the right direction please??
For some reason though the outputted XML information looks like this <y0:Name xmlns:y0=" Text</y0:Name>
I dont understand why it is ammending the y0: information, I just want it to look like this
<Name>Test Text</Name>
I know this must have something to do with my xmlns definitions in the xsd file but i dont know how to correct this, can someone point me in the right direction please??