Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
6answers
817 views

Java saying XML Document Not Well Formed

Hey all. Java's XML parser seems to be thinking that my XML document is not well formed following the root element, but I've validated it with several tools and they all disagree. It's probably an ...
3
votes
2answers
612 views

Finding a node (or close to it) using XPath in non well-formed HTML

I'm using XPath to locate a node (or something close to it) in a template that has non-well-formed HTML about 10 levels deep. (No I didn't write this HTML...but I've been tasked to dig through it.) ...
1
vote
2answers
115 views

can't read xml file on android

I am trying to open and read a xml file as a local resource with jdom. I can open the file but then I got an error saying that the xml file is not well-formed. Here is the code : Uri path = ...
1
vote
3answers
230 views

Replacing characters in a non well-formed XML body

In a (Java) code that I'm working on, I sometimes deal with a non well-formed XML (represented as a Java String), such as: <root> <foo> bar & baz < quux </foo> ...
1
vote
3answers
235 views

python xml error

I'm new to xml. I'm trying to parse an xml file to extract data from, but it shows the error below message when I call doc=minidom.parse('D:\\CONFIGRATION.xml') ... xml.parsers.expat.ExpatError:not ...
0
votes
2answers
59 views

Processing badly formatted XML in .NET3.5

Given a third party system that streams XML to me via TCP. The TOTAL transmitted XML content (not one message of the stream, but concatenated messages) looks like this : <root> ...
0
votes
1answer
133 views

HTML Well-formedness parser

Heyy guys, I need to determine if a given HTML Document is well formed or not. I just need a simple implementation using only Java core API classes i.e. no third party stuff like JTIDY or something. ...
0
votes
4answers
302 views

How can I determine if a HTML document is well formed or not in JAVA?

Heyy guys, I need to determine if a given HTML Document is well formed or not. I just need a simple implementation using only Java core API classes i.e. no third party stuff like JTIDY or something. ...
0
votes
1answer
254 views

“Not Well-Formed” Errors in XML file after FTP

Using WS_FTP Professional, I have a backup process that runs every night. WS_FTP basically sets up the process to FTP to a remote server through windows scheduler. Specifically, It sends an XML ...