xml

Selecting XML nodes with same name but different attribute inner text in C#

<item> <title>Aerie Peak</title> <link>http://www.wow-europe.com/realmstatus/index.html#Aerie Peak</link> <description>Aerie Peak - Realm Down - Lang en - Type PvE</description> <category domain="status">Realm Down</category> <category domain="language">en</category> ...

How to put data in datarow from xmlnodelist

hello all , a have a problem i hv some data(nodes) in Xmlnodelist and i want to put it into the datarow how can i achive it thanks shashank XmlDocument document = new XmlDocument(); document.Load(CommonUtils.xmlPath); XmlNodeList node = document.SelectNodes("/KioskUser/M_EVENT[ROW_STATUS=1]"); \\xml like thi...

Setting background color for a text in XSLFO

Hello Im very new to the XSLFO. I have a requirement to color a text entry based on some condition. which i do using the snippet <fo:inline color = "red"> <xsl:value-of select="."/> </fo:inline> With the above snippet i am able to set the forecolor of the text to RED. My question is how to set the background color for the same. ...

php domdocument: when i create an xml, how can i ident each element properly?

Hiya. When i create an XML using php's DomDocument it creates the xml properly but all the elements are in one line, the xml file itself is not so readable. I searched in google and find that the attribute formatOutput in DomDocument should resolve the issue, i use php 5.3 and i do not have this properly in DomDocument. any ideas? ...

Select XML nodes as XML in T-SQL

This one seems so simple, but I must be missing something... Given this SQL: declare @xml XML set @xml = '<people> <person> <name>Matt</name> <surname>Smith</surname> <person> <person> <name>John</name> <surname>Doe</surname> <person> </people>' How would you go about getting a table containing: people ------...

can you call a template within a template in xsl

can you call a template within a template? for example: If I was wanting to use <xsl:choose> <xsl:when test="//*[local-name()='RetrieveCCTransRq']"> <xsl:call-template name="SOAPOutput"/> </xsl:when> </xsl:choose> <xsl:template name="SOAPOutput"> <SOAP-ENV:Envelope> <SOAP-ENV:Body> <OutputPayload> <TotalTr...

XML Serialization in C#

Hello, Where Can I find good tutorial about XMl serialization to the object? Thanks. ...

dhtmlxGrid > XML file > Python

Hello, I placed a dhtmlxGrid , an Ajax-enabled JavaScript grid control, in HTML page. By clicking a submit button, a javascript function will generate XML file from the grid (it is called Dataprocessor) and send the XML file to a server-side script on the server. Currently, there are ready-made PHP and Ruby on Rails scripts but I am i...

Store static data in Android - custom resource?

I'm new to Android development, and I've been playing around with it a bit. I was trying to create a program that has a small database-like collection of never-changing data. In C#, my currently best language, I'd use a List of a custom class and serialize that to an xml file, then read that into my application at runtime. I found the...

Random queries on a large xml file

I have a large xml file (1Gb). I need to make many queries on this xml file (using xpath for example). The results are small parts of the xml. I want the queries to be as fast as possible but the 1Gb file is probably too large for working memory. The xml looks something like this: <all> <record> <id>1</id> ... lots of fi...

How can I populate UITableView with XML?

I have a tab bar application. In one of my tabs, there is a search bar and a table view below that. When you enter something into the search bar, it returns parsed xml. I need to put this parsed information into the tableview below. The class inherits from UIViewController. I declared a UITableView object in the header file and linked it...

Is this hardcoding? How can I avoid it?

I'm creating a parser for a specific XML structure and I'm facing a possible hardcoding issue. Here: private function filterDefaultParams($param){ #FIXME Hardcoding? return array_key_exists('default',$param); } The literal 'default' is a valid tag in the Xml structure, is this hardcoding? May I use another technique to search ...

need clarification regarding xml schema "all" tag (is this a libxml2 bug?)

When upgrading from libxml2 2.6 to 2.7, some behavior changed for me. I've located the bug report on their site that regards this change, its https://bugzilla.gnome.org/show_bug.cgi?id=571271 . Interestingly, they report that "and I guess we misinterpreted the expected behaviour of this options (though I'm still not 100% sure)" - they ...

xml parsing from String

Hello Every one I am parsing a xml the data is coming from a String. i am using the following code for parsing:- DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory .newInstance(); DocumentBuilder docBuilder = docBuilderFactory .newDocumentBuilder(); docBuilder.isValidating(); ByteArrayInputStream ba=...

How to check the existance of an element in an XML file using XML to LINQ in C#

The XML file is having the following structure <RootElement> <TestElement Count="10"/> </RootElement> i need to check the existance of "TestElement" and to read the attribute value of "Count" if it exists Int32 Str = (XDocument.Load("Sample.xml").Descendants("<TestElement ") .S...

XML import into Access using Visual Basic

I have an XML file I need to import into an Access table, however, the XML is formatted for reporting and not for data transfer. Does someone has some code samples of how to loop through this sample document I've pasted below and pull the data out of the elements? I also need to be able to skip some SECTIONS as you can see in the examp...

Parsing XML in PHP with XMLReader - mixed content element - where'd my text go?

I'm having trouble parsing out a piece of plain text; even looping over all nodes with a print-statement, none of them contain the text I wrote in the XML file. Here's the element specification from the DTD: <!ELEMENT question (#PCDATA | choice)*> And here's the data I'm using: <question id="porridge" name="porridge" type="multiple"...

I need to get a number of a XML node's path to use in a node name after a doing a transformation using XSLT

I've got XML like this: <XML> <dealings> <members> <member path="Swap.1.&apos;stream#1.Schedule&apos;" source="0" type="string">CONTEND</member> <member path="Swap.1.&apos;stream#2.Schedule&apos;" source="0" type="string">CONTEND</member> <member path="Swap.1.&apos;stream#3.Schedule&apos;"...

How can I output HTML from a XML file?

I am trying to take the contents of 'description' and place it into a div. Below is the XML that comes from a jQuery ajax call. <media> <entry> <title>Item Name</title> <description> <p>First Line<br /> Second Line</p> <p>More Content</p> </description> <author>...

Castor XML Mapping and java.util.Map

Hello all, I've been using Castor these past couple of days to try to get a little serialization going between my Java program and XML in a readable way. Though it has a few faults, Castor's automatic xml generation via reflection is actually very functional. Unfortunately, one thing that seems to be fairly well left out of the exampl...