Hi,
I'm having a little trouble with xsi attributes. I need to convert some XML files from one schema to another. For example, the old file is something like this
<MyRootElement xmlns:xsi=" xsi:noNamespaceSchemaLocation="../../oldschema.xsd">
<OldChild>
.....
</OldChild>
</MyRootElement>
And the new file should be
<MyRootElement xmlns:xsi=" xsi:noNamespaceSchemaLocation="../../newschema.xsd">
<NewChild>
.....
</NewChild>
</MyRootElement>
How can I specify the change from oldschema.xsd to newschema.xsd in my stylesheet?
Thanks in advance.
I'm having a little trouble with xsi attributes. I need to convert some XML files from one schema to another. For example, the old file is something like this
<MyRootElement xmlns:xsi=" xsi:noNamespaceSchemaLocation="../../oldschema.xsd">
<OldChild>
.....
</OldChild>
</MyRootElement>
And the new file should be
<MyRootElement xmlns:xsi=" xsi:noNamespaceSchemaLocation="../../newschema.xsd">
<NewChild>
.....
</NewChild>
</MyRootElement>
How can I specify the change from oldschema.xsd to newschema.xsd in my stylesheet?
Thanks in advance.