list of dots Digital Research Alliance of Canada logo  NSERC logo  University of Ottawa logo / UniversitĂ© d'Ottawa

User Manual    [Previous]   [Next]   

E4500 Tag Not Closed Correctly

Umple semantic error raised when a FIXML tag is not closed properly

In FIXML, a start tag must be closed properly with its respective end tag. Elements must also be correctly nested within each other.

Example

//The tags are not properly
//nested, causing E4500
<FIXML>
  <tag>
    <othertag>
      </tag>
  </othertag>
 </FIXML>
      

Load the above code into UmpleOnline

 

Solution to The Above So the Message No Longer Appears

//Each tag is now correctly
//closed
<FIXML>
  <tag>
    <othertag>
    </othertag>
  </tag>
 </FIXML>
      

Load the above code into UmpleOnline