Extensible Markup Language (XML) is a structured document format that defines human- and machine-readable encoding rules.

learn more… | top users | synonyms

213
votes
10answers
15k 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 ...
9
votes
2answers
2k views

A simple program to CRUD node and node values of xml file

I decided to save setting in xml file since field takes only one value. My XML file is like <?xml version="1.0" encoding="UTF-8"?> <setting> <setting1>setting1 ...
44
votes
7answers
47k views

Best XML Parser for PHP [closed]

I have used the XML Parser before, and even though it worked OK, I wasn't happy with it in general, it felt like I was using workarounds for things that should be basic functionality. I recently saw ...
35
votes
9answers
7k views

Any good XSLT tutorial/book/blog/site online? [closed]

Any recommendations?
151
votes
8answers
124k 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 ...
99
votes
9answers
79k views

XML parsing of a variable string in JavaScript

I have a variable string that contains well-formed and valid XML. I need to use JavaScript code to parse this feed. How can I accomplish this using (browser-compatible) JavaScript code?
211
votes
7answers
193k views

How does one parse XML files? [closed]

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. Is there a simpler method of parsing XML files in C#? ...
209
votes
3answers
177k 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?
31
votes
2answers
28k views

How to parse XML using the SAX parser

I'm following this tutorial. It works great but I would like it to return an array with all the strings instead of a single string with the last element. Any ideas how to do this?
171
votes
5answers
57k views

Declaring a custom android UI element using XML

How do I declare an Android UI element using XML?
73
votes
5answers
96k views

How to Deserialize XML document

How do I Deserialize this XML document: <?xml version="1.0" encoding="utf-8"?> <Cars> <Car> <StockNumber>1020</StockNumber> <Make>Nissan</Make> ...
144
votes
7answers
85k views

Best practice to save application settings in a Windows Forms 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 ...
167
votes
20answers
135k 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 = ...
16
votes
6answers
16k views

Parse XML with Namespace using SimpleXML

I have this as xml: <event:event> <event:sessionKey></event:sessionKey> <event:sessionName>Learn QB in Minutes</event:sessionName> ...
90
votes
18answers
96k views

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

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 ...
71
votes
19answers
74k views

How to convert array to SimpleXML

How can I convert an array to a SimpleXML object in PHP?
109
votes
18answers
14k 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 ...
41
votes
12answers
26k views

jQuery XML parsing with namespaces

I'm new to jQuery and would like to parse an xml document. I'm able to parse regular XML with the default namespaces but with xml such as: <xml xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" ...
13
votes
8answers
12k views

Generate/get xpath from XML node java

I'm interested in advice/pseudocode code/explanation rather than actual implementation. I'd like to go trough xml document, all of its nodes Check the node for attribute existence Case if node ...
40
votes
3answers
13k views

Scraping html tables into R data frames using the XML package

How do I scrape html tables using the XML package? Take, for example, this wikipedia page on the Brazilian soccer team. I would like to read it in R and get the "list of all matches Brazil have ...
65
votes
5answers
123k views

LINQ to read XML

I got this XML file <root> <level1 name="A"> <level2 name="A1" /> <level2 name="A2" /> </level1> <level1 name="B"> <level2 ...
513
votes
49answers
377k 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?
99
votes
12answers
91k 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.
141
votes
6answers
35k 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 ...
86
votes
3answers
29k 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 ...
185
votes
23answers
30k 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 ...
16
votes
3answers
7k views

html parsing of cricinfo scorecards

Aim I am looking to scrape 20/20 cricket scorecard data from the Cricinfo website, ideally into CSV form for data analysis in Excel As an example the current Australian Big Bash 2011/12 scorecards ...
30
votes
3answers
14k views

Decode HTML entities in Python string?

I'm trying to work out if there is a better way to achieve the following: from lxml import html from BeautifulSoup import BeautifulSoup soup = BeautifulSoup("<p>&pound;682m</p>") ...
111
votes
5answers
137k 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 ...
54
votes
11answers
33k views

