xml

MS VBA and XPath 2.0

Do any VBA libraries exist which will allow me to use XPath 2.0 within VBA? MSXML6 does not work with XPath 2.0. Basically, I want to parse XML documents using XPath 2.0 as it allows me to use functions within the XPath expression to filter the XML document. As an example, the usage of the function current-date() would be useful as I w...

Code not populating from xml after changing

In my asp.net code there is a xml data reader where the values from xml has been picked and put it in the variable in the code. I have recently changed the values in the xml file But my code still taking the previous values instead of the new one. please help me Code as below: xmlData.ReadXml(Server.MapPath("./App_Data/EmailAd.xml...

How can I order tags in XML::Simple's output?

Here's my scenario: I need to generate XML via Perl in which the schema is full of <xs:sequence> tags (i.e. the tags MUST appear in order). I don't have control over the schema (third party) and there have been so many problems whenever we add new CPAN modules (don't have a good way to propagate them to customers, etc) that we've basic...

Problems Transforming EntityObject XML with XSLT

I have an XML document that I generate from an Entity Framework object. The generated XML looks like this: REPOSTED FULL XML <Task z:Id="i1" xmlns="http://schemas.datacontract.org/2004/07/MCC.DAL" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/"&gt; <EntityKey z:...

XSLT applied to XML doc with xmlns attribute

I'm applying an XSLT stylesheet to the following XML file: <top xmlns="http://www.foo.com/bar"&gt; <elementA /> <elementB /> <contents> <contentitem> <id>3</id> <moretags1 /> <moretags2 /> </contentitem> <contentitem> <id>2</id> ...

Is there a good MooTools data grid that supports JSON and XML?

I'm looking for a MooTools based data grid that supports JSON and XML data types. If anyone could direct me to one, and identify a few key points why they would select it, I would appreciate it. ...

Is there a generic way to create a data source from a DataSet?

I'm working on an application that generates a ADO.Net DataSet, which I want to be able to export to various data source types. I'd like to keep my export code generic so that I could switch between exporting to an MS Access file, SQL Server, MS Excel or other data source types with out creating a lot of duplicate code. DbProviderFactor...

XML Parsing Error: junk after document element. Rails builder

Hello I am trying to send send an xml Doc from an action The XML is created by the following method def media_xml x = Builder::XmlMarkup.new x.instruct! x.declare! :DOCTYPE, :html, :PUBLIC, "-//W3C//DTD XHTML 1.0 Strict//EN", "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" x.options{ x.videos{ for m in self.media x.i...

How do you specify the content of an element in XSD?

I have XML that looks like this: <Parameter Name="parameter name" Value="parameter value" /> which I defined in XSD like this: <xs:complexType name="Parameter"> <xs:attribute name="Name" type="xs:string" use="required" /> <xs:attribute name="Value" type="xs:string" use="required" /> </xs:complexType> but what I really want is...

Is there a way to do XSD validation of an XML stream in PHP

Let's say I want to be able to validate that a 50GB+ XML file conforms to a given XSD. I could use DOMDocument::load & DOMDocument::schemaValidate but that will take all of time on loading and will generally exhaust all available memory for me. Is there any way to feed an XSD to a SAX or any other type of stream processor and have it...

Read the XML/SOAP from an XMLDocument

I assume somehow you can user an XmlReader to read the envelope from an XmlDocument. Does anyone have a good example how? I want to simply extract the entire sent SOAP text into a string variable so we can log it in case of a request error. Example methods: protected virtual HttpWebRequest CreateWebRequest(string endPoint, Int32 cont...

Please Help Me Learn to Fish - Javascript, Prototype and XML

I am looking for a good online reference to working with XML in Javascript. Specifically, I am using the protoype library. I have my ajax response with a valid responseXML document. I can find all sorts of online examples for looking at the data in the first child node of the first element tagged 'X', but that doesn't help me. What I ...

Writing XMLDocument unescaped in C#

Currently I'm writing XHTML in a XmlDocument. This works perfect, but I'm stuck on one problem. Some XmlText elements can contain things like &nbsp;. When I want to write such things to a stream it uses the innerXML instead of the innerText value for such nodes. The problem is that the ouput is wrong because now its outputting &amp;nbsp;...

.net xml serializer not encoding some characters

I a class containing multiple properties of type string. One of the values contains a character of hex value 96. If I serialize the class to xml, the xml serializer does not encode that character, and if I view the xml in various tools such as IE or SQLServer with OpenXML, it complains that the character is invalid in an xml document. ...

Removing Optional Elements from XML when invalid

I have a piece of xml that contains optional non-enumerated elements, so schema validation does not catch invalid values. However, this xml is transformed into a different format after validation and is then handed off to a system that tries to store the information in a database. At this point, some of the values that were optional in...

Child XML tag collision jQuery

I've been using jQuery .find() to do xml traversal, and I'm finding that occasionally I have a child tag in a tree that will collide with a tag somewhere further up the tree. For instance... <?xml version="1.0" encoding='UTF-8'?> <userInfo> <firstname>This is a firstname</firstname> <lastname>This is a last name</lastname> <app...

C# - Xml manipulation using XmlDocument

In C#, how do I replace a node in an xml with another node using XmlDocument. For E.g, consider the following xml file. <Products> <Product ProdID="1"> <Data>abc</Data> </Product> <Product ProdID="2"> <Data>def</Data> </Product> </Products> Let us say I need to replace <Product ProdID="2"> <Data>def</Data> <...

which is the most efficient XML Parser for C++ ?

I need to write an application that fetches element name value (time-series data) pair from any xml source, be it file, web server, any other server. the application would consume the XML and take out values of interest, it has to be very very fast (lets say 50000 events/seconds or more) also the XML document size would be huge and frequ...

count .plist dictionary items (iPhone SDK)

This is what the plist looks like as source code: { authorLastName = Doe; authorFirstName = Jane; imageFilePath = "NoImage.png"; title = "Account Test 1"; year = 2009; }, { authorLastName = Doe; authorFirstName = John; imageFilePath = "NoImage.png"; title = "Account Test 2"; year = 2009; }, How come it isnt in XML format??? ...

How i insert data into xml file using Windows Application in .net?

How i insert data into xml file using Windows Application in .net? ...