xml

XML XElement / Linq replace values with data from dictionary...

Is there a way to replace all existing values from XML with values from dictionary using Linq? I'm using c#. XML example: <root> <node1> <--without attribute <subNode1>someTextValue</subNode1> </node1> <node2 name="myNode2"> <--With attribute (IMPORTANT!!!) <subNod1>someOtherTextValue</subNode1> </node2> </root> Dicti...

Set data type (xml) for a field in data table, using Visual Studio

Hi I have datatype for a field recently converted to xml from varchar(MAX) in SqlServer DB. I want to set this type for the corresponing field in the data table, but it has no option for xml. Any suggestion ? Thanks using VS 08 and SQL SERVER 08 ...

Linking with Apache XML-Security causes unresolved references

I'm trying to build a project on Linux with GCC where one module (my own) require XML-Security (Apache's) as well. However, when linking, I get unresolved references to some functions that are in the XML-Security library. I'm attempting to link statically (or I think so, at least -- I've provided no extra parameters, and I'm using the .a...

Pre-generating XmlSerializers using Sgen and ILMerge. Trouble with arrays.

I use XmlSerializer extensively and rather than allowing .NET to generate the necessary serialization assemblies at runtime, I'd like to generate these assemblies ahead of time and bundle them with my application. I am able to use Sgen to generate these assemblies at build time. Additionally, I must run Sgen separately for each array typ...

Logo in left corner of PDF, dblatex

I am writing docbook XML and would like a header, footer in every page of the produced PDF document. I have a simple foo.xml, and I have used \cfoot[]{} in /usr/share/texmf/tex/latex/dblatex/dbk_headfoot.sty to use a footer text that works. I would like to put a logo on the left corner of every page on the pdf that dblatex generates. ...

[C#]Add XSL reference in XMLDocument

Hi, I am creating an XML document from my C# code. I need to add the XSL reference in my XML document. My code is: XmlDocument xDoc = new XmlDocument(); if (!File.Exists(fileName)) { XmlDeclaration dec = xDoc.CreateXmlDeclaration("1.0", "UTF-8", null); xDoc.AppendChild(dec); **[Need to add code to add the XSL reference e.g....

JBoss JNDI Binding Manager - maximum length of value?

I'm using the technique described here to register string values on the JNDI tree via an XML file deployed to JBoss. This is working fine for my system constants (URLs and the like). However I am also trying to register the contents of a file which has been encoded to a Base64 string. The file is fairly large (about 400k), so the resu...

how to display an exsiting xml file to user in RoR

Hi, I have an xml file and I want to display(render) it as it is to the user, i.e I want to keep the tags. How should I do in RoR? I have tried render :file=>"/path/to/file.xml", but the tag <product> disappeared. //file.xml <product>car</product> Update: I found the behavior is browers-dependent Mozilla/5.0 (X11; U; Linux i686; e...

xml.writer - why to use XHTML Namespaces?

Hi, While I was learning about how to write an XHTML document with XML writer in C#, one response in my thread said I need to use XHTML namespace: const string XHTMLNS = "http://www.w3.org/1999/xhtml"; writer.WriteStartElement("html", XHTMLNS); writer.WriteStartElement("head", XHTMLNS); I am not using it (I have just "html") a...

Sum contents of column based on a variable with XPath

Hi.. I'm a little bit of a rookie when it comes to XSLT and XPath, so I've run into this problem. I'm creating a simple table based on a view on the databse, which needs to sum some of the columns in the view. What I thourght i could do was add 'SUM_' as a prefix of all the coumns that i want to sum, and cut that tag off with a substring...

& in XmlDocument.AppendChild

I am trying to write a string out to an xml node strConverted = strConverted + "&#60;sup&#62;" + Mid(strConvertMe, intC, 1) + "&#60;/sup&#62;" Doc = New XmlDocument() Me.Root.AppendChild(h.BuildXML()) produces XML like this (in part): String that was converted &amp;#60;sup&amp;#62;2&amp;#60;/sup&amp;#62; more string stuff see how th...

iPhone geolocation with googlemaps API, plotting markers with GXml?

Hi, I'm trying to plot markers with GXml onto my map, it works perfectly fine in firefox (which also has geolocation) but on the iPhone no plotting accures. Here is my code: iPhone 3.0 geolocation demo // var iconBlue = new GIcon(); iconBlue.image = 'http://labs.google.com/ridefinder/images/mm_20_blue.png'; ...

dom4j cdata (keep whitespace)

Hello, I'm trying to get cdata text from a node using dom4j java. My issue here is that all of the line breaks are removed. Essentially, I need to read the contents of the CDATA as if it were a <pre> tag in HTML. Do you have any ideas? I have a very small time to get this done unfortunately so any help would be appreciated. Tha...

lxml Changing Unicode Characters

I am using lxml to read through an xml file and change a few details. However, when running it I find that even if I just use lxml to read the file and then write it out again, as below: fil='iTunes Music Library.XML' tre=etree.parse(fil) tre.write('temp.xml') I find Queensrÿche converted to Queensr&#255;che. Anyone know how to fix th...

XSD transformation into XML

How can I create a (empty) XML file trough a existing XSD schema? Which PHP (5.3) functions are necessary? ...

XML parses with extra whitespace

Hi I have an XML file that looks like this: <?xml version="1.0"?> <categories> <category id="1"> <category_name>Banks</category_name> </category> <category id="4"> <category_name>Restaurants</category_name> </category> </categories> The [xmlParser parse] method returns TRUE without errors. But when i print out...

groovy XmlSlurper not parse my xml file

I have an xml, and I can't parse this file with xmlslurper. Here a copy of my xml file : <Entrezgene-Set> <Entrezgene> <Entrezgene_summary>The protein encoded by this gene is a plasma glycoprotein of unknown function. The protein shows sequence similarity to the variable regions of some immunoglobulin supergene family member proteins. [...

LINQ to XML: handling nodes that do not exist?

This may be a simple fix (well, it probably is) but for some reason I just can't figure it out. So, I have some xml that looks something like this: XElement xml = XElement.Parse ( @"<Alphabet> <a name="A" /> <b name="B" /> <d name="D" /> <e name="E" /> </Alphabet>"); So later in my code, I reference a node that ma...

Android - Parse XML string

Hi there! Is there any way to parse a xml string using Android SAX? Thanks in advance, Best regards! ...

Problem parsing XML using e4X & Flex 3

I am having difficultly parsing an XML file using e4X. I can acquire information from the 'version' tag, but I cannot from any nested tags. Could someone please point out what I am doing wrong? Here is the XML: <NameOfRoot xmlns="http://www.theaddress.com/file"&gt; <version>1.0</version> <NameOfChild1> <NameOfChild2...