7
Jaki jest prawidłowy sposób reprezentowania pustych elementów XML?
Widziałem nullelementy reprezentowane na kilka sposobów: Element występuje z xsi:nil="true": <book> <title>Beowulf</title> <author xsi:nil="true"/> </book> Element jest obecny, ale reprezentowany jako element pusty (co moim zdaniem jest błędne, ponieważ jest `` pusty '' i nullróżni się semantycznie): <book> <title>Beowulf</title> <author/> </book> <!-- or: --> <book> <title>Beowulf</title> <author></author> </book> Elementu w …