vote up 6 vote down star
3

XML has its uses.

What is the worst abuse of XML that you have seen? What about XML made it so unsuitable for the task?

flag
Should be community wiki. – chaos Mar 14 at 23:41
I'm so tempted to say "the next XML I see will be the worst one" . – Kent Fredric Mar 15 at 0:04
I also think this question should be community wiki. – Can Berk Güder Mar 15 at 0:31
Until someone defines what "community wiki" even means, then I vote to keep this question as is. This question SHOULD NOT be community wiki. Anyone who votes otherwise should lose 500 reputation. – Juliet Mar 15 at 2:13
Princess, Anything that can not have a single correct answer or is more of a discussion than a question - those all should be wikified (yes, I made that word up :P)... – Paulius Maruška Mar 15 at 11:46
show 1 more comment

22 Answers

vote up 18 vote down check

Using it as a database, rewriting the file on every update/insert. See this all the time...

link|flag
Wasn't a .NET blog engine originally written like this? dasBlog? BlogEngine.NET? – Chris Mar 15 at 5:28
vote up 13 vote down

Storing Images.

Especially as an array of numbers representing individual bytes.

http://thedailywtf.com/Articles/Oh,-XML.aspx

link|flag
+1, though I'm guilty of this offense myself – Nifle Mar 15 at 10:00
Yup. Why so surprised? But I'm only guilty of "Storing Images" not storing them as byte arrays as the link shows. – Nifle Mar 15 at 21:48
yup. i've seen "<Data>65,98,16,24........................</Data>" before. – Epaga Mar 16 at 8:26
Oh? What's wrong with SVG? – vartec Mar 16 at 9:13
vote up 12 vote down

People noting experience with the "XML Programming Language" on their CV. Instant round-file.

link|flag
Does this actually happens? OMG – Rodrigo Mar 15 at 0:12
I even know people that program HTML, CSS and, yes, XHTML. – Ward Werbrouck Mar 15 at 0:15
What you have to remember is that 10 years ago a lot of people had no idea how to use XML or what it was. Then people were trying to show that they could bring something new that might help a potential employer. – Kevin Mar 15 at 0:19
Theres only one thing worse than people claiming they program in XML, and thats people who actually program in XML. See ANT for examples – Kent Fredric Mar 15 at 0:28
I'm with Kent. Some xml writing is actually a lot like programming, spring configuration files sometimes are like this, and ant files for sure. – Pablo Fernandez Mar 15 at 1:08
show 1 more comment
vote up 9 vote down

Any sort of configuration file:

What I think is most disturbing about the whole concept of XML is that it is used for configuration when it seems that its focus was more as a data format for parsing documents. I absolutely detest having to write so much of it to configure anything these days. You can probably tell I'm coming at it from a Java background, but when I see examples in YAML, JSON, or even in a DSL, I wish XML hadn't ever become popular before people looked for more serious alternatives. XML is not readable, at least not at all in comparison to these alternatives, and I wish some serious clout was pushed to make XML less dominant.

link|flag
I generally agree. The one time an XML configuration system was useful to me was in a horrendous build process where I could use XSLT to merge config sections from various sources into one big honking config file by the end of the build. In general, though, I miss the simplicity of good ol' INI. – Nicholas Piasecki Mar 15 at 4:32
I absolutely agree. The verbosity of XML does nothing to improve how configuration is stored, but does plenty to add unnecessary complexity. – mksql Mar 15 at 4:50
This answer says the God's truth. – Alex. S. Mar 15 at 5:46
Is having multiple configuration formats for all the products you use in a single solution really that much better? A standard (as any compromise) is, by definition, something everyone is a bit disappointed in. – Pontus Gagge Mar 15 at 10:08
I wholeheartedly agree. Describing a non-trivial build process in Ant is a pain, even though Ant has quite extensive and useful task library. Same for the Spring configurations, I see no benefit in using XML instead of plain Java to describe bean wiring and what else. – javashlook Mar 15 at 12:17
vote up 6 vote down

On a government project

XML wrapped in XML wrapped in XML wrapped in XML

