xml

XSLT format-number with comma

Hi, I'm trying to format this and other elements alike, so it would look like this 2,590: <Add_Amount>2,59</Add_Amount> Doing it like this: <xsl:decimal-format name="dkk" decimal-separator="," grouping-separator="."/> .... <xsl:value-of select="translate(format-number(Add_Amount, '#.###,000', 'dkk'), ',', '.')" /> And the ou...

creating xml tree from a textfile with Python

Hi, I need to avoid creating double branches in an xml tree when parsing a text file. Let's say the textfile is as follows (the order of lines is random): branch1:branch11:message11 branch1:branch12:message12 branch2:branch21:message21 branch2:branch22:message22 So the resulting xml tree should have a root with two branches. Both of th...

File Not Found Exception thrown for XML file possibly caused by Outlook

Hi, I'm getting a file not found exception when my application is called by Outlook. It's called when an email is saved to the computer the app is called and performs an action on the saved message. My app uses a XML file to store configurable settings but this file can't be found when Outlook calls to executes the application. If I r...

solr multicore post data

I am using solar application in multicore mode, and I am unable to post data(xml),when i am trying to post a data by command line(cmd windows) to solr then i get an error... -> missing solr core name in path so please give me detailed answer ...

Merge keys in two different XML files (separation of data from language)

I have two XML files to render one page in XSLT. This is because I have to separate the language from the data for a multilingual website. I need to relationate data from one and other to print a value. My index.xml: <?xml version="1.0" encoding="utf-8"?> <index> <language>en</language> <example> <category id="1"> ...

How to parse larger XML file with limited resources?

Possible Duplicate: Parsing Huge XML Files in PHP I am trying to parse a 70Mb XML file under PHP. After a while the resources are not enough and the script crashes. If there is a larger XML file it ends sooner. I can't change the memory limit of the server and of PHP. What can I do to parse large files? The file size can var...

How does IXmlSerializable let me avoid base64's size inflation?

From MSDN: There are two reasons to implement this interface. The first is to control how your object is serialized or deserialized by the XmlSerializer. For example, you can chunk data into bytes instead of buffering large data sets, and also avoid the inflation that occurs when the data is encoded using Base64 encoding. How does ...

Java6 XML binding integration in Maven

When developing with Java6, is there any Maven plugin for compiling an XML schema into the associated Java classes from Maven? ...

What's the difference between <a_element /> and <a_element xsi:nil="true" /> ?

Hi, do you know if there's a difference between these tags on XML/XSD? <a_element /> and <a_element xsi:nil="true"/> e.g: <SpreadCurve> <Index>3M</Index> <IndexNumber>4587</IndexNumber> <BusinessArea xsi:nil="true" /> </SpreadCurve> and <SpreadCurve> <Index>3M</Index> <IndexNumber>4587</IndexNumber> ...

error while traversing xml in javascript

i am using below code to traverse xml in javascript i am able to get value using x[i].childNodes[0].text; function in IE but not in firefox. please tell me what should i use so that it work with all. function loadXMLDoc(dname) { if (window.XMLHttpRequest) { xhttp = new XMLHttpRequest(); } else { xhttp = new...

Setting InnerXml for XmlDocument causes missing End-Tag

XmlDocument doc = new XmlDocument(); doc.AppendChild(doc.CreateElement("Foo")); doc.DocumentElement.InnerXml = "Test"; StringBuilder result = new StringBuilder(); doc.WriteContentTo(XmlWriter.Create(result)); At the end, result is: <Foo>Test that means the end element is missing. Why is ...

Generating XSL from XML

Can I create an XSL file from existing XML file? From comments: My requirement is as follows: I have an existing xsl file which transforms XML1 to XML2. The XSL is created by a college of mine and the resource no more available. I have source and I know how the target should look like. But I do not know how to XSL. Hence...

xsl unwanted next element - read attributes from tag and sub tag

I got really close this time ;) Bellow there is : my xsl script my xml file (that calls the script) the output of the manipulation of the xsl on the xml (as shuold be) My problem is that while the href and src value should be the same there is always one picture diff between them(pic3 and pic4) as though I'm calling the next pic el...

Flex tree drag and drop

I have a flex application with 2 tree. I should allow the drag and drop from left tree to right tree based on the local name of XML. While working on this I encountered peculiar kind of problems. when dragged and dropped to right tree from left tree, the dragged item in lefttree is appearing twice when certain items are dragged to rig...

How can I get Spring to properly marshal XML value into a Java date?

I'm using Spring 3 to create some ReST services. When POSTing XML, Spring handles String fields but won't convert Date fields. Here is an example: @XmlRootElement(name = "TestObj") @XmlAccessorType(XmlAccessType.FIELD) public class TestObj { @XmlElement(type = Date.class, name = "Birthdate") @XmlJavaTypeAdapter(BirthdateXmlAda...

Adobe InDesign JavaScript XML: How to add XML structure tags programmatically?

This code references the root XML node, adds a FirstXMLObject under it, then adds a few fields under FirstXMLObject: var myXMLroot = mydocument.xmlElements.item(0); // The root always exists var b = myXMLroot.xmlElements.add( "FirstXMLObject"); b.xmlElements.add( "Name", "Bob"); b.xmlElements.add( "Address", "1234 Sesame Lane"); Supp...

Multidimensional Array

I have 2 items that are related to each other that need to be accessed separately. The title of a book and how many pages it has. I have made an array for the titles, but what is the best way to link the number of pages in that book to that title? I was thinking of the following but I don't see how to access the page count. <string-arr...

ob_get_contents stopped working for some unknown reason

This script worked fine for a few weeks then stopped working for no reason. 1.<?php 2.ob_start(); 3.include "weather xml website"; 4.$data=ob_get_contents(); 5.ob_clean(); 6. 7.$xmlFile = 'filelocation\weatherData.xml'; 8. 9. 10.$fh = fopen($xmlFile, 'w') or die("can not create or open $xmlFile"); 11. 12.fwrite($fh, $data); 13.fclose($f...

How can you enforce XSD?

I just started switching my old DTD over to XSD when I found out about it, and I am wondering how I can enforce the XSD with my XML files? I have seen the W3C validator out there for it, but I wish that there was a way to make the program not run in the browser if an XSD error was found. Is that possible? ...

Bypass authenticated XML page to be parsed with PHP?

Hello, How can I parse this xml page http://evercore:[email protected]/www.sportsbook.com/trends/203.xml using PHP simplexml? I get an error saying it can't be loaded. Thanks, S ...