Click here to Skip to main content
15,890,717 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
4650. _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML1', 'footer-widget', document.getElementById('HTML1'), {}, 'displayModeFull'));
4651. </script>
4652. <body>
4653. </html>


ERROR
org.xml.sax.SAXParseException; lineNumber: 4653; columnNumber: 8; XML document structures must start and end within the same entity.


What I have tried:

Why this error is showing in last part of code?
Posted
Updated 17-Aug-22 17:49pm

1 solution

HTML
</script>
<body>
</body> did you missed the end of body tag ?
</html>

[Update]
Quote:
org.xml.sax.SAXParseException; lineNumber: 4652; columnNumber: 3; The element type "aside" must be terminated by the matching end-tag "".

Read the error message !
Somewhere in your code, you start an "aside" element that you didn't closed.
 
Share this answer
 
v2
Comments
Viren C 6-Mar-21 13:36pm    
It also shows error
Like
org.xml.sax.SAXParseException; lineNumber: 4652; columnNumber: 3; The element type "aside" must be terminated by the matching end-tag "".
Dave Kreskowiak 6-Mar-21 15:06pm    
Your first mistake is you're using an XML parser to parse HTML. HTML may look like XML, but it's not. You can get away with making mistakes in HTML and the page will still work. That's not the case for real XML files.

The errors are pointing you to the spot in the file they are occurring and telling you the problem. You have an opening tag, , and there is no matching closing tag, , in the file. That's all it's saying.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900