xml

Trouble parsing xml with jQuery on a extension for google chrome

I really can't figure out, what's wrong with this code: This is my manifest.json file: { "name": "Test!", "version": "1.0", "description": "Testing this", "content_scripts": [ { "js": [ "jquery-1.4.2.min.js", "parser.js" ], "matches": [ "file:///*/*" ] } ], "permissions": [ "tabs"...

Livesearch function with JSON

Hi all, I currently have a method whereby there is an <input type="text" id="politician" name="politician" onkeyup="showResult(this.value)" value="Enter a politician's name"/> tag. In that same file that includes the input tag, there is a link to an external javascript file called ajax.js The contents of that file are as follows:...

Best way of representing a tree in XML

What is the best way to represent a tree structure with XML? Each element in the XML tree has an attribute that refers to a node, X, in the tree which I speak of. However, the element has to also be duplicated such that the attribute also refers to all roots in the subtree rooted at X. This can become very repetitive when you have many e...

How to view .xml output on the go? (Android App-building help)

Hi, I'm a newbie Android App Developer, also new with xml. I was just wondering if there is an easier way to view xml output other than using eclipse to compile the android application (java + xml) and then see output in the android emulator. Just asking because it takes forever to check my UI through eclipse IDE to turn on android emul...

Editing File in a thread

Hey there, I'm working on a xml service at the moment , which is a sum of 20+ other xml's from other site's services. So at first it was just ; GetherDataAndCreateXML(); But obviously getting 20+ other xml , editing and serving it takes time , so i decided to cache it for like 10 minutes and added a final.xml file with a DateTime a...

unknown host exception while parsing an xml file

when i am trying to parse an xml, i am getting following exception :- java.net.UnknownHostException: hibernate.sourceforge.net at java.net.AbstractPlainSocketImpl.connect(Unknown Source) at java.net.PlainSocketImpl.connect(Unknown Source) at java.net.Socket.connect(Unknown Source) at java.net.Socket.connect(Unknown Sourc...

Load xml file from website into XDocument (silverlight and WP7)

Hi, I have an xml file that I want to access in an WP7 and Silverlight app. Th exml file is on a webserver and I want to access is through http://www.mydomain.com/data/this_is_my_file.xml. So I want to use this url to load the xml file into an XDocument; Any ideas, thanks, Filip ...

XSL Writing html code directly in docbook

I am new to docbook, but can not find a decent way to write some pieces of html code directly in the docbook xml structure. The best I could find was dbhtml-include, but it requires a separate html file to parse. Is it possible to write a few html lines directly ? What I am actually trying to do is to write math with mathjax inside do...

XSL - why does this recurse forever?

I'm trying to create something similar to a for-loop with the recursive idiom I've seen across the web. My implementation is with a parameter that tells what to print. I use the Eclipse built-in XSL transformator and I can't for the life of me see why it gives a StackOverflowException: <!-- Loops recursively to print something the ...

XML parser-writer that keeps Attributes order.

I need to parse XML document and then write every node to separate files keeping exact order of attributes. So if i have input file like : <item a="a" b="b" c="c"/> <item a="a1" b="b2" c="c3"/> Output should be 2 files with every item. Now if xml.dom.minidom is used - attribute order is changed in output( i can get - <item b="b" c="...

XML Response returned has White Space

Hello all, I am trying to fix an error for a friend in his site that someone else has written and I am having a real hard time with one of these errors. There is functionality to check wether a user can use a username via AJAX, the response is XML. However, the XML returned has an error in it. XML Parsing Error: XML or text declaration...

How to update multiple tables from XML data

I have 6 tables in an SQL Server 2000 database. The XML contains a similar schema. What I want is to update the records in the database and append the new entries. I am a bit new to this. ...

lxml memory problem

Hi, I'm trying to parse large XML files (>3GB) like this: context = lxml.etree.iterparse(path) for action,el in self.context: # do sth. with el With iterparse I thought the data is not completely loaded into RAM, but according to this article I'm wrong: http://www.ibm.com/developerworks/xml/library/x-hiperfparse/ (see Listing 4) ...

How to serialize XML document in python using xml.dom library

I'd like to know how I can serialize an XML document in python specifically using the xml.dom library. ...

How do I convert XML to string and get the element value?

How do I convert XML to string and get the element value? Example XML <Example> <Option1>x</Option1> <Option2>y</Option2> <Option3>z</Option3> </Example> . If i wanted to get option1 it would return x, option2 returns y, option3 returns z. etc.... ...

Is Python bad at XML?

EDIT The use of the phrase "bad at XML" in this question has been a point of contention, so I'd like to start out by providing a very clear definition of what I mean by this term in this context: if support for standard XML APIs is poor, and forces one to use a language-specific API, in which namespaces seem to be an afterthought, then ...

How to get raw XML back from lxml?

I'm using the following code to locate a div: parser = etree.HTMLParser() tree = etree.parse(StringIO(page), parser) div = tree.xpath("//div[@class='content']")[0] My only problem is, that after doing this I do not want to rely on lxml to extract the contents of said div: I just want to get back the raw XML the div contains. Is this ...

Read child elements using C# from xml

Greeting, What is the best practice to read all attributes from a child elements by ID attributes using C# in xml file listed down. Thank you, <?xml version="1.0" encoding="utf-8"?> <WinDLN> <Program ID="1" Name="CIS562" StartDate="9/8/2010 5:50:00 PM" EndDate="9/8/2010 9:15:00 PM" /> <Program ID="2" Name="CIS532" StartDate="10...

REST - web service response - mime type?

1) Is it important to set the correct mime type for a web service response? 2) what is the correct mime type for a, a) XML response? b) JSON response? application/xml text/xml application/json application/x-javascript text/javascript text/x-javascript text/x-json ...

XPath query to get nth instance of an element

There is an HTML file (whose contents I do not control) that has several input elements all with the same fixed id attribute of "search_query". The contents of the file can change, but I know that I always want to get the second input element with the id attribute "search_query". I need an XPath expression to do this. I tried //input[@i...