Martijn,
Like Samet said it might be an issue with the used version. I tried to export the xml based on the follwoing xsd (Mx 4.4.4):
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="Amt">
<xs:complexType>
<xs:sequence>
<xs:element name="InstdAmt">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute type="xs:string" name="Ccy"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
This delivers the follwing xml as expected:
<?xml version='1.0' encoding='UTF-8'?>
<Amt>
<InstdAmt Ccy="b">a</InstdAmt>
</Amt>
Hi Erwin, Achiel,
we are also in the process of upgrading the application to 4.6.0. And we already found out that the XML is formed good there.
The arrangement with the client is now to exclude the XML-export from the next production-delivery, to then upgrade the test-environment to 4.6.0 with the XML-export added. The client will then have to fully test the application again. Then we'll bring the 4.6.0 version to production.
Thanks for the replies!