XML (Extensible Markup Language) is a set of rules for encoding documents in machine-readable form. It is defined in the XML 1.0 Specification produced by the W3C, and several other related specifications, all gratis open standards.

learn more… | top users | synonyms

256
votes
51answers
194k views

Text editor to open big (giant, huge, large) text files [closed]

I mean 100+ MB big; such text files can push the envelope of editors. I need to look through a large XML file, but cannot if the editor is buggy. Any suggestions?
129
votes
9answers
8k views

Can you provide some examples of why it is hard to parse XML and HTML with a regex?

One mistake I see people making over and over again is trying to parse XML or HTML with a regex. Here are a few of the reasons parsing XML and HTML is hard: People want to treat a file as a sequence ...
109
votes
18answers
13k views

SOAP or REST for Web Services?

Is REST a better approach to doing Web Services or is SOAP? Or are they different tools for different problems? Or is it a nuanced issue - that is, is one slightly better in certain arenas than ...
92
votes
7answers
35k views

How to align views at the bottom of the screen?

Here's my layout code; <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" ...
90
votes
17answers
74k views

how to pretty print xml from Java

I have a Java String that contains XML, with no line feeds and indentations. I would like to turn in into a String with nicely formatted XML. How do I do this? String unformattedXml = ...
89
votes
20answers
6k views

Why is Everyone Choosing JSON Over XML for jQuery?

I thought XML is highly portable and can be used as a mini database. I have seen XML used everywhere. I even see large companies switching over to JSON. Even Microsoft has integrated support for JSON. ...
86
votes
15answers
57k views

Free XML Formatting tool [closed]

Is there a free XML formatting (indent) tool available where I can past an XML string and have it formatted so I can read the XML document correctly? Thanks Edit ~ I am using XML Notepad on Windows ...
82
votes
2answers
82k views

Where can I get a list of the XML document escape characters?

Where can I get a list of the XML document escape characters?
78
votes
7answers
96k views

Best practices to parse xml files?

The default methods for dealing with xml in c# seem incredibly crude to me, leading me to suspect that I must be missing something in my searches. What is considered the standard best practices to ...
76
votes
12answers
44k views

What is the best way to build XML in C# code?

Please indicate your best practices for building XML using C#. Edit: With the help of Shog9, I just learned about the "community wiki" feature, and happily turned it on. If you like a particular ...
75
votes
13answers
41k views

XmlSerializer - There was an error reflecting type

Using C# .NET 2.0, I have a composite data class that does have the [Serializable] attribute on it. I am creating an XMLSerializer class and passing that into the constructor: XmlSerializer ...
68
votes
15answers
14k views

What are the pros and cons of XML and JSON?

We're an XML shop (we use both XMPP and RSS/Atom feeds a lot, so I guess we have a little or no choice). Yet, I keep hearing about people who "hate" XML and sometimes refuse to use APIs who can only ...
66
votes
7answers
36k views

Best practice to save application settings in a Windows application

What I want to achieve is very simple: I have a Windows Forms (.NET 3.5) application that uses a path for reading information. This path can be modified by the user, by using the options form I ...
64
votes
6answers
67k views

java.util.Date to XMLGregorianCalendar

Isn't there a convenient way of getting from a java.util.Date to a XMLGregorianCalendar?
64
votes
19answers
7k views

XML attribute vs XML element

At work we are being asked to create XML files to pass data to another offline application that will then create a second XML file to pass back in order to update some of our data. During the process ...
63
votes
13answers
7k views

When to prefer JSON over XML?

My requirement is just to display a set of values retrieved from database on a spread. I am using jquery.
62
votes
2answers
19k views

Declaring a custom android UI element using XML

How do I declare an Android UI element using XML?
61
votes
4answers
14k views

XDocument or XMLDocument

I am now learning XMLDocument but I've just ran into XDocument and when I try to search the difference or benefits of them I can't find something useful, could you please tell me why you would use one ...
58
votes
13answers
35k views

Best open XML parser for C++ [closed]

Looking for a simple, clean, correct XML parser to use in my C++ project. Read and write my own..extension? You know what I mean. Thanks
55
votes
12answers
17k views

Is there an online tester for xPath selectors? [closed]

I know there are some online regex evaluators.. very useful, matching in real time. They are like web applications of RegexBuddy. I was wondering if there is a similar thing for xPath selectors? I am ...
54
votes
42answers
6k views

Is XSLT worth it? [closed]

A while ago, I started on a project where I designed a html-esque XML schema so that authors could write their content (educational course material) in a simplified format which would then be ...
53
votes
3answers
17k views

Proper way to implement IXmlSerializable?

Once a programmer decides to implement IXmlSerializable, what are the rules and best practices for implementing it? I've heard that GetSchema() should return null and ReadXml should move to the next ...
52
votes
4answers
14k views

Populate XDocument from String

I'm working on a little something and I am trying to figure out whether I can load an XDocument from a string. XDocument.Load() seems to take the string passed to it as a path to a physical XML file. ...
49
votes
8answers
25k views

Best XML parser for Java [closed]

I need to read smallish (few MB at the most, UTF-8 encoded) XML files, rummage around looking at various elements and attributes, perhaps modify a few and write the XML back out again to disk ...
48
votes
14answers
44k views

Any online xml formatter or formatter in free text editor?

Any online xml formatters? Ones that properly indent the tags. Or any free Windows text editor which has a built-in xml formatter?
48
votes
8answers
43k views

