xml

what persistence layer (xml or mysql) should i use for this xml data?

i wonder how i could store a xml structure in a persistence layer. cause the relational data looks like: <entity id="1000070"> <name>apple</name> <entities> <entity id="7002870"> <name>mac</name> <entities> <entity id="7002907"> <name>leopard</name> ...

Looking for advice on importing large dataset in sqlite and Cocoa/Objective-C

I have a fairly large hierarchical dataset I'm importing. The total size of the database after import is about 270MB in sqlite. My current method works, but I know I'm hogging memory as I do it. For instance, if I run with Zombies, my system freezes up (although it will execute just fine if I don't use that Instrument). I was hoping for ...

XML to JSON - losing root node

I'm using net.sf.json with a Java project and it works great. The conversion of this XML: <?xml version="1.0" encoding="UTF-8"?> <important-data certified="true" processed="true"> <timestamp>232423423423</timestamp> <authors> <author> <firstName>Tim</firstName> <lastName>Leary</lastName> </author> </authors> ...

How to read a XML format file to memory in C#?

// .net 2.0 and vs2005 used. I find some code below. I am not sure I can extended the sample code or not? thank you. if (radioButton.Checked) { MemoryStream ms=new MemoryStream(); byte[] data=ASCIIEncoding.ASCII.GetBytes(textBox1.Text); ms.Write(data,0,data.Length); reader = new XmlTextReader(ms); //some procesing ...

Counter in VXML

I'm sorry that this is probably a really basic question but I'm just beginning to program. Basically I need to increment a counter in VXML. I've declared the counter as: and in an IF statement I've incremented by doing this: the second assign tag increments the counter. Thank you I have recognised a school Is that concept cor...

Is there a good Open Source xml ide?

I've looked around, and I'm surprised that I can't find an Open Source equivalent to Oxygen or XMLSpy. i.e. A rich XML editor with support for diverse types of validation, XSLT debugging and profiling, and all the other extra bits that make it more than just a text editor with syntax highlighting. I've seen a few (like Jaxe), that that...

Remove Empty Attributes from XML

Hi, I have a buggy xml that contains empty attributes and I have a parser that coughs on empty attributes. I have no control over the generation of the xml nor over the parser that coughs on empty attrs. So what I want to do is a pre-processing step that simply removes all empty attributes. I have managed to find the empty attributes,...

Copy data from one table Column another table Xml Node with many to one relation

I have two tables like this declare @Habits_new table(ID int,Habits xml default '<habits></habits>') declare @Habits_OLD table (ID varchar(50), Habit varchar(50)) Having data Like this INSERT @Habits_new values(1,'<habits><habit>Drink</habit></habits>') INSERT @Habits_new values(2,'<habits><habit>snor</habit></habits>') INSERT @Habi...

Creating large XML Trees in R

I'm trying to create a large XML tree in R. Here's a simplified version of the code: library(XML) N = 100000#In practice is larger 10^8/ 10^9 seq = newXMLNode("sequence") pars = as.character(1:N) for(i in 1:N) newXMLNode("Parameter", parent=seq, attrs=c(id=pars[i])) When N is about N^6 this takes about a minute, N^7 takes about f...

How to select the value of the xsi:type attribute in SQL Server?

Considering this xml document: DECLARE @X XML (DOCUMENT search.SearchParameters) = '<parameters xmlns="http://www.educations.com/Search/Parameters.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&gt; <parameter xsi:type="category" categoryID="38" /> </parameters>'; I'd like to access the value of the attribute "type". Ac...

How to get current document uri in XSLT?

How can I access current xml document uri in XSLT? ...

Problem designing xsd schema - because of a variable element name

Hi everyone, i'm not the best at creating XSD schema as this is actually my first one, i would like to validate an xml that must look like this : <?xml version="1.0"?> <Data> <FIELD name='toto'> <META mono='false' dynamic='false'> <COLUMN1> <REFTABLE>table</REFTABLE> <REFCOLUMN>key_column</REFCOLUMN> ...

How do I differentiate between different descendents with the same name?

I've got some XML I'm trying to import with c#, which looks something like this: <root> <run> <name = "bob"/> <date = "1958"/> </run> <run> <name = "alice"/> <date = "1969"/> </run> </root> I load my xml using XElement xDoc=XElement.Load(filename); What I want to do is have a class for "run", under which I can sto...

How do I create an XML root node in Scala without a literal element name?

I'm looking to create a document like this: <root/> That I can add children to programatically. Theoretically, it would look like this: val root_node_name = "root" val doc = <{root_node_name}/> But that doesn't seem to work: error: not found: value < So, what I tried instead was this: val root_node_name = "root" val doc = new s...

The case of "id" attribute when signing an element in a XML file

Is the case of the "id" attribute important, when creating a reference to an element for digital signing following xml-dsig standard? I've seen attributes named "ID", "Id" and "id" and some software packages have trouble finding the correct element/node for different forms. Also following various specs and schemas, there are different ...

How can I build value for "for-each" expression in XSLT with help of parameter

I need to navigate through this xml tree. <publication> <corporate> <contentItem> <metadata>meta</metadata> <content>html</content> </contentItem> <contentItem > <metadata>meta1</metadata> <content>html1</content> </contentItem> </corporate> <eu...

StringBuilder vs XmlTextWriter

I am trying to squeeze as much performance as i can from a custom HttpHandler that serves Xml content. I' m wondering which is better for performance. Using the XmlTextWriter class or ad-hoc StringBuilder operations like: StringBuilder sb = new StringBuilder("<?xml version="1.0" encoding="UTF-8" ?>"); sb.AppendFormat("<element>{0}...

How to get values of attributes on a XML file using C++ ?

Need to write some C++ code that reads XML string and if i do something like: get valueofElement("ACTION_ON_CARD") it returns 3 get valueofElement("ACTION_ON_ENVELOPE") it returns YES XML String: <ACTION_ON_CARD>3</ACTION_ON_CARD> <ACTION_ON_ENVELOPE>YES</ACTION_ON_ENVELOPE> Any code example would be helpfull Thanks ...

What can we do to make XML processing faster?

We work on an internal corporate system that has a web front-end as one of its interfaces. The front-end (Java + Tomcat + Apache) communicates to the back-end (proprietary system written in a COBOL-like language) through SOAP web services. As a result, we pass large XML files back and forth. We believe that this architecture has a sig...

Sending Illegal XML Characters in Soap Request

I am trying to send special (&, ' (single quote)) characters in the Soap Request. I am using axis 1.4. The webservice client is in weblogic server and the webservice server is an ibm mainframe (COBOL program). The request data from the client contains special character (& symbol) which is converted to &amp; I tried to enclose it with ...