xml

Why isn't XmlDocument dynamic in .NET 4?

One of the areas where I would like to see the use of dynamic is XML. I think it would make XML processing code simpler to write and I believe I saw some examples on that before C# 4 came out and it's mentioned in this answer as one of the uses of this feature. So, my question is this: why wasn't the XmlDocument (or XDocument) made dyna...

Handling xls & xml in same DGV.

Hey Friends, My winform application is having a DataGridView (DGV), I'm populating it from an xml file by using ReadXml() and displaying the contents into DGV: <deptt> <proj1> <Rel_Date>23 Jun 2010</Rel_Date> <Rev>0</Rev> <Doc>Some name of document</Doc> </proj1> </deptt> I've got a prob here.... How can I copy 3 cells from xls file a...

How can i use xml attributes when converting into a hash with from_xml?

I have an xml element with multiple child elements that use the same ID. The child elements are distinguishable by a "size" attribute. When I create a hash using .from_xml it lumps all these child elements 1 field. How do I parse these child elements into different fields based on the xml attribute? XML: <artist rank="48"> <name>KI...

jQuery ajax post to web service

$(document).ready(function() { $.ajax({ type: "POST", url: "/getprojects.ashx", data: "<formData client=\"\" year=\"\" categories=\"\" tags=\"\" freeText=\"\" count=\"34\" page=\"1\"></formData>", dataType: "text/xml", cache: false, ...

EDOM Parse Error (invalid character was found in text)/ Korean characters Problem

How I can fix this? Tdm = class(TDataModule) HTTP: TIdHTTP; XMLDoc: TXMLDocument; ... var sStory: String; ... sStory:= GetHTTP('http://localhost/MultiPlay_PHP/contentlesson.php'); begin xmlDoc.XML.Text := sStory; xmlDoc.Active :=true; StartItemNode := XMLDoc.DocumentElement.ChildNodes.First; ANode := StartItemNo...

creating and adding a new child element to an xml document using the SAX interface of libxml2

Hello everyone. My problem is that I need to parse an HTML document chunk by chunk and add a comment in the head element of the document. I am using C and I found that libxml2 is the best library out there for this purpose. As I am receiving only chunks of data at a time I thought using a SAX parser would be a better option. Howeve...

Java SAX parser progress monitoring

I'm writing a SAX parser in Java to parse a 2.5GB XML file of wikipedia articles. Is there a way to monitor the progress of the parsing in Java? ...

problem on google weather report calcuation

Hi, This is GOOGLE Weather Report XML What is the calculation google doing , When i google with weather=London,UK keyword , Its showing somthing like this screen shot in my xml there is nothing like 26 , 11, 26 ,22 no my xml look like below WHAT IS THE CALCULATION INVOLVED IN THE Weather Report , How to get these into PHP v...

How to read read processing instruction from an XML File using .NET 3.5

How to check whether an Xml file have processing Instruction Example <?xml-stylesheet type="text/xsl" href="Sample.xsl"?> <Root> <Child/> </Root> I need to read the processing Instruction <?xml-stylesheet type="text/xsl" href="Sample.xsl"?> from the xml file. Please help me to do this ...

User preferences file vs App preferences file

My android application has two kinds of preferences: 1) I have user preferences defined in res/xml/preferences.xml so that users can manage their preferences with a PreferenceActivity. 2) I'd like to define another file for global configuration preferences of my app. What is the best way to manage my app config preferences? Should I c...

XSLT transformation on Large XML files with C#

I have some very large XML files (800 MB to 1.5 GB). I need to apply XSLT on that. I am able to read it XMLTextReader. When i applied XSLT transformation, get SystemOutOfMemory Exception. My code looks like; static void Main(string[] args) { XDocument newTree = new XDocument(); XmlTextReader oReader = new XmlTex...

iPhone: repeating Elements in XML

Hi, I am new to XML parsing. I am parsing the following XML. There are tutorials for if XML has unique attributes but this XML has repeating attributes. <?xml version="1.0" encoding="utf-8"?> <start> <Period periodType="A" fYear="2005" endCalYear="2005" endMonth="3"> <ConsEstimate type="High"> <ConsValue dateTy...

WSDL: Function 'foo' doesn't exist

I am in the process of developing a WSDL for my SOAP API, and I've run into a bit of an issue. I started off with a single operation, and it worked fine. But as soon as I added another operation, I'm getting a rather weird error. Consider the following (stripped down for brevity): <message name="doSomethingRequest"> <part name="foo...

XML with Prototype and Moo Tools

Hi Guys, Is there any library to handle easily Xml with Prototype or Mootools? ...

XML expression to return attribute for a filtered value

I'm trying to write an expression that will return the priority for for a filtered value. So far I've been able to get correct results when filtering for the attribute to return the value, but not the reverse. Any help with this? //Test/FileTypes/FileType[@Priority = '10'] returns person //Test/FileTypes/FileType/@Priority returns the ...

How to get a List<XElement> from this XML?

I have a block of XML similar to the following: <factsheet> <bilcontents > <config name="1" /> </bilcontents> <singlefactsheet includeInBook="true"> <config name="7" /> <fund id="630" /> </singlefactsheet> <doubleFactsheet includeInBook="true"> <config name="8" /> <fund id="623" /> <fund id="624" /> </doubleFactsheet> <tr...

Making lxml.objectify ignore xml namespaces?

So I gotta deal with some xml that looks like this: <ns2:foobarResponse xmlns:ns2="http://api.example.com"&gt; <duration>206</duration> <artist> <tracks>...</tracks> </artist> </ns2:foobarResponse> I found lxml and it's objectify module, that lets you traverse a xml document in a pythonic way, like a dictionary. Problem is: ...

Scala matching a specific node in xml

I have xml that looks like this: val xml = <plugins> <plugin type="x">plugin x</plugin> <plugin type="y">plugin y</plugin> </plugins> I am trying to write a match statement that finds the plugin with the attribute type="x". I tried: xml match { case <plugin type="x">{contents}</plugin> => println(contents) case _ => println(...

Wrong xml path or just me?

I have a PHP script that loads in an XML file. That said XML file exists in the same directory as the script - the path in the script for the XML file is relative to the php file. Now when I put that PHP script+XML files in the root of my website it works. Yet when I put that PHP script+XML files in a sub-directory the XML file doesn'...

QXmlStreamWriter add at end of file

i got an QXmlStreamWriter and add some xml to it. when i do it first time its ok, but when i want to add text at end of file it dont work. the only thing i got is first few lines i wrote good and formatted xml and the second thing i wrote is everything on 1 line. :S how to fix this? ...