xml

How do i create methods from the parsed values from the xml file

I have parsed an xml file using the digester parser , now i need to create a method like If I have a <productlist> <products> </products> . .. </productlist> findProducts() should give me all the subelements with all the attributes How do i do this...

Parsing Text Between Two Empty XML Elements in Objective C

I already know how to parse XML Elements that contain content (<this> Content </this> in Objective C but I am currently using a web service that returns the content I need in between two closed elements (<begin-paragraph/> The content I need <end-paragraph/>) I have been looking online for any examples of anyone else doing this, but I c...

Is this too ... hacky? Xml to an object

I'm playing with my favorite thing, xml (have the decency to kill me please) and the ultimate goal is save it in-house and use the data in a different manner (this is an export from another system). I've got goo that works, but meh, I think it can be a lot better. public Position(XElement element) { Id = element.GetElem...

C# WPF: Display child nodes of selected parent node as a grid

I have a xml like this: <root> <project name="p1"> <row field1="31" field2="3" Name="Joe"/> <row field1="39" field2="3" Name="Joey"/> <row field1="37" field2="3" Name="Joei"/> </project> <project name="p2"> <row field1="31" field2="3" Name="Joe"/> <row field1="39" field2="3" Name="Joey"/> </project> </root> Now the listbox dis...

Combine Files PLEASE HELP

Hello, i have several hundred XML files, which are 2kb each, so they are small, but i need to combine all of them into one because i need to cross referance the info in them with a database that i have each file contains a specific case number along with other non important stuff is there anyway i can combine all those files into ONE x...

Integrating xml editor in php

How can i create a XML editor with easy to use interface using php ...

How do i Export a DataTable to an *.xls file (excel) in C# Compact framework 3.5

i have a table in a C# compact framework 3.5 application that i need to export to an excel that will be used on a regular desktop pc. i already wrote it to an XML successfully if that helps... but i need a .xls file please help... ...

Question about C#, servers, XML

So I'm working on a project for my internship and have hit a bit of a brick wall. Unfortunately, the only people I know who are qualified to help me at the office are on vacation at the moment, and Google has been unfortunately unhelpful (or my search skills inadequate), so I thought I'd ask here. The project is basically to make a serv...

Price comparison websites - how do they work?

Hey, I was just wondering if anyone could explain to me how a price comparison website works? I mean if it works how I think it does (explained below) then I have a really good project to work on for myself, which should make a lot of money long term. So how I think it works is that each supplier provides an RSS feed which the comparis...

Reading a simple xml using php

<key><name>testing name</name><result>success</result></key> My PHP code: $doc = new DOMDocument(); $doc->load( 'key.xml' ); $result = $doc->getElementsByTagName( "result" ); echo $result->item(0)->nodeValue; I just need to extract the text value of "result", but it doesn't output that to me. Could you help me please? ...

Serialization: Write out pre-made XML to XmlWriter. Implementing IXmlSerializable C#

Background / Goal More or less, I'm trying to create a nested group of objects that will be serialized to XML. The basic hierarchy will be something like: Documents Document Contents Which will translate to something like (Still this is vary basic) <Documents> <Document> <Contents> Custom objects </Contents> </Document>...

Validating XML in Perl with libxml and an XSD file

I am trying to have my perl script get an Xxml file from online and validate it according to an XSD file. The code to do this is as follows: my $url = shift @ARGV; my $response = $ua->get($url) || die "Can't fetch file"; my $file = $response->content; my $schema_file = "schema.xsd"; my $schema = XML::LibXML::Schema->new(location => $s...

Jquery: Count node separation in xml

I'm loading an xml document using JavaScript (Jquery $.ajax). I need to be able to count the number of branches (b) separating 2 text nodes (s). E.g. <b n="Archaea"> <s>Archaea</s> <b n="Eubacteria"> <s>Cyanobacteria</s> <s>Spirochaete</s> <b n="Seaweeds"> <s>Red ...

Importing into SiteFinity

I just finished installing SiteFinity 3.7 standard version on windows server 2008. Is there a way to entirely/partially import an already existing .NET project (ASP.NET) into SiteFinity with some minor changes in the code of course (may be by changinf a couple of xml files or something similar). I could only see an "export" under Adminis...

CDATA XML is truncated while parsing

Hi, I'm using a SAX parser (on android) to parse an xml file from an WebService. On some elements the CDATA is truncated and not complete, e.g. the XML-file contains data like <name><![CDATA[Gölsder und Ginck GmbH]]></name> and after parsing the xml file with public void characters(char[] ch, int start, int length) throws SAX...

XDocument to dataSet, my nested nodes are getting treated as new tables?

When looping through elements it thinks the child node is a table, when it should just be a column. I have most of the code working well, until I the code gets to this part: (all of my code is at the bottom) new XElement("TBL_Magic_TripCountries", lstCountry.Items .Cast<ListItem>() ...

asp.net listboxes and XML

I have the following XML <?xml version="1.0" encoding="UTF-8"?> <Releases> <Release version="1"> <Status>Development</Status> <Date>18/8/10</Date> <Features> <Feature Name="Org"> <Developer>someone</Developer> <Deatil>ejfkhwekjfhefhw</Deatil> </Feature> <Feature Name="Export"> <Developer>Some dev</Developer> <Deat...

XSLT comparing/sorting using a param passed from PHP

I'm having an issue doing conditional tests and sorts using params passed into the xsl file from PHP. I can do a match based on testing a string value, and can sort using an explicit name, but cannot get the variables to work in doing either. Here is the XSL and a fragment of the relevant XML. <Products xmlns:b="http://www.viator.com/af...

Preserve newlines when parsing xml

I'm using the SAX xml parser to parse some xml data which contains newlines. When using Attributes#getValue, the newline data is lost. How can keep the newlines? ...

Can anybody translate this PHP code into Rails

i'm having a hard time translating this php code into rails. $doc = new DOMDocument(); $doc->loadXML($in); /* Iterating through the XML and store the data points into the $list array */ $params = $doc->getElementsByTagName( "param" ); foreach( $params as $param ) { $names = $param->getElementsByTagName( "name" ); $name = $names...