Attributes to customize XML serialization / Mapping between simple 4GL and XML data types detail |
Define the default namespace of all members of a record also defined as XML elements.
DEFINE myVar RECORD ATTRIBUTE(XMLName="Root", XMLNamespace="http://tempuri.org", XMLElementNamespace="http://www.mycompany.com") val1 FLOAT ATTRIBUTE(XMLElement,XMLName="Val1"), val2 INTEGER ATTRIBUTE(XMLElement,XMLName="Val2"), attr STRING ATTRIBUTE(XMLAttribute,XMLName="Attr"), END RECORD
<fjs1:Root xmlns:fjs1="http://tempuri.org" Attr="Hello" xmlns:fjs2="http://www.mycompany.com"> <fjs2:Val1>0.5</fjs2:Val1> <fjs2:Val2>-18547</fjs2:Val2> </fjs1:Root>