xml

I need to store the XML in SERVER through PHP

Guys, I need to store the XML that i get it from Google Analytics. Its format is XML file. I need to create the script ( PHP ) that will read XML file from Google Analytics and store in my server with user defined name. I tried like that <?php $dom = new DOMDocument(); $dom->load('https://www.google.com/analytics/reporting/export?fmt=1...

Reading from XML file using XmlHandler class from Forum Nokia - Symbian C++

Hi! I'm trying to use XmlHandler class ( link to Forum Nokia with code of XmlHandler Class ) on Symbian S60 3rd FP2 edition to read xml files. I have in my function this code: CXmlHandler *iXmlHandler; TFileName fileName; iXmlHandler = CXmlHandler::NewL(); fileName.Append( KConfigFile ); iXmlHandler->StartParsingWithAoL( fileName ); ...

add a node in document in java

I am trying to remove and add similar nodes in a document tree Element firstItem = (Element) links.item(0); Element element = (Element)firstItem.cloneNode(true); int length = links.getLength(); while (0 != length) { System.out.println("removing element #" + l + " Length: " + length); Element link1 = (Element) links.item(0); ...

How can I add an attribute to an XML node based on another attribute?

Hi there, I have the following XML: <funds> <fund name="A" ITEM0="7%" ITEM1="8%" ITEM2="9%" ITEM3="10%" ITEM4="11%" ITEM5="" /> <fund name="B" ITEM0="11%" ITEM1="11%" ITEM2="13%" ITEM3="14%" ITEM4="16%" ITEM5="" /> <fund name="C" ITEM0="" ITEM1="" ITEM2="" ITEM3="" ITEM4="" ITEM5="" /> <fund name="D" ITEM0="7%" ITEM1...

deleting specific node in xml

hello folks., i need to delete specific employee node and also its child node based on the value of id.. for example, here i need to delete employee tag with id="2". <company> <employee> <id>1</id> <name>sa</name> </employee> <employee> <id>2</id> <name>ssa</name> </employee> </company> thank...

Create an Dynamic XML file which is actually an ASPX page?

Is it possible to create a sitemap.xml file which is dynamic and is actually created each time it is requested using c# The obvious thing to do would be to call the file sitemap.aspx and have it return XML, but it has to be called sitemap.xml and look like an XML file (headers etc) to the requester. ...

How can I save an XML DOM tree to a new document using Perl's XML::LibXML?

I write the following (DOM) Perl script (shown below) in order to create the following XML DOM: <books> <computer/> </books> How can I save the XML output into test.xml file? I tried to save the XML with $doc->printToFile('/tmp/test.xml'); but I get: can't locate object method "printToFile" via package "XML::LibXML::Document"...

How do I change the file that the XSLT template is using in Visual Studio 2010?

I have an XSLT file and the first time I ran it, it asked me for an XML file. How do I get it to let go of that setting and let me choose a new one? ...

Logging xml data in an xml log file...

I am needing to log some xml data (which is currently a JDOM Document), and I am trying to output it to a standard Java log. However, this will only produce logs with the < and > ends of the tags re-encoded as &lt;? ?&gt; etc. Although this can be parsed for the right information, it makes the log file effectively unreadable. Can an...

What is the best way to monitor subscribers to my ATOM feeds

I have a bunch of ATOM feeds, some generated dynamically others not, and I would like to be able to monitor the subscribers to each one. For the dynamic ATOM feeds, it is the same php file echoing different xml dependent on the $_GET data. Can someone tell me an efficient way to monitor the subscribers to my feeds? ...

XML Serialization - handling special cases

I need to XML serialize some classes, which in some cases do not adhere to the rules and guidelines, that is needed in order to make built-in serialization work. This includes properties that are interface types and properties without setters. I know how to implement IXmlSerializable, but it could be a lot of work; since most of the pr...

Can't set output of 'WITH XMLNAMESPACES...FOR XML PATH' to a variable?

I have a query like the following: ;WITH XMLNAMESPACES ( DEFAULT 'http://www.somewhere.com') SELECT ( 'SOMETHING' ) FOR XML PATH('RootNode'), TYPE Running this works fine. However, I run into troubles when I try to set the XML output to a variable like this: DECLARE @MYXML AS XML SELECT @MYXML = ( ;WITH XMLNAMESPACES ( DEFAULT 'http...

Dynamically Bind XML to DataGrid in Silverlight

I've been trying to bind XML (via an XElement) to a DataGrid dynamically in Silverlight (specifically Silverlight 4, but any solutions in SL3 would be fine too) but have been unable to do so. I hope to do this dynamically (ie - no rigid business objects to represent the XML). What I'm hoping for in the end is a way to bind to any XEleme...

how can i convert xml document/file to dom in python?

I need to do screen scraping and for that i need to convert xml to dom in python please can anybody tell that how can i do this.... ...

Is it possible to ignore/skip nodes while parsing xml in Java

I'm trying to remove SOAP and ns2 nodes from this XML : <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"&gt; <SOAP-ENV:Body> <ns2:createCustomer> <Customer> <CustomerId/> <names> <firstName>fName</firstNa...

How to layout TextViews side-by-side with spacing in android?

I have a very simple layout with two side by side textviews. Both have the same parent layout that fills the screen horizontally. I need them to have a visible space between them so that they are visually seperated when both have text. I also need the left textview to take up about 2/3 the screen width and let the other have the rest....

Count XML nodes using XSLT but excluding certain nodes

I have the following XML: <assessment> <section> <item name="Item1"/> <item name="Item2"/> <item name="Item3"> <attributes> <item_references> <item_reference> <attributes> <item name="Item3.1"> ...

Parse file containing XML Fragments in Java

I inherited an "XML" license file containing no root element, but rather two XML fragments (<XmlCreated> and <Product>) so when I try to parse the file, I (expectantly) get an error about a document that is not-well-formed. I need to get both the XmlCreated and Product tags. Sample XML file: <?xml version="1.0"?> <XmlCreated>May 11 2...

XSLT element names as a string

I want to output something similar to the following using XSLT XML: <myroot> <node1> <subnode1>somestuff</subnode1> <subnode2>otherstuff</subnode2> </node1> <node2> <subnode2></subnode2> <subnode3>stuff here</subnode3> </node2> <node3> <subnode>stuff</subnode> <subnode>stuff</subnode> <subnode>othe...

lxml removing <?xml ...> tags when parsing?

I'm currently working with parsing XML documents (adding elements, adding attributes, etc). So I first need to parse the XML in before working on it. However, lxml seems to be removing the element <?xml ...>. For example from lxml import etree tree = etree.fromstring('<?xml version="1.0" encoding="utf-8"?><dmodule>test</dmodule>', etr...