Using a custom typeface in Android

I want to use a custom font for my android application which I am creating. I can individually change the typeface of each object from Code, but I have hundreds of them. So, Is there a way to do ...
74
votes
3answers
29k 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
7answers
55k views

Android, sending XML via HTTP POST (SOAP)

I would like to invoke a webservice via Android. I need to POST some XML to a URL via HTTP. I found this snipped for sending a POST, but i dont know how to include/add the XML data itself. public ...
33
votes
8answers
44k views

Does XSLT have a Split() function?

I have a string in a node and I'd like to split the string on '?' and return the last item in the array. For example, in the block below: <a> <xsl:attribute name="href"> ...
15
votes
13answers
38k views

Remove a child with a specific attribute, in SimpleXML for PHP

I have several identical elements with different attributes that I'm accessing with SimpleXML: <data> <seg id="A1"/> <seg id="A5"/> <seg id="A12"/> <seg ...
11
votes
5answers
28k views

Android: customize application's menu (e.g background color)

What is the way (if there is a way) to customize the menu (the one triggered by the MENU button of the phone). I'm especially interested in two things: changing the background color from the ...
8
votes
8answers
50k views

Parsing XML in iPhone [closed]

hi I am new to iphone development. I need to parse simple XML coming from my webserver and store this in database. Is there any sample code for doing the same?
27
votes
5answers
105k views

How to parse XML in VBA

I work in VBA, and want to parse a string eg <PointN xsi:type='typens:PointN' xmlns:xsi='<http://www.w3.org/2001/XMLSchema-instance>' ...
64
votes
10answers
46k views

What's the best way to validate an XML file against an XSD file?

I'm generating xml files that need to conform to an xsd that was given to me. What's the best way to do this?
26
votes
5answers
48k views

Writing XML on Android

Given an instance of org.w3c.dom.Document, how do I save its contents to a file/stream? EDIT: As CommonsWare pointed out, there's no such possibility using classes from Android SDK prior to Android ...
23
votes
10answers
25k views

Using Xpath With Default Namespace in C#

I've got an XML document with a default namespace. I'm using a XPathNavigator to select a set of nodes using Xpath as follows: XmlElement myXML = ...; XPathNavigator navigator = ...
92
votes
9answers
75k views

How to use xpath in Python?

Is there a full implementation? How is the library used, where is its website?
50
votes
11answers
28k views

What Java XML library do you recommend (to replace dom4j)?

I'm looking for something like dom4j, but without dom4j's warts, such as bad or missing documentation and seemingly stalled development status. Background: I've been using and advocating dom4j, but ...
33
votes
2answers
51k views

How to read XML using XPath in Java

I want to read XML data using XPath in Java, so for the information I have gathered I am not able to parse XML according to my requirement. here is what I want to do: Get XML file from online via ...
52
votes
4answers
58k views

Validating an XML against referenced XSD in C#

I have an xml file with a specified schema location such as this. xsi:schemaLocation="someurl ..\localSchemaPath.xsd" I want to validate in C#. Visual Studio, when I open the file, validates it ...
59
votes
9answers
26k 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 ...
45
votes
7answers
29k views

What does “xmlns” in XML mean?

I saw the following line in an XML file: xmlns:android="http://schemas.android.com/apk/res/android" I have also seen xmlns in many other XML files that I've come across. Can someone please explain ...
10
votes
1answer
3k views

Accessing @attribute from SimpleXML

I am having a problem accessing the @attribute section of my SimpleXML object. When I var_dump the entire object, I get the correct output, and when I var_dump the rest of the object (the nested ...
158
votes
11answers
110k views

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

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 ...
130
votes
15answers
36k views

What are the pros and cons of XML and JSON? [closed]

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 ...
14
votes
1answer
7k views

Parsing XML in Cocoa

Today I am looking into how to make a simple XML parser in Cocoa (for the desktop). I am thinking of using NSXMLParser to parse the data, but am not quite sure where to start. The XML file on the ...

1 2 3 4 5 135