xml

Rendering HTML Tags from within CDATA tag in XSL

I have a CDATA tag within my XML code which contains some hyperlinks. <smartText><![CDATA[ Among individual stocks, the top percentage gainers in the S.&P. 500 are <a href ='http://investing.domain.com/research/stocks/snapshot /snapshot.asp?ric=LNC'>Lincoln National Corp</a> and <a href ='http://investing.domain.com/research/stocks/s...

How do I validate a subset of content in an XML document when it can occur in any order?

Hi, I have a document with a bunch of elements under a single root element which has a few elements I care about, and want to validate; but those elements may occur anywhere in the document. There are also other elements that I don't want to validate; I don't care if they're there or what's in 'em. I tried the obvious thing, an XSD wi...

How to best create an xml map of recursive directory listing in rubyonrails?

I want to build an XML map of all directories and files in my public/catalogs rails directory.(recursive map) I would like it to be constructed with basic <directory> <file> element with name attribute equal to the dir or file name. <catalogs> <file name="index.html"> <directory name="foo"> <file name="file1.html" /> <directo...

Advantages and usefulness of adding an XML file to a Visual Studio 2008 project

What is the advantage of adding XML files to a visual studio 2008 project (windows form app project for example). Once added to the project, how could I refer to this XML to use it in a class in the same project? In this case, I would be sending it as a query to a web service. ...

Problems with DOCTYPE resolution and ASP.Net

In a previous question I mentioned some work with a 3rd party DLL whose interface uses a series of XML inputs that are defined using DTDs. Everything has gone smoothly so far, but I still have this nagging issue with resolving the Document Type Declaration in the generated input values. What I can't figure out is what the deciding facto...

What is the best way to save XML data to SQL Server?

Is there a direct route that is pretty straight forward? (i.e. can SQL Server read XML) Or, is it best to parse the XML and just transfer it in the usual way via ADO.Net either as individual rows or perhaps a batch update? I realize there may be solutions that involve large complex stored procs--while I'm not entirely opposed to this,...

What is the best way I should go about creating a program to store information into a file, edit the information in that file, and add new information.

I'm about to start on a little project i'm trying to do where I create a C++ program to store inventory data into a file ( I guess a .txt will do ) • Item Description • Quantity on Hand • Wholesale Cost • Retail Cost • Date Added to Inventory I need to be able to: • Add new records to the file • Display any record in the f...

PHP error in .xml file?

OK firstly, I added this line to my .htaccess file so the php engine parses php code in .xml file: AddType application/x-httpd-php .php .php3 .phtml .html .xml After that when I view an .xml file I get this PHP error: Parse error: parse error, unexpected T_STRING in /var/www/vhosts/mydomain.com/httpdocs/test.xml on line 1 But line 1...

Python: Using minidom to search for nodes with a certain text

I am currently faced with XML that looks like this: <ID>345754</ID> This is contained within a hierarchy. I have parsed the xml, and wish to find the ID node by searching on "345754". ...

Linq to Xml and custom xml entities

I want to create a MathML document from an expression tree using Linq to xml, but I cannot figure out how to use the MathML xml entities (such as and &InvisibleTimes): When I try to create directly a XElement using XElement xe = new XElement("mo", "&InvisibleTimes"); it justs escapes the ampersand (which is no good). I also tried to ...

Versatile xml attribute regex with javascript

Basically I have an xml document and the only thing I know about the document is an attribute name. Given that information, I have to find out if that attribute name exists, and if it does exist I need to know the attribute value. for example: <xmlroot> <ping zipcode="94588" appincome = "1750" ssn="987654321" sourceid="XX9999" sourc...

Printing transformed XML

Due to circumstances beyond my control, I'm replacing all of our Crystal Reports with home-built XML reports, which are working beautifully. For most of the reports that pop up a Crystal Reports viewer, the following code opens them nicely in IE, transforming it to HTML via an XSLT stylesheet. ProcessStartInfo psi = new ProcessStartInfo...

Customizing pdf output of dblatex

I am writing a report using Docbook and i want to customize the way that dblatex converts Docbook to Pdf. This page is supposed to document this issue but it really doesn't help me. How can i learn how the latex style package works? ...

"Premature end of file" error when Java read and writes XML data files.

I have been using JDOM library to read and write XML files through Java Servlets. Problem is that when I send many requests using AJAX to my servlets which read and write data in XML files, many times it fails displaying error: Premature end of file. How can I synchronize all these read/writes to files or is there any other way to prev...

What is the best way to import xml to a database (using java)

I have just written a program for importing data from an xml file to a database using dom4j. It endend up as a series of xpath statements wrapped in java, - and it works, but I strongly feel that there is a better way of doing this. What is the preferred way to import data from xml into a db? ...

Python SAX parser says XML file is not well-formed.

I stripped some tags that I thought were unnecessary from an XML file. Now when I try to parse it, my SAX parser throws an error and says my file is not well-formed. However, I know every start tag has an end tag. The file's opening tag has a link to an XML schema. Could this be causing the trouble? If so, then how do I fix it? Edit: I ...

vs 2008 javascript intellisense in XML file problem

I am trying to get javascript intellisense to work for jQuery in a .xml file. I've already used a custom XSD to provide intellisense for the XML. Under the tag, I have a mixture of HTML and javascript which are enclosed by . And it is all greyed out so no intellisense there. Adding a /// does not help as well. I would really like to ...

Using Excel for storing data is better or XML for automation Testing

I am using WatiN for automation testing. I need to save few values for future reference in my application. I need to know whether Excel is a good approach for storage or I rather use XML for this purpose. Kind regards ...

Printing Out The Value Of An XSL Variable

Hi all, Can someone please tell me how to print out a variable in my XSL transform? Seems like an easy enough thing to do but I just can't seem to do it. Here's the code I have: <?xml version='1.0' encoding='UTF-8' ?> <xsl:stylesheet version="1.0" xmlns:fn="http://www.w3.org/2005/02/xpath-functions" xmlns:xsl="http://www.w3.org/1999...

Can you prevent node insertion into an XmlDocument if it's invalid against the xsd?

I have a schema, and I have a document. I want to allow insertion of an xml fragment into that document, but, it must be valid according to the schema. Is it possible to do this in C#? ...