The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
104 views

What's the difference between “not well-formed” XML and “invalid” XML? [duplicate]

I made a claim that an unescaped ampersand in some XML source was "invalid XML". LarsH then mentioned: technically, the XML is "not well-formed". "Invalid" would mean that it fails to conform to a ...
0
votes
1answer
130 views

sed: use regex to replace '<' char with '&lt;' in many XML files

I have thousands of non well-formed XML files to patch up. Many of them contain the following issue: <someTag attr='text [< 99]'/> (note left angle in square brackets). I would like to ...
1
vote
1answer
107 views

Is xml document with undeclared prefix well-formed?

For example I have following document: <root> <prefix:element> </prefix:element> </root> As you can see, namespace with prefix name undeclared. Is this document is ...
2
votes
1answer
255 views

Removing invalid characters from XML before serializing it with XMLSerializer()

I'm trying to store user-input in an XML document on the client-side (javascript), and transmit that to the server for persistence. One user, for example, pasted in text that included an STX ...
1
vote
1answer
218 views

Struts2: The markup in the document following the root must be well-formed

I'm just discovering Struts2 and I have a problem with the web.xml file. It gives me an error near the filter tag: <filter> <filter-name>struts2</filter-name> ...
0
votes
2answers
180 views

Javax xml parser stuck when building from HTTP input stream

I'm trying to open an HTTP connection to a website and parse the html into a org.w3c.dom.Document class. I can open the HTTP connection and output the webpage to the console just fine, but if I pass ...
1
vote
1answer
35 views

Well-Formedness check in Enterprise Arichtect on uml profil

I have created my own UML profil with new stereotyps in Enterprise Architect and made up some basic rules how these have new stereotyps have to be connected. Now I'd like to have something like a ...
0
votes
1answer
232 views

Replacing low ASCII characters in UTF-16-encoded string using PHP's str_replace function

I have some PHP code that I use for text filtering. During filtering, some ASCII characters such as ampersand (&) and tilde (~) are temporarily converted to low ASCII characters (such as decimal ...
0
votes
1answer
129 views

XML not well formed Android keeps showing up

I have a XML-File in an application I just downloaded an it and eclipse keeps telling me that it is not well formed. I can not see any problem with the syntax (I even checked it with the xml validator ...
2
votes
1answer
100 views

Is there any Ruby tools or JavaScript libs to validate html is well-formed?

I have tries to scraping html from URL by using '.errors' in Nokogiri but not working with example: <table> <td></td> </table> And i don't know why return 'TRUE' as i ...
0
votes
1answer
326 views

java sax parse not well formed xml

I am implementing an RSS search feature from a search engine, using Java and SAX. However, some search results are not well-formed, i.e. the body of the <title> tag of some entries contains the ...
2
votes
1answer
249 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: ...
0
votes
0answers
96 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 ...
1
vote
2answers
746 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 ...
1
vote
2answers
868 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 = ...
0
votes
1answer
509 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
891 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
5k 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 ...
2
votes
5answers
627 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 ...
0
votes
1answer
326 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. ...
4
votes
3answers
14k 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 ...
6
votes
2answers
6k 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. ...
0
votes
6answers
2k 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 ...
1
vote
5answers
1k 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 ...
12
votes
7answers
10k 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've got input that may or may not be XML, and I want ...
0
votes
1answer
55 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 ...
7
votes
6answers
1k 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 ...
5
votes
6answers
2k 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 ...