I am having trouble parsing an XML with no closing tag. Please see snippet of the xml below.
I have tried SAX and also StAX Parser they both need a properly formatted XML with closing tag XXYY....as you can see below the XML format is a little bit different... Please help me if there is any API out there that can help me parse this or if SAX/StAX can help me achieve what I want.... :(
<Employees>
<Employee>
<Detail>
<Date>2018014
<Name>XXYY
<Age>0
<LANGUAGE>ENG
<Manager>
<MName>YYXX
<MID>5959
</Manager>
<EmployeeID>1234
</Detail>
</Employee>
</Employees>