Questions tagged [nativexml]

NativeXml is an opensource native Delphi XML parser and writer.

NativeXml targets Delphi 5 through Delphi XE.

Notable feature:

Native xml can use the new binary format of NativeXml thus avoiding expensive parsing process.

Resources:

17 questions
7
votes
2 answers

how to install nativeXML using Delphi 2009?

I`m using Delphi 2009 and want to operate some XML data. I heard that nativeXML is one of the most convenient ways to do it. so how can I install this library?
chester89
  • 8,328
  • 17
  • 68
  • 113
5
votes
0 answers

With latest NativeXml (v4.03 svn), is it possible to get the element's value with the preceding and trailing blanks without checking type iteratively?

As shown below, the latest NativeXml (v4.03 svn) sees the element's value as three parts: the preceding blank, the char data, and the trailing blank. Therefore, one could check the element's child nodes iteratively to get the value with preceding…
SOUser
  • 3,802
  • 5
  • 33
  • 63
4
votes
1 answer

Delphi - Can I create canonical XML with NativeXml?

I've been using NativeXml for years to create xml from my program's data. This has worked very well but now I've hit a snag. I now need to insert a hash into the xml which has been created from a canonical form of the xml. I've had a look and Native…
3
votes
1 answer

going through a XML file with Delphi and NativeXML:

let's say that I've a XML file looking like this Tove tove@home.com Biggles biggles@home.com
Jean-Philippe
  • 173
  • 10
2
votes
2 answers

How to find node using NativeXml : Delphi

i'm trying to use NativeXml, yes its more simple than xmldocument, but i still cannot find a solution to find node that have multiple name.. Manggo Salad Good Excelent Nice…
ujang kelabu
  • 151
  • 3
  • 13
2
votes
1 answer

uniqness insertion in native xml database

I am developing a project based on XML. I use the Sedna database to store my collection (which contains XML files, and their XSD schema files). I define the primary/unique keys in those schemes, but till now I can insert duplicate values (via XQuery…
scass
  • 35
  • 9
2
votes
1 answer

Delphi - Iterating through an XML dataset with NativeXML

I'm trying to migrate some xml code from the default delphi XML routines to NativeXML, hopefully to improve the speed (a lot). The XML files are of the form:
'My Name'
'My Address'
rossmcm
  • 5,493
  • 10
  • 55
  • 118
1
vote
1 answer

NativeXml and threading

I am tryng to get this library working with thread but I am not able to get result back to the main thread using syncronize. No problem creating xml within excute method. Someone have used it? NativeXml TMyThread = class(TThread) …
marcostT
  • 573
  • 1
  • 10
  • 20
1
vote
0 answers

NativeXML - Create processing instructions (xml-stylesheet)

I know how to do it with 'classic' XML object begin piNode := XMLDocument1.DOMDocument.createProcessingInstruction('xml-stylesheet', 'type="text/xsl" href="CDA2.xsl"'); XMLDocument1.DOMDocument.insertBefore(piNode,…
LukaL
  • 43
  • 1
  • 3
1
vote
1 answer

delphi nativexml multi level xml structure

i work with live stream xml structure , i should to check received xml data to desire which way to select , the problem is xml stream is multi level as shown below, all me tests Stuck with the first phase server response xml :
Realbitt
  • 388
  • 6
  • 18
1
vote
1 answer

Create data in xml from txt file

I want to creat this xml file from a txt file... i do this Code: FXml := TNativeXml.CreateName('Root'); FXml.XmlFormat := xfReadable; open the file AssignFile(TFile,'user.txt'); Reset(TFile); while not eof(TFile) do begin …
azrael11
  • 417
  • 6
  • 18
0
votes
1 answer

How to create RESTful CRUD operations typed web services using Native XML-databases?

I have to create a RESTful webapplication/Web service which performs CRUD operations where I have to use XML Native databases(eXist,BaseX). Can anybody help me to how to make a Native Xml database connection with netbeans/eclipes or anyother IDE? Is…
0
votes
2 answers

Section name with multiple words in TNativeXML

I'm trying to make XML file using NativeXML v4.09 and used it with structure like this : this is value I write the simple code like this : procedure…
Haykal HM
  • 31
  • 5
0
votes
0 answers

How to create xml based on this xsd?

I have this XSD and I am trying to create the XML file using NATIVEXML (Delphi).
0
votes
1 answer

How to deal with Sedna via PHP

I have experienced for several years working on PHP with mySQL database .. But now I have a home work to working on Sedna Native XML Database as DBMS with PHP, I went to Sedna hompage and download Sedna and try to working on it via commmand line,…
Louay Hamada
  • 781
  • 1
  • 14
  • 22
1
2