Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
1k views

How to make TXMLDocument (with the MSXML Implementation) always include the encoding attribute?

I have legacy code (I didn't write it) that always included the encoding attribute, but recompiling it to D2010, TXMLDocument doesn't include the encoding anymore. Because the XML data have accented ...
2
votes
3answers
412 views

Help to create gpx file with Delphi 7

I'm Delphi newbie trying to create a GPX file like this, <?xml version="1.0" encoding="UTF-8" ?> - <gpx xmlns="http://www..." version="1.1" creator="EasyGPS 4.18" ...
1
vote
2answers
140 views

Delphi - TXMLDocument created at run-time generates AV, with component on the form is working

I'm creating an instance of TXMLDocument at runtime, to load and parse a XML file. You can check the code below: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, ...
1
vote
2answers
577 views

How to construct a Soap Envelope manually using TXMLDocument (Delphi 2006)

I've been having this problem for a long time now and I cannot solve it my self. I've tried searching Google, Bing and stackOverflow too? No luck... I'm trying to construct a soap header manually ...
1
vote
1answer
635 views

Reading and writing into the XML file

I need to work on XML files using Delphi. I want to present the xml data in a DBGrid to the user and save the changes done by user in the XML file. For example in the below xml (which was presented ...
1
vote
2answers
1k views

Using TXMLDocument to serialize form settings to XML and database

I have an interface: type IXMLSerializable = interface function SaveToXML : DOMString; function SaveToXMLDocument : IXMLDocument; procedure LoadFromXML(AXML : DOMString); end; It is used to ...
1
vote
2answers
2k views

new TXMLDocument in Borland C++ Builder

Is it possible for me to create and destroy a TXMLDocument by myself in Borland C++ Builder? I've tried but borland keeps telling me that TXMLDocument is (and must be) an IDE managed component... ...
0
votes
2answers
868 views

How do I add a namespace prefix to each node using TXMLDocument

I used the XML Binding Wizard to create a descendant of TXMLDocument. The files generated by this class would declare the namespace in the root node and create just plain, unadorned nodes for the rest ...
0
votes
2answers
5k views

Delphi - XML - childnodes - getting attributes

I am trying to get the correct data from a twitter atom/xml feed. I have the twitter data in a txmldocument and am trying to get some specific information from it. Here is a truncated example of the ...