From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,4186ab0bee49bce9 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-03-26 20:53:13 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!newsfeed.berkeley.edu!ucberkeley!hammer.uoregon.edu!arclight.uoregon.edu!wn13feed!wn12feed!wn14feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!rwcrnsc52.ops.asp.att.net.POSTED!not-for-mail From: "Steve" Newsgroups: comp.lang.ada References: <3e81cd83$1_1@mk-nntp-1.news.uk.worldonline.com> Subject: Re: XML ada X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Message-ID: NNTP-Posting-Host: 12.211.13.75 X-Complaints-To: abuse@attbi.com X-Trace: rwcrnsc52.ops.asp.att.net 1048740786 12.211.13.75 (Thu, 27 Mar 2003 04:53:06 GMT) NNTP-Posting-Date: Thu, 27 Mar 2003 04:53:06 GMT Organization: AT&T Broadband Date: Thu, 27 Mar 2003 04:53:06 GMT Xref: archiver1.google.com comp.lang.ada:35749 Date: 2003-03-27T04:53:06+00:00 List-Id: I can't seem to find the sources right now (I'll look again tomorrow), but I have been through this exercise. If I remember right, you can get at this information through the DOM.Core.Nodes package. Have a look at "Node_Name" and "Node_Value". If I can find my sources I wrote code at one point to dump the contents of all of the XML elements. Steve (The Duck) "Andy Ingram" wrote in message news:3e81cd83$1_1@mk-nntp-1.news.uk.worldonline.com... > I have just started using XML/Ada. > I have been playing around and have managed to get to grips with nodes and > node lists to get a 'list' of elements with the same tag. However i am now > trying to get the data within these tags. I am attempting this by using > DOM.Core.Character_Datas.Data and passing it a node (obtained from my > nodelist). This returns a DOM String. How do i then use this DOM String as > a 'normal' string? I.e how do i output this to the display or store it in a > string for later use? > EG. below, i want to output all the values of 'name', ie.. > *** > bob > bill > *** > > > bob > ... > ... > > > bill > ... > ... > > > > > Thanks for any help > Darren > >