2018 Nov 01 8:25 AM
Hi Experts,
I am using the method create_simple_element to generate XML start and end tag. But for one tag both start and end tag is coming but for the other tag it is not coming. Can you please help.
For eg
<EMPLOYEE>
<EMPNAME Name = "XYZ">
</EMPNAME>
<EMPAGE Age = "45"/>
</EMPLOYEE>
Like above <EMPAGE> end tag is not coming. Please help
Hi Experts,
I am using the method create_simple_element to generate XML start and end tag. But for one tag both start and end tag is coming but for the other tag it is not coming. Can you please help.
For eg
<EMPLOYEE>
<EMPNAME Name = "XYZ">
</EMPNAME>
<EMPAGE Age = "45"/>
</EMPLOYEE>
Like above <EMPAGE> end tag is not coming. Please help
2018 Nov 01 10:39 AM
From what your showing <EMPAGE> is self closing since it ends with />. So nothing needs to be done.
2018 Nov 01 10:40 AM