The data in the original XML was already 8 layers deep.

link|flag
1  
aieee!! The Madness! – Mitch Wheat Mar 15 at 3:42
vote up 5 vote down

People who knock XML - I think - don't realise how horrific life was before it. Every time you wanted to exchange data, you had to document in excruciating detail how it would be encoded into 80-column text. Usually the first ten columns or so would be metadata.

Then both parties would have to write code for it.

Proper use of XML and schemas is pages and pages of code that you don't have to write, test, and debug.

Beats me why people resent it when it's used to hold config data. It's often a great way to do the job. I think that what's happening here is that the config itself is a pain in the rear, and people are mistakenly thinking that it's XML that's the problem.

What the world needs is a good XML editor that understands schemas and CSS. The main pain relating to XML is having to edit it with a plain txt editor.

link|flag
I can't see how XML is any better for communication that CSV - all you need is a doc (schema) that specifies what values are in which columns. Ant it's much easier to edit in simple text editors... – Paulius Maruška Mar 15 at 12:00
From my experience, XML works well as an interchange format. Problems start when people start using it for everything else, like build files, configuration files, as a database etc. – javashlook Mar 15 at 12:12
@paulius - try implementing a tree structure with CSV – Neil Butterworth Mar 15 at 12:32
@paulius - Object serialization / deserialization is another great example. Passing objects between apps and a large number of languages has serializers built in. Your data lives in a POJO/POCO/PO*O and XML becomes 100% transparent if the serializer does the work. – joseph.ferris Mar 15 at 12:41
I've done lots of integration, and to me flat files (fixed width) are quicker to understand and easier to get right. – WW Mar 15 at 21:34
show 1 more comment
vote up 4 vote down

Pretty much everything that's written in Java abuses it, or abuses the users by using it as a format for configuration files.

link|flag
Not only Java. .NET is hardly less guilty at least for the config file format. – Johannes Rössel Mar 15 at 12:48
True, but I don't use windows very often so that doesn't bother me much. – Vasil Mar 15 at 13:04
vote up 4 vote down

XMPP is pretty egregious IMHO, because it encodes an entire communication session as a single XML document. As a result, not only are DOM-based APIs useless in implementing XMPP apps (though to some folks, I'm sure that's a feature), but even SAX is problematic in the absence of multi-threading.

I implemented a Jabber client years ago in just such an environment (single-threaded, using SAX APIs); I had to make modifications to the parser to get control back to the application level when the socket returned no more data.

link|flag
Part of the problem is that event-based (SAX) paradigm (as well as tree models, DOM) is ill-suited for streaming content. "Pull" (stax) parsers are better fit. XMPP has other problems tho, if I remember correctly -- wasn't it also abusing namespace definitions and such? – StaxMan Apr 30 at 21:21
vote up 4 vote down

XML used to move data from tables in a relational database, into other tables in the same database, in the same application. Some of this data was also stored in text columns, with multiple values combined into a fixed column widths, memo-field style. Multi-valued columns built from multi-valued columns.

Someone else once stated: "XML is like violence. If it does not solve the problem, you are not use enough."

link|flag
vote up 4 vote down

Writing your own XML parser, a sin of which I've been guilty in the past.

link|flag
Oh yeah and me too – thomasrutter Mar 15 at 13:12
vote up 2 vote down

On an inter-department government project where we had to send data to them. They'd heard that xml was the way of the future so they switched over.

They kept saying that our xml wouldn't parse properly. We looked at the data we were producing and it was valid xml, so we asked what the problem was.

Turns out they had written their own parser, which was counting whitespace, and we had too much whitespace in our xml.

link|flag
vote up 2 vote down

Using it for tiny amounts of data.

link|flag
1  
... or for big data stores – Javier Mar 15 at 1:43
vote up 2 vote down

Using SOAP to transport an XML document, that has just one node containing encoded data, which when decoded gives you a one-level deep XML of name-value pairs.

Seriously. I've dealt with this in a API I've had to consume.

link|flag
vote up 1 vote down

Citing from thedailywtf:

