xml

Linq to XMl sorting method

Hi I have a datagridview which binds XML manually. I wish to sort out the columns by clicking column header. here is the method i wrote: when you click column header, it grabs column header and sorting data by that column header. I also put a toggle switch(direction) on that, so when user click again , the data can be sorted in differ...

Posting XML to Rails

I am trying to 1) post some XML to my Rails App (without using forms) 2) have my Rails App then parse the posted XML to create entries within my database For example, I'd like to post <transaction> <date>12-01-2010</date> <amount>1.00</amount> </transaction> <transaction> <date>12-02-2010</date> <amount>2.00</amount> </transa...

xsi:type in doc literal format

Although in normal circumstances xsi:type does not appear in a literal WSDL's SOAP message, there are still cases when type information is necessary and it will appear -- in polymorphism, for instance. If the API expects a base type and an extension instance is sent, the type of that instance must be provided for proper deserialization o...

Sitemesh like functionality with XSLT?

I recently asked a question about using XSL/t for creating a site layout and child pages Here.. Where the layout would decorate the child page. I want to expand on that idea and come up with SiteMesh like functionality. Note that I'm going to have a very small number of xsl layout files, most of my xsl files should be for the child pages...

Why doesn't this XPath query returns any nodes?

I'm querying Sharepoint server-side and getting back results as Xml. I want to slim down the Xml into something more lightweight before sending it to jQuery through a WebMethod. However my XPath query isn't working. I thought the following code would return all Document nodes, but it returns nothing. I've used XPath a little before, I t...

How do I change the order of the product compared and viewed block in Magento?

I’m trying to move 'recently view products' block to below the 'compare products' block in the right sidebar. I’ve managed achieve this by the following inclusion in local.xml, however, the product viewed block appears twice now, with the original still sitting at the top. How do I code the xml to just send the top to the bottom, instead...

Is there a faster way to check existence of child elements under the document element of an XML file

Hi I have to analyze a lot of XML files in my current project. I get the XML files as a string object. I wrote a method to check if the XML String contains any data. private bool ContainsXmlData(string xmlString) { if (string.IsNullOrEmpty(xmlString)) return false; XmlDocument Doc = new XmlDocument(); try { Doc.LoadX...

Java XML SAX Error Handling

So say I have an xml file that looks like this: <foo> <bar></bar> <bar></bar> <bar></bar> ... <bar></bar> </foo> My goal is to validate each bar tag against a DTD. For simplicity, lets say that for each bar node that passes validation against the DTD the program outputs "true" and each bar node that fails it outputs "fail" Using...

hiding attributes from inherited_resources rest methods

I want to use REST in an Rails application that uses inherited_resources, but I want certain properties not to be revealed during json and xml request. Let's call that field 'password'. I know I can overwrite the to_xml and to_json methods and then super :except => [:password] But I would have to do that for to_xml and to_json. Not ...

Parsing a XML file in C using MiniXML

I'm using the MiniXML library to parse a XML file in C, however when i try to read the node's value it returns NULL. Here's the code: FILE *fp; mxml_node_t *tree; fp = fopen("test.xml", "r"); tree = mxmlLoadFile(NULL, fp, MXML_TEXT_CALLBACK); fclose(fp); mxml_node_t *node; for(node = mxmlFindElement(tree, tree,"node",NULL, NULL,MXML_...

Flex: ArrayCollection to XML conversion without SimpleXMLEncoder

Here are my functions for conversion: private function arrCol2XML(arrCol:ArrayCollection):XML { var xml:XML=new XML(<root></root>); for (var i:Number=0; i<arrCol.length; i++) { var obj:Object=arrCol.getItemAt(i); xml.appendChild(recursive(obj)); } return xml; } private function recursive(obj:Object, str:String='item'):XML { v...

Parsing XMl in Android using Xpath

Hi there, I want to parse an xml file using xpath in android, any idea how to do that?? I hope you get the point. Thank you ;) ...

Convert excel to xml in asp.net

Hai, I have two columns with id,name in the excel sheet.I want to convert into xml file in the below format Copper Kettle Copper Penny Copperhead Coppertone ...

How to read and parse an .xml file

I need to simply read an .xml file; like this: <exchanges> <exchange> <timestamp>2010-08-19 17:15:56</timestamp> <userid>Elijah-Woods-MacBook-Pro.local</userid> <clientname>elijah</clientname> <botid>Jarvis</botid> <input>firsthello</input> <response>Hello, sir. How may I help you?</re...

Prepend XML Declaration to Flex e4x XML Object

How do you add an XML declaration - < ?xml version="1.0" encoding="UTF-8"? > - to a Flex XML object? The same thing you could do with the old XML - new XMLDocument class and the xmlDecl property. ...

If I want my iOS app to use a RESTful WebService that returns XML data, which APIs do I want to start learning?

Hello. I'd like to build in some weather functionality into my app and I'm going to be using the NOAA weather web service to retrieve the weather information. The NOAA website has a great deal of information on how the data should be requested and how the resulting data is structured. I'm new to iOS development, so I just need a littl...

Why does an XSLT rendered XML file not print in Internet Explorer?

I have an XML file with an XSLT stylesheet. Internet Explorer opens and renders the XML file as expected. However, File | Print or File | Print Preview does not show any content. What am I missing? Thanks. ...

SSIS: from XML file to multiple tables

So I just started diggin SSIS today, so don't hate too much if there is something obvious I am missing. So I have an XML file (from a third party) <root> <foo> <fooId>12345</fooId> <name>FOO</name> <bars> <bar>BAR 1</bar> <bar>BAR 2</bar> [...] </bars> </foo> ...

Lua library/code for parsing XML

I'm looking for a pure Lua library for parsing XML files. It doesn't have to be a validating parser, and it doesn't matter if it's DOM or SAX. The best resource I've found so far is the Lua Users wiki page on XML libraries (which seems to be down as I type this; check the Google Cache version for now). What experience have you had with ...

How to setup a main menu layout in Android?

For the app that I'm making, I plan on having a main menu composed of 6 different icons, with 2 per line. This is very similar to the Twitter main menu layout seen here: So basically... how should I go about setting up the XML? LinearLayout, TableLayout? And then, what do I actually do to get the icons and text to be evenly spaced and ...