OmniXML is an open source XML parser for Delphi, Turbo Delphi and Kylix.
3
votes
1answer
99 views
Can OmniXML Deserialise an object containing a list of objects?
So for example how to serialise an object like this:
unit u_Configuration;
interface
uses
Classes,
Generics.Collections,
OmniXML,
OmniXMLPersistent
;
type
TMyObject = class ...
2
votes
1answer
499 views
How to install OmniXml for Delphi Xe2/ OExport XLSX/ODS native Delphi/Lazarus import/export library
I know this might be a simple question but i searched the internet and couldn't find an answer. I am trying to install OExport - XLSX/ODS native Delphi/Lazarus import/export library ...
7
votes
1answer
782 views
What happened to OmniXML?
There seems to be a great deal of enthusiasm about OmniXML, but omnixml.com is offline and the Google Code project is empty. What happened to this library and where can I find the code (since it's ...
3
votes
1answer
299 views
How to delete specific node in omnixml delphi
i've read this answer but i don't know how to use that sample in my case. I have an xml file
<Archive>
<Source>
...
7
votes
2answers
451 views
store xml inside xml
Using OmniXML package, is it possible to store XML code inside another XML file that has its own XML data?
Like this:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
...
2
votes
1answer
232 views
Using OmniXML and Delphi, how do I locate an element by its attribute and change another element in node?
Using OmniXML and Delphi, I would like to locate an element and change another element in the node. For example, in the xml listing below, I would like to locate /first-name = 'Joe1' and then locate ...
2
votes
1answer
193 views
How to insert xml prolog using SimpleStorage to generate gpx file?
I plan to adopt once and for all handy a tool for handling the creation of gpx files.
I believe SimpleStorage which is a OmniXML based storage suited for easy XML data management, data storage and ...
0
votes
1answer
292 views
omni xml create xml
What is the fastest way to implement a creation of xml file in this format:
<?xml version="1.0" encoding="Unicode" standalone="yes"?>
<A V1="string" V2=String >
<B>
<C ...
1
vote
2answers
333 views
How to delete a child node using OmniXML?
I'd like to delete the line with pathid="2" in the rowpath section...
<?xml version="1.0" encoding="utf-8"?>
<LostPath Condition="Active" Selected="train.exe" ...
1
vote
3answers
888 views
How to create simple XML in OmniXML
i want to create this structure xml
<root ver="" file="">
<row>
<id></id>
<name></name>
<surname></surname>
...
2
votes
1answer
361 views
how to process a xml node text up to the first subnode and after the last one?
<p> Normal text <b> bolded </b> finish normal text </p>
Im processing that xml (example reduced) with OmniXML (but I believe the solution will apply to other XML parsers). Im ...
2
votes
1answer
505 views
omni xml , is there a simple current example for reading xml file?
Looking for readable example use of Omni Xml package.
the documentation now is 2 examples, for loading and writing, nothing about reading, nor iterating.
could you provide a simple reading Xml ...
2
votes
2answers
1k views
Delphi XE & OmniXML: Using SelectNode()?
I've got the following XML snippet as part of a larger XML file that I'm processing using the latest OmniXML snapshot:
<OrderRequestHeader>
<!-- snipped XML bits here -->
<ShipTo> ...