Re: [U2] Unidata XML

2006-04-26 Thread Symeon Breen
I too have spent many months on XML in U2 (Unidata). Donald has given you a good set of pointers above. The only thing I might add is that I have found getting XML into U2 using Unibasic is realy rather easy. Getting XML out using Unibasic needs a bit more thought, and unfortunatly does not always

RE: [U2] Unidata XML

2006-04-26 Thread Steve Long
Thanks for the input Authur. I believe this project is on 6.1 so I will read those manuals. Steve From: "Metherall, Arthur" <[EMAIL PROTECTED]> To: Subject: RE: [U2] Unidata XML Date: Wed, 26 Apr 2006 09:56:19 -0400 Hey Steve, Be careful what U2 version manual you

RE: [U2] Unidata XML

2006-04-26 Thread Metherall, Arthur
hings again. Good Luck. Arthur -Original Message- Date: Tue, 25 Apr 2006 08:13:02 -0700 From: "Steve Long" <[EMAIL PROTECTED]> Subject: [U2] Unidata XML Hi All - Does anyone know of a good resource for learning how the U2 XML works? Is it reliable? I have a new p

RE: [U2] Unidata XML

2006-04-25 Thread Ray Wurlod
IBM has reorganized the library. The XML paper is now at http://www-128.ibm.com/developerworks/db2/library/techarticle/dm-0601dreyfuss/index.html --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] Unidata XML

2006-04-25 Thread Steve Long
Thanks Donald! I am sure this will help me a ton. Steve From: "Donald Bridges" <[EMAIL PROTECTED]> To: "'Steve Long'" <[EMAIL PROTECTED]>, Subject: RE: [U2] Unidata XML Date: Tue, 25 Apr 2006 13:30:28 -0500 Hi Steve, Welcome aboard the XML in U2 bu

RE: [U2] Unidata XML

2006-04-25 Thread Donald Bridges
ject: [U2] Unidata XML Hi All - Does anyone know of a good resource for learning how the U2 XML works? Is it reliable? I have a new project coming up and this functionality is needed, but I haven't found anything real complete on it. Thanks, Steve --- u2-users mailing list

[U2] Unidata XML

2006-04-25 Thread Steve Long
Hi All - Does anyone know of a good resource for learning how the U2 XML works? Is it reliable? I have a new project coming up and this functionality is needed, but I haven't found anything real complete on it. Thanks, Steve --- u2-users mailing list u2-users@listserver.u2ug.org To uns

RE: [U2] Unidata XML

2006-02-07 Thread Dave Walker
t in thought is because it's unfamiliar territory." Paul Fix > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Bill Haskett > Sent: Monday, February 06, 2006 5:32 PM > To: u2-users@listserver.u2ug.org > Subject: RE: [U2] Unidata

RE: [U2] Unidata XML

2006-02-06 Thread Bill Haskett
exist on Windows servers and I was caught by it when my son was trying to track down some information for his homework. Bill > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > [EMAIL PROTECTED] > Sent: Monday, February 06, 2006

RE: [U2] Unidata XML

2006-02-06 Thread colin.alfke
There are some notes in the latest readme for the HTTP functions which explains the proper casing in the different versions. My guess is that the XML functions have the same problem - different cases in different versions. The last couple of examples I've seen from IBM using these have all come wi

Re: [U2] Unidata XML

2006-02-06 Thread Jeffrey Butera
On Monday 06 February 2006 10:13, Don Verhagen wrote: > I found this out the hard way also. I believe the documentation is wrong > (for Unidata). Yes Don - the more we read, the more inconsistencies and typos we find. -- Jeff Butera, Ph.D. Administrative Systems Hampshire College [EMAIL PROTECTED

Re: [U2] Unidata XML

2006-02-06 Thread Don Verhagen
I found this out the hard way also. I believe the documentation is wrong (for Unidata). Thanks, -- * Please NOTE NEW ADDRESS AND TELELPHONE Numbers * -- Donald Verhagen Application Development Manager [EMAIL PROTECTED] Tandem Staffing Solutions, Inc. 5901 Broken Sound Parkway NW, Suite 450

RE: [U2] Unidata XML

2006-02-05 Thread jbutera
> Have you put the INCLUDE file related to xml at the beginning of the > program. Yes. Jeff Butera, Ph.D. Administrative Systems Hampshire College [EMAIL PROTECTED] 413-559-5556 "Hindsight alone is not wisdom." George W. Bush --- u2-users mailing list u2-users@listserver

Re: [U2] Unidata XML

2006-02-05 Thread jbutera
I originally wrote about a compilation error with: > >X.STATUS = PrepareXML(X.XML.INPUT.FILE, X.XML.HANDLE) >X.STATUS = OpenXMLData(X.XML.HANDLE, X.XML.EXT.RULE.FILE, X.XML.DATA.HANDLE) On Sun, 5 Feb 2006, Allen Egerton replied: > > The compiler is seeing what you're defining as functions as matri

RE: [U2] Unidata XML

2006-02-05 Thread David Jordan
Have you put the INCLUDE file related to xml at the beginning of the program. Regards David Jordan Managing Consultant [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] Unidata XML

2006-02-05 Thread Allen Egerton
On Sat, 4 Feb 2006 23:02:19 -0500 (EST), you wrote: >Can anyone shed light on why this simple example won't compile? It dies >on the OpenXMLData line. > >X.XML.INPUT.FILE = '_XML_/test.xml' >X.XML.EXT.RULE.FILE = '_XML_/test.ext' >X.STATUS = PrepareXML(X.XML.INPUT.FILE, X.XML.HANDLE) >X.STATUS =

RE: [U2] Unidata XML

2006-02-05 Thread jbutera
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > [EMAIL PROTECTED] > Sent: Sunday, 5 February 2006 5:46 p.m. > To: u2-users@listserver.u2ug.org > Subject: [U2] Unidata XML > > Can anyone shed light on why this simple exampl

RE: [U2] Unidata XML

2006-02-05 Thread phil walker
t;:X.REC END REPEAT X.STATUS = CloseXMLData(X.XML.DATA.HANDLE) X.STATUS = ReleaseXML(X.XML.HANDLE) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Sunday, 5 February 2006 5:46 p.m. To: u2-users@listserver.u2ug.org Subject: [U2

[U2] Unidata XML

2006-02-04 Thread jbutera
Can anyone shed light on why this simple example won't compile? It dies on the OpenXMLData line. X.XML.INPUT.FILE = '_XML_/test.xml' X.XML.EXT.RULE.FILE = '_XML_/test.ext' X.STATUS = PrepareXML(X.XML.INPUT.FILE, X.XML.HANDLE) X.STATUS = OpenXMLData(X.XML.HANDLE, X.XML.EXT.RULE.FILE, X.XML.DATA.HA

RE: [U2] Unidata/XML Newbie

2006-02-03 Thread Victor St Clair
n.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, February 02, 2006 8:03 PM To: u2-users@listserver.u2ug.org Subject:[U2] Unidata/XML Newbie I have a need to export a Unidata (6.1.4) file as XML and lat

[U2] Unidata/XML Newbie

2006-02-02 Thread jbutera
I have a need to export a Unidata (6.1.4) file as XML and later populate data in the file from an XML document. For the sake of simplicity, let's assume that every field is single valued at the moment so the XML document is quite simple - no nested fields, etc. The only wrinkle in this is that th