[U2] Parsing XML

2005-10-04 Thread Jeffrey Butera
I know there are native tools in Unidata to output XML datasets. However, can anyone shed light on tools (custom or native) to read/parse XML data? -- Jeff Butera, Ph.D. Administrative Systems Hampshire College [EMAIL PROTECTED] 413-559-5556 --- u2-users mailing list

RE: [U2] Parsing XML

2005-10-04 Thread Glen Batchelor
--- -Original Message- From: [EMAIL PROTECTED] [mailto:owner-u2- [EMAIL PROTECTED] On Behalf Of Jeffrey Butera Sent: Tuesday, October 04, 2005 9:52 AM To: u2-users@listserver.u2ug.org Subject: [U2] Parsing XML I know there are native tools in Unidata to output XML datasets

RE: [U2] Parsing XML

2005-10-04 Thread Metherall, Arthur
. -Arthur - - - - - - - - - - Arthur Metherall Courier Corporation Sr. Programmer/Analyst - - - - - - - - - - -Original Message- -- Date: Tue, 4 Oct 2005 09:52:09 -0400 From: Jeffrey Butera [EMAIL PROTECTED] Subject: [U2] Parsing XML I know there are native

RE: [U2] Parsing XML

2005-10-04 Thread Tony Gravagno
It's very easy to create/parse XML with .NET technologies. If you have a schema then you can read an XML document, convert it into an ADO.NET dataset in one statement, then you can push it into U2 very easily after that with mv.NET or PDP.NET. UO.NET would take more work because it does not have

RE: [U2] Parsing XML

2005-10-04 Thread Stuart . Boydell
Tony, I'm interested, why not just use xslt to convert the XML directly into a U2 string and then pass in the data using uodotnet subroutines. Is there some advantage in using an extra step of converting to ADO? Stuart -Original Message- It's very easy to

RE: [U2] Parsing XML

2005-10-04 Thread Tony Gravagno
Stuart wrote: Tony, I'm interested, why not just use xslt to convert the XML directly into a U2 string and then pass in the data using uodotnet subroutines. Is there some advantage in using an extra step of converting to ADO? If you know xslt, xpath, xquery, etc, knock your

[U2] parsing XML

2005-01-24 Thread Chuck Mongiovi
What's the easiest way to: 1) parse an XML dynamic array (flat text) document into it's individual key/value groups? 2) convert a dynamic array into an XML document? ... besides the obvious brute-force method of (1) parsing manually, and (2) using a FOR/NEXT loop to build the XML document ...