link|flag
vote up 1 vote down

There seems to be some sort of standardized XML file format used in Europe for storing bank transactions. I've seen a contest for writing a new XML parser that is able to parse those files (that are > 10 GiB in size) quicker than other approaches. At those file sizes I don't expect XML to be a very good choice of file format.

And another one that bites me regularly here: Some sort of Java object serialisation which seems to work with exactly three different tags: java, object and void. The rest is all done with two or three attributes and massive nesting.

link|flag
Hmm, now I have an idea what this person was up to: stackoverflow.com/questions/754899/… "I have an XML file of size 31 GB. I need to find the total number of lines in that file. .." – Dana the Sane Jul 30 at 0:56
vote up 1 vote down

Processing XML with something else than XSLT.

I have seen too many DOM-based spaghetti-like programs that nobody, including their authors can understand.

People will greatly benefit just to know about the identity transformation as a general and most useful design pattern for processing (XML) trees.

link|flag
Is there a way of telling XSLT to invoke external code in a template? that would be handy. – paulmurray Apr 4 at 1:34
@paulmurray Yes -- <xsl:call-template/>, <xsl:apply-templates/>, extension functions/objects. There are some nice libraries of XSLT templates/functions, such as FXSL or FunctX. – Dimitre Novatchev Apr 4 at 14:07
vote up 0 vote down

It always bugs me when I see people using a SAX parser when what they really need is a DOM parser.

link|flag
Odd - I've never seen it, but not infrequently see exactly the opposite - trying to use DOM for streaming input. (I'm not the downvote btw) – le dorfier Mar 15 at 1:11
+1, this is a legitimate "abuse." The idea to use it for the file format could be sound -- but the way it's parsed and manipulated can be abused. – Nicholas Piasecki Mar 15 at 4:37
1  
Well, the new StAX parser in java gets around the crappy SAX interface and the fact that DOM means reading the whole thing into memory. – paulmurray Apr 4 at 1:32
Funnily enough, I would claim that inverse is even more rampant; using DOM when what you need is something else (not necessarily SAX, could be Stax, XPath, xslt, data binding) – StaxMan Apr 30 at 21:23
vote up 0 vote down

apache configuration file

link|flag
Especially since it's this weird sometimes XML-like, sometimes INI-like, sometimes +what -were +theyThinking type of file format! – Nicholas Piasecki Mar 15 at 4:34
vote up 0 vote down

Fontconfig's configuration format. Seriously, who needs to learn some special XML syntax (pretty much a rewrite of XSTL) just to change antialiasing for some font sizes?

link|flag
vote up 0 vote down

Marketing. Thinking that saying "We make Java + XML" is enough to get some paying customers.

link|flag
The real WTF is that they're often right... – Adam Jaskiewicz Apr 2 at 19:28
vote up 0 vote down

Using XML to describe UIs maybe isn't the worst abuse there is, but it is still pretty bad.

I don't see a point in introducing a new language (and each XML schema is effectively a new language, with specific tags and attributes you'll have to learn), to do the job that, say, plain old Java is quite capable of doing. Furthermore, when coding in Java (or any regular programming language), you have access to standard programming constructs, like ifs and loops, and ability to call methods, create factories for common constructs etc. Along with all other benefits from your IDE like call hierarchy, finding uses of method in workspace etc.

This is applicable, in my opinion, for both desktop and Web environments. For example, in JSP, you start by using XHTML to define your Web page interface... only to realize that you need conditionals and loops after all, and maybe some additional programming logic. So then people add new tags, like c:if, c:forEach, and an "expression language", so you end up programming in XML, with this awkward constructs, that have to be introduced as "tag libraries". The more I think about it, more awful it looks :)

link|flag
As far as UIs go, XML (WPF in my case) may not be perfect for the task but it's definitely a huge leap forward from things like Spring. Having to write a nested structure in linear code yields unmaintainable code at best. – Johannes Rössel Mar 16 at 17:36
vote up 0 vote down

the XML produced/used by Microsoft Integration Services packages. Hundred/thousand of lines of code - in one single line.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.