Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
5k views

Check well-formed XML without a try/catch?

Does anyone know how I can check if a string contains well-formed XML without using something like XmlDocument.LoadXml() in a try/catch block? I currently have code that does this; private bool ...
5
votes
2answers
2k views

Validating against a Schema with JAXB

I've been looking for solutions to this problem for far too long considering how easy it sounds so I've come for some help. I have an XML Schema which I have used with xjc to create my JAXB binding. ...
3
votes
6answers
909 views

What is the fastest way to programatically check the well-formedness of XML files in C#?

I have large batches of XHTML files that are manually updated. During the review phase of the updates i would like to programmatically check the well-formedness of the files. I am currently using a ...
2
votes
1answer
61 views

Not well-formed error message in FF

My site just started to behave strange... In FF 8 I get this error (could be after I upgraded my FF, not sure): Error: not well-formed Source File: ...
1
vote
3answers
330 views

how to do validation with not well form XML while doing unmarshalling?

I have an unmarshaller along with an MySchema.xsd file. StreamSource sources = new StreamSource(getClass().getClassLoader().getResourceAsStream("/xmlValidation.xsd")); SchemaFactory sf = ...
1
vote
4answers
189 views

HTML5 and well-formedness

I'm looking into HTML5 and I'm puzzled why it goes so easy on well-formedness. <div id="main"> <DIV ID="main"> <DIV id=main> are all valid and produce the same result. I ...
1
vote
3answers
3k views

The markup must be well-formed

I am beginer in SAX and Java. I am tring to read Information from not well formed XML File. When I try to use SAX or DOM Parser then I have this error: The markup in the document following the root ...
1
vote
5answers
779 views

Check well formatted email address

I have a text file of e-mails like this: 10:info@example.com;dev@example.com 12:john@host.com; "George <g.top@host.com>" 43:jim.p@web.com.;sue-allen@web.com ... I wanted to check if the list ...
0
votes
0answers
32 views

JSP custom tag and well-form-ness

I am running into a problem that I think a demonstration of either JSP's ridiculous limitation, or my ridiculous ignorance. Can anyone shed some light? That would be very appreciated. In my ...
0
votes
2answers
133 views

How to parse a DocumentFragment with with the Java standard DOM API

This is how I can parse a well-formed XML document in Java: DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); DocumentBuilder builder = factory.newDocumentBuilder(); // text ...
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
1k views

Carriage returns in XML comment: “The content of elements must consist of well-formed character data or markup”

I have the following Ant build file: <?xml version="1.0" encoding="UTF-8"?> <project default="build" name="MyAntScript"> <!-- A comment explaining the ant file going over ...
0
votes
1answer
200 views

configure tidy to escape the unknown xml tags

I am using tidy to make HTML entered by the user well-formed and i have configured tidy to accept only few html tags. Is there a way i can tell tidy to escape sequence the xml tags that are not known. ...
0
votes
6answers
1k views

PHP: How to validate a phone number if well formed?

Using PHP, how can I verify if a phone # is well formed? It seems easiest to simply strip all non-numeric data, leaving only the numbers. Then to check if 10 digits exist. Is this the best and ...
0
votes
1answer
50 views

XML: what processing rules apply for values intertwined with tags?

I've started working on a simple XML pull-parser, and as I've just defuzzed my mind on what's correct syntax in XML with regards to certain characters/sequences, ignorable whitespace and such (thank ...
0
votes
6answers
684 views

What is an XML infoset and in what ways is it different to an XML document?

I've tried to read http://www.w3.org/TR/xml-infoset/ and the wikipedia entry. But frankly I'm still not sure what the difference is. The quote : An XML document has an information set if it is ...