Hello.
I have a source schema with lots of fields and in the middle some fields are unbounded. I build a new destination schema with the same structure as the source schema but this included just the unbounded field. So I don’t have the other fields before and after.
Each schema has its own targetNamespace.
Now I use the “Mass Copy” functoid to move all the values from the source schema to the destination schema. It worked fine so far.
The issue I have is, that in the destination schema with the unbounded fields the nodes include now the targetNamespace of source schema. This comes from the Mass Copy, because in the source schema these fields are not filled with the targetNamespace. Both schemas have one targetNamespace only.
Source Schema ———————————– Destination Schema
record node ———————————– record node
— field 1
— field 2
— field 3
— fields ———— mass copy ———— fields
—— fields1
—— fields2
Here I copy fields, fields1, fields2,… and so on to the destination schema.
But in the XML Document from the destination schema by the node called fields is written “fields xmlns:ns0=”http://sourceschema.de/blabla“
Is there a way to avoid that the xmlns:ns0=”http://sourceschema.de/blabla” is not in the destination schema?
Thanks in advance.
Wolfgang