how to use xpath in python

Is there a full implementation? How is the library used, where is its website?
47
votes
4answers
9k views

What is the best way to return XML from a controller's action in ASP.NET MVC?

What is the best way to return XML from a controller's action in ASP.NET MVC? There is a nice way to return JSON, but not for XML. Do I really need to route the XML through a View, or should I do ...
46
votes
16answers
5k views

What are the benefits of dependency injection containers?

I understand benefits of dependency injection itself. Let's take Spring for instance. I also understand benefits of other Spring featureslike AOP, helpers of different kinds, etc. I'm just wondering, ...
46
votes
12answers
38k views

XML Schema (XSD) validation tool?

At the office we are currently writing an application that will generate XML files against a schema that we were given. We have the schema in an .XSD file. Are there tool or libraries that we can ...
44
votes
8answers
14k views

Pretty printing XML in python

What is the best way (or even the various ways) to pretty print xml in python?
43
votes
10answers
13k views

How to deal with XML in C#

So what is the best way to deal with XML documents, XSD and all that stuff in C# 2.0? What classes to use etc. Like what are the best practices of parsing and making XML documents etc. EDIT: .Net ...
43
votes
9answers
12k views

Grep and Sed Equivalent for XML Command Line Processing

When doing shell scripting, typically data will be in files of single line records like csv. It's really simple to handle this data with grep and sed. But I have to deal with XML often, so I'd really ...
42
votes
4answers
52k views

XMLHttpRequest Origin null is not allowed Access-Control-Access-Allow for file:/// to file:/// (Serverless)

I'm trying to create a website that can be downloaded and run locally by launching its index file. All the files are local, no resources are used online. When I try to use the AJAXSLT plugin for ...
42
votes
8answers
15k views

XML Serialization and Inherited Types

following on from my previous question I have been working on getting my object model to serialize to XML. But I have now run into a problem (quelle surprise!). The problem I have is that I have a ...
41
votes
10answers
13k views

How do you embed binary data in XML?

I have two applications written in Java that communicate with each other using XML messages over the network. I'm using a SAX parser at the receiving end to get the data back out of the messages. ...
41
votes
14answers
45k views

How to generate sample XML documents from their DTD or XSD?

We are developing an application that involves a substantial amount of XML transformations. We do not have any proper input test data per se, only DTD or XSD files. We'd like to generate our test data ...
40
votes
6answers
12k views

Converting XDocument to XmlDocument and vice versa

It's a very simple problem that I have. I use XDocument to generate an XML file. I then want to return it as a XmlDocument class. And I have an XmlDocument variable which I need to convert back to ...
40
votes
10answers
21k views

What's the difference between an element and a node in XML?

I'm working in Java with XML and I'm wondering; what's the difference between an element and a node?
40
votes
14answers
10k views

Java configuration framework

I'm in the process of weeding out all hardcoded values in a Java library and was wondering what framework would be the best (in terms of zero- or close-to-zero configuration) to handle run-time ...
39
votes
4answers
27k views

frequent problem in android view, Error parsing XML: unbound prefix

I have frequent problem in android view, Error parsing XML: unbound prefix on Line 2. <?xml version="1.0" encoding="utf-8"?> <LinearLayout android:orientation="vertical" ...
39
votes
9answers
21k views

Best way to compare 2 XML documents in Java

I'm trying to write an automated test of an application that basically translates a custom message format into an XML message and sends it out the other end. I've got a good set of input/output ...
37
votes
10answers
30k views

How do you do an HTTP Put?

I feel like an idiot asking this. In fact, after typing the title, StackOverflow barks at me, "That's not a very good title. Can you add some more unique words to it?" No I can't, SO; sorry. Here we ...
35
votes
8answers
26k views

XML parsing in Javascript

I have a variable string that contains well-formed and valid XML. I need to use Javascript to parse this feed. How can I accomplish this using (browser-compatible) Javascript?
34
votes
9answers
19k views

XML serialization in Java?

Is there a (preferably free) Java analogue of .NET's XML serialization?
34
votes
2answers
10k views

How to apply an XSLT Stylesheet in C#

I want to apply an XSLT Stylesheet to an XML Document using C# and write the output to a File.
33
votes
5answers
9k views

MSBuild Script and VS2010 publish apply Web.config Transform

So, I have VS 2010 installed and am in the process of modifying my MSBuild script for our TeamCity build integration. Everything is working great with one exception. How can I tell MSBuild that I ...
32
votes
7answers
13k views

How can one close html tags in vim quickly

It's been a while since I've had to do any html-like code in vim, but recently I came across this again. Say I'm doing a simple bit of a html page: <html><head><title>This is a ...
31
votes
6answers
14k views

Serialize a nullable int

I have a class with a nullable int? datatype set to serialize as an xml element. Is there any way to set it up so the xml serialializer will not serialize the element if the value is null? I've ...
30
votes
2answers
9k views

XmlSerializer: remove unnecessary xsi and xsd namespaces

Is there a way to configure the XmlSerializer so that it doesn't write default namespaces in the root element? What I get is this: <?xml ...> <rootelement xmlns:xsi="..." ...
30
votes
4answers
40k views

How do I escape double quotes in attributes in an XML String in T-SQL?

Pretty simple question - I have an attribute that I would like to have double quotes in. How do I escape them? I've tried \" "" \\" And I've made the @xml variable both xml type and varchar(max) ...

1 2 3 4 5 697