xml

parse XML attribute via PHP XMLReader

the followings are XML sample code. <m:ad xmlns:m="http://www.w3c.org/soap"&gt; <title><![CDATA[TITLE]]></title> <phone>123456789</phone> <attributeGroup> <attribute id="14" name="A1">40</attribute> <attribute id="15" name="A2">50</attribute> </attributeGroup> </m:ad> I only know PHP XMLReader to get value...

Reading any well-formed RSS/ATOM file using PHP

Hello, I want to be able to read any well-formed RSS/ATOM file. That would mean I would not not know the tags, start the loop and the fields. How do I go about doing it in PHP. Thanks Jean ...

How to group using XSLT

I'm having trouble grouping a set of nodes. I've found an article that does work with grouping and i have tested it and it works on a small test stylesheet i have I now need to use it in my stylesheet where I only want to select node sets that have a specific value. What I want to do in my stylesheet is select all users who have a use...

XML structure question

I have a basic XML object that I'm working with. I can't figure out how to access the parts of it. <FacetsData> <Collection name="CDDLALL" type="Group"> <SubCollection name="CDDLALL" type="Row"> <Column name="DPDP_ID">D0230< /Column> <Column name="Count">9< /Column> </SubCollection> <SubCollection name="CDDLALL" type...

Recursion Problem in PHP

I need to create a valid xml from a given array(); My Method looks like this, protected function array2Xml($array) { $xml = ""; if(is_array($array)) { foreach($array as $key=>$value) { $xml .= "<$key>"; if(is_array($value)) { ...

What are the advantages to use StringBuilder versus XmlDocument or related to create XML documents?

This might be a bit of a code smell, but I have seen it is some production code, namely the use of StringBuilder as opposed to XmlDocument when creating XML documents. In some cases these are write once operations (e.g. create the document and save it to disk) where as others are passing the built string to an XmlDocument to preform an X...

convert an XHTML form into an XForm that uses an XML

"How can I convert an XHTML form into an XForm that uses an XML file as a data store and is usable in a web browser" Thanks to David Dorward for correcting my question formulation. ...

LINQ to XML contents of child records.

I have this LINQ to XML enquiry... var Records = from Item in XDoc.Root.Elements("Item") where (string)Item.Element("ItemNumber") == item.ID.ToString select Item; ... where ItemNumber is a reference number used in the XML, (originally written by this program but manually edited by "others"), and item.ID is ...

Invalid XML Replace Content in PHP

I have a invalid XML like this Warning: count() [function.count]: Node no longer exists in /var/bla/test.php <?xml version="1.0" encoding="ISO-8859-1"?> <nodes> <some>test</some> </nodes> Now i need a regex which would replace the Warning: count() [function.count]: Node no longer exists in /var/bla/test.php with "" how can i do that? ...

Using the XElement.Elements method, can I find elements with wildcard namespace but the same name?

Hi All, Trying to do a simple parse of an XML document. What's the easiest way to pull out the two PropertyGroups below? <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"&gt; <PropertyGroup xmlns="http://schemas.microsoft.com/developer/msbuild/2003"&gt; 1 </PropertyG...

Xpath Query to match immediate sibling nodes in a sequence.

Hi, I'm new to XPATH and I'd like to know if there is a nice way to do this using XPATH queries. I want to match consecutive sibling nodes in a XML tree to certain predefined rules for example if there are three sibling nodes occurring immediately one after the other and they have the attributes value="A", value="B" and value="C", I w...

dynamically updating a datagrid from a XML file c# 3.5

I have a datagrid that is populated via XML file when the form loads. Everything is working great but I would like the datagrid to update dynamically when a new order is received (Separate class receives a data stream and updates the file). Im looking for suggestions on how this should be done. (ie using a timer update every second, ...

How to Generate Edifact message from a xml ?

Hello, I'm currently dealing with customs messages Beans in Java. After filling in the Beans with different values, I want to produce an EDIFACT CUSDEC message corresponding to each message. For each attribute of a message Bean, I have the information to put the attribute in the right place in EDIFACT CUSEDC format. Thus, I am looking...

Using two namespaces when defining a new xml file (XDocument, XElement, XAttribute)

XNamespace xnRD = "http://schemas.microsoft.com/SQLServer/reporting/reportdesigner"; XNamespace xnNS = "http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition"; XAttribute xaRD = new XAttribute(XNamespace.Xmlns + "rd", xnRD); XAttribute xaNS = new XAttribute("xmlns", xnNS); XElement x = new XElement("...

XSD complexContent element one name multiple forms

the name sums it up GRP2 can come in multiple shapes and flavors heres my schema <xsd:element name="root"> <xsd:complexType> <xsd:sequence> <xsd:element name="GRP1" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> </xsd:element> <xsd:complexType name="GRP1"> ...

mulitple attribute xml filter as3 e4x

I am trying to come up with the best xml schema to support tag filtering. And then a method to filter the xml on an arbritary amount of tags. So here is the xml: var videoXML:XML= <?xml version="1.0" encoding="UTF-8"?> <videos> <video> <tags label="dogs,brown,lawns" /> </video> <video> <tags label="dogs,cats" /> </v...

XML jQuery Problem

This code for parsing my xml and appending via jquery seems to work great in every browser but Chrome (Mac only, the windows version of chrome works fine) and explorer. I'm not aware of any glaring issues in the code so I thought some fresh eyes might help. Anyone know what could be causing IE and Chrome on the mac to not append? <scrip...

how to avoid the error due to missing element from an XML file in Flash Action Script

Hi, I have a code which is written for read the xml data. and the xml file contains the optional values, so some time the elements are present there some times not. In this case how can i set a default value for that in action script 3.0. When i tried to trace the value that area is skipping. So is there any other method to trace-out ...

A better way to do XML in Java

There are a lot of questions that ask the best XML parser, I am more interested in what is the XML parser that is the most like Groovy for Java? I want: SomeApiDefinedObject o = parseXml( xml ); for( SomeApiDefinedObject it : o.getChildren() ) { System.out.println( it.getAttributes() ); } The most important things are that I don't...

Is there a standard syntax for encoding structure objects as HTTP GET request parameters?

Imagine we need to pass a a number structured objects to the web application - for instance, locale, layout settings and a definition of some query. This can be easily done with JSON or XML similar to the following fragment: <Locale>en</Locale> <Layout> <Block id="header">hide</Block> <Block id="footer">hide</Block> <Block...