xml

Unable to read in C# an XML file opened in Word

Currently I have a C# application that reads an XML file. But if this XML file is opened in word and then my application reads the same XML file, I get an IO Exception. All I need to do is read the file. Here is a small code snippet; public Object Load() { try { using (FileStream fs = new FileStream( filePath, File...

AndroidManifest.xml file <manifest> versionCode attribute

Versioning Your Applications on the Adroid developers web site: you would release the first version of your application with versionCode set to 1, then monotonically increase the value with each release, regardless whether the release constitutes a major or minor release. That is all nice and well but how is one to handle...

How to build an XML document in Java concisely?

I need to build an XML document from a Java object hierarchy. Both the Java classes and the XML format are fixed. So I can't use an XML serializer like XStream: it bases the XML format on the Java classes. Likewise, a Java XML binding technology like JAXB won't work, since it creates Java classes from the XML schema [ed: but see below...

Parsing XML in iphone Xcode

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. Please help me Thanks ...

Strange iPhone memory leak in xml parser

Update: I edited the code, but the problem persists... Hi everyone, this is my first post here - I found this place a great ressource for solving many of my questions. Normally I try my best to fix anything on my own but this time I really have no idea what goes wrong, so I hope someone can help me out. I am building an iPhone app tha...

How to Use XDocument class in SilverLight Project (C#)

Hi, I'm trying to create a Silverlight application (for the first time) that involves parsing XML from a site and displaying information. To do this I am using Visual Studio 2008 on Windows XP Service Pack 3. I also have .NET Framework 3.5 SP1 installed. My problem is that no XML-parser I have seen on the internet works. The top of ...

jQuery XML Parsing/Traversing

Hello guys, I have the following XML- <rows> <row id="5"> <cell>Item1</cell> <attrs> <attr> <id>1</id> <type>CheckBox</type> <values> <value> <id>10</id> </value> <value> <id>11</id> </value> </values> </attr> <attr> <id>2</id> ...

Current node vs. Context node in XSLT/XPath?

In XSLT, what is the difference between the "current node" and the "context node"? You can find both terms used here: http://www.w3.org/TR/xslt When would you use one or the another? How do you refer to each? ...

Writing XML from Python : Python equivalent of .NET XmlTextWriter?

I have some IronPython code which makes use of XmlTextWriter which allows me to write code like self.writer = System.Xml.XmlTextWriter(filename, None) self.writer.Formatting = Formatting.Indented self.writer.WriteStartElement(name) self.writer.WriteString(str(text)) self.writer.WriteEndElement() ... self.writer.Close() I would like ...

How to remove duplicate nodes using XSLT?

If system finds a duplicate , it should eliminate both nodes altogether. I have original xml as: <?xml version="1.0" encoding="utf-8"?> <RESPONSE> <RECORD> <COUNTRY_ID>2111</COUNTRY_ID> <CITY id="2:">0</CITY> <LOCATION id="1:14404388">LA11CFTXX</LOCATION> <REPID id="1:">1</REPID> <FLIGHTID id="1:1091513">ALK</FLIG...

Strange characters showing up in XML > ASP.NET > Javascript > HTML

Hi, i have a script that reads an xml file then produces some document.write javascript lines and sends them to request . I'm getting a weird character (only shows in internet explorer, not firefox). I can't seem to track it down. Here's a URL of the script being used (has weird chars in IE): http://www.voyagertravelguides.com/test....

Conditional SimpleXML possible?

Hi, I am pulling content from a xml file with simpleXML I was wondering if it is possible to display a certain node depending on the contents of the node. eg. <article> <title>PHP</title> <content>yada yada yada</content> </article> <article> <title>JAVASCRIPT</title> <content>yodo yodo yodo</content> </article> can simpleXML find...

Action caching not working

I'm fetching and manipulating XML from twitter and flickr in my rails app. The results appear on every page and the parsing is handled in the Application Controller with Hpricot and open-uri. This is my first experiment with action caching and it doesn't seem to be working. I'm in dev mode using WEBRick. Everything appropriate is set to...

Two Step View Pattern: XSLT vs. object graph

I intend to implement Martin Fowler's Two-Step View Pattern for rendering HTML in a web application I'm writing. The general idea is that rather than having the application output raw HTML, it outputs an custom intermediary XML which is then converted to HTML/CSS. This has a number of advantages including reduced code duplication and a ...

How to transform an HTMLCollection object to a String with XML?

What is the best way to get the full String representation of an HTMLCollection object in javascript/jquery? The output String should have an XML syntax. ...

Is there a Push-based/Non-blocking XML Parser for Java?

I'm looking for an XML parser that instead of parsing from an InputStream or InputSource will instead allow blocks of text to be pushed into the parser. E.g. I would like to have something like the following: public class DataReceiver { private SAXParser parser = //... private DefaultHandler handler = //... /** * Calle...

Help to review whether my XML validation code is efficient

Hello everyone, I am checking againtst whether a specific input string are valid (could be used as the value for an XML element) in XML UTF-8 encoding. My goal is to tell which string (from an input string array) is not valid according to XML UTF-8 encoding standard. Here is my code, my current implementation is straightforward -- asse...

c# How to add a guid simpletype into a xml schema

Hey, I'm trying to create an xml schema, which enables an attribute value to be stored as an GUID in native format. I could set it up a string, but it would be nice to store it as a real GUID. Any ideas how to do it. regards scope_creep. ...

Add hyperlink to automatically generated XML in Silverlight (C#)

Hi, Recently, my question here was answered. Now that I've got my XML all parsed and looking pretty, I've got another question about my application I've been banging my head against a wall over the past few day(s). The XML is used to automatically add Artist names to a listbox. What I want to do is provide links to Amazon searches fr...

XML Output in Java -- what's with DOMImplementationLS ?

I just had to write the following stupid class to avoid going insane: import java.io.OutputStream; import org.w3c.dom.Document; import org.w3c.dom.bootstrap.DOMImplementationRegistry; import org.w3c.dom.ls.DOMImplementationLS; import org.w3c.dom.ls.LSOutput; import org.w3c.dom.ls.LSSerializer; public final class XMLSerializer { pu...