Â
Â
I use XmlTemplater to create gml document. In my needed xsd schema which I use to produce xml sample for XmlTemplater, there is too many nullable attributes. Thing is, validation cann;t pass against schema because attrubutes like <attribute></attribute>. It needs to be <attribute xsi:nill="true"> (I thing). Is there any way to tell XmlTemplater or FME to write <attribute xsi:nill="true"> for all null attributes and empty strings, without writting if/else in XmlTemplater (if null write <attribute xsi:nill="true"> else <attribute>value</attribute>)?Â
Is there some other way I can do this? I have about 300-400 attributes like this.