GDL XML Extension
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2006-05-02 09:26 AM

I'm trying to teach my GDL how to output data like dimensions and price in a XML file so i can read it with an JAVA script. My Problem i have no idea how the GDL XML syntax works!
The best for me would be to download a GDL objekt where this GDL XML Extension script is use so i can whatch how to write it!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2006-05-02 10:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2006-05-02 01:36 PM
My problem is:
1. This is my script for the channel
2. I try to write something in the XML File. Exactly this is the biggest problem i dont have any idea how the GDL syntax works! The first command
3. Close the channel
Later i like to read the data in the XML Object with the
But first its important for me to write anything in the XML Object that i know how the command works!
I hope you understand me now!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2006-05-02 02:07 PM
'w': [...] (Nach dem Befehl OPEN muss die Anweisung CreateDocument die erste ausgeführte Anweisung sein.)Will be created the file on the hd? It will be empty, but does it exist? If not, try it without the path name.
Are you familiar with the XML format? The ID will probably be the position of the data-nodes (?).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2006-05-02 02:18 PM

Why can't you read a dump text or database-file from JavaScript?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2006-05-02 02:25 PM
or
I know that the fielID is a position in the XML document but he makes a clear document and then i haven't a position to tell him.
I can send you my GDL object maybe you have a idea how to make it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2006-05-02 02:52 PM
CreateDocument ist nur zulässig, wenn die Datei im Modus "Neue Datei" oder "Überschreiben" geöffnet wurde. In diesen Modi muss diese Anweisung zuerst ausgeführt werden, um das XML-Dokument zu erstellen.Unexpected clear explanation in the manual. OPEN file and OUTPUT "CreateDocument". If it makes sense for you is not the question. It's the syntax.

The first one, I guess is right. The parameter is described as "ignored", but not as "not expected" (as i some other commands in GDL too).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2006-05-02 03:11 PM
insertpos kann folgendes sein::Yes it is right the syntax is my problem how to write the hole
AsNextSibling: Das neue Element wird nach der in fieldID angegebenen Position eingefügt
AsPrevSibling: Das neue Element wird vor der in fieldID angegebenen Position eingefügt
AsFirstChild: Das neue Element wird als erstes untergeordnetes Element des in fieldID (muss ein Elementknoten sein) angegebenen Knotens eingefügt
AsLastChild: Das neue Element wird als letztes untergeordnetes Element des in fieldID (muss ein Elementknoten sein) angegebenen Knotens eingefügt


In every command there is that word
Do you have a example for me how to write this
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2006-05-03 09:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2006-05-03 10:28 AM
Again my question: Are you familiar with the XML format? Do you have an aim of export format/structure? Can you create such an file "by hand" and post it?