RE: [U2] Universe 10.1 and WebSphere MQ Integration.

2004-08-23 Thread Bob Witney
We are in the process of integrating a Websphere application with our MV Database. We are using XML to structure the messages mostly because we intend to open up the MV Database to more thirds party applications and needed a standardised approach. It is working well and everyone understands the

[U2] Mark Shannon/Australia/IBM is out of the office.

2004-08-23 Thread Mark Shannon
I will be out of the office starting 23/08/2004 and will not return until 26/08/2004. Please send case updates to [EMAIL PROTECTED] --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] Problem using secure sockets

2004-08-23 Thread Adrian Matthews
Have you gone through SSL setup in UniAdmin? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jamie Wilbraham Sent: 23 August 2004 05:03 To: [EMAIL PROTECTED] Subject: [U2] Problem using secure sockets We are attempting to use the built in SSL connectivity

[U2] Solaris sessions looping

2004-08-23 Thread Brian Leach
All, I have a problem with a Solaris Uv installation - has anyone seen this behavious before? UniVerse 10.1.0 I have a number of processes, all of which are sitting at the same BASIC INPUT prompt (part of a menu system). For some reason, several of these are contending over the CPU and pushing

RE: [U2] unsubscribe u2-users

2004-08-23 Thread Glenn Herbert
Sorry to all for my public posting to un-subbing from here. I was taking a week of vacation in Maine to watch eagles and loons and didn't want to have a backlog of messages when I returned. Apparently, I wasn't paying attention to how I was unsubbing (did it wrong), so I still got all the me

RE: [U2] [UD] Sorting

2004-08-23 Thread Peter Olson
in ref to 'Clarify please?' Say our record contains the rates of a widget ( attr 2 ) stored with and associated effective dates ( attr 1 ) 0001= 12345}12367}12390}12480}12590 0002= A}B}C}D}E we want to know the rate on 12380 ( 6/10/02 ) stored in ascending order, the locat

[U2] Deb Perry is visiting customers Monday through Friday, Aug 23-27. Will have email access in evening. Voice mail access twice daily.

2004-08-23 Thread Deborah A Perry
I will be out of the office starting 08/23/2004 and will not return until 08/30/2004. General questions, contact Sue Van Aalst at 913.599.8801 For sales support, contact Louis Tur at 813.356.3615 Additional Contacts: * Technical U2 Product Support - visitm www.ibm.com/software/data/u2/support/u

[U2] [ud] UniObjects Dynamic Array Type Mismatch only in .exe

2004-08-23 Thread Burwell, Edward
Please give me your advice. For example: - Dim iNumber as Integer Dim dArray As UniDynArray Set dArray = New UniDynArray 10: dArray.Value(1,1) = "Some String" 40: dArray.Value(2,1) = 50 70: dArray.Value(2,1) = dArray.Val

RE: [U2] [UD] Sorting

2004-08-23 Thread Allen E. Elwood \(CA\)
Ahh, that makes more sense. Whenever I do a locate for something that exists or not, I use the form of LOCATETHEN *Date found get current rate data END ELSE *Date not found, get previous date's rate data - 1 END Commenting the two cases just so that it makes sense to not onl

RE: [U2] [ud] UniObjects Dynamic Array Type Mismatch only in .exe

2004-08-23 Thread Adrian Matthews
Have you tried a CInt around the dArray.Value(2,1). I'm guessing that the dynamic array object stores everything as strings or variants. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Burwell, Edward Sent: 23 August 2004 17:18 To: '[EMAIL PROTECTED]' Subj

RE: [U2] [ud] UniObjects Dynamic Array Type Mismatch only in .exe

2004-08-23 Thread Burwell, Edward
The issue is why does it work fine in design mode and blow up when it's an executable? It looks like the + sign is acting like a plus sign in design mode, but acting like an ampersand (& string-concatenation) when run as an .exe. -Original Message- From: Adrian Matthews [mailto:[EMAIL P

Re: [U2] [ud] UniObjects Dynamic Array Type Mismatch only in .exe

2004-08-23 Thread Ian Renfrew
I've gotten into the habit of always specifying the StringValue or TextValue property with each statement. The UniObjects document states that the StringValue property is the default property, but I've encountered this issue too many times too feel comfortable not specifying the property. 10: dA

[U2] UNIDATA - SAVING UNIQUE and LIST.ALGEBRA

2004-08-23 Thread Philippe Parent
Hi all, Not a regular here but I was hoping someone could enlighten me with this interesting 'feature' of UNIDATA... If I issue a select statement using saving unique on a mv field of pointers, then edit the SAVEDLISTS file to check the IDs, I see something like this... SELECT PERSON.ST 3152749

Re: [U2] UNIDATA - SAVING UNIQUE and LIST.ALGEBRA

2004-08-23 Thread Glenn Herbert
Check out the documentation for READNEXT its the same "feature" in universe... least it looks it to me. At 03:26 PM 8/23/2004, you wrote: Hi all, Not a regular here but I was hoping someone could enlighten me with this interesting 'feature' of UNIDATA... If I issue a select statement using

RE: [U2] [ud] UniObjects Dynamic Array Type Mismatch only in .exe

2004-08-23 Thread Doyen Klein
Dynamic assignment of array variables may be the issue. Try adding a line so it reads like this. 10: dArray.Value(1,1) = "Some String" 40: dArray.Value(2,1) = 50 68: temp = dArray.Value(2,1) 70: dArray.Value(2,1) = temp + 25 * 70: dArray.Value(2,1) = dArray.Value(2,1) + 25 90: iNumber

Re: [U2] UNIDATA - SAVING UNIQUE and LIST.ALGEBRA

2004-08-23 Thread Don Verhagen
Is PST.ROOM.ASSIGNMENTS dict item defined as MV (Multivalue) or SV (Single Valued) item? I would expect this if it was defined as SV (Single Valued) but really MV in it. -- Donald Verhagen Application Development Manager [EMAIL PROTECTED] Tandem Staffing Solutions, Inc. 1690 S Congres

[U2] DIR Function

2004-08-23 Thread Al DeWitt
Awhile back I requested information about finding the Date Modified of a W2K UniData file. Folks responded to use the DIR command. It worked great except it won't work for files in the _HOLD_ folder. I'm thinking that the reason this is the case is because UniData sees the files in _HOLD_ as rec

RE: [U2] DIR Function

2004-08-23 Thread Wendy Smoak
Al DeWitt > Awhile back I requested information about finding the Date > Modified of a W2K > UniData file. Folks responded to use the DIR command. It > worked great > except it won't work for files in the _HOLD_ folder. I'm > thinking that the > reason this is the case is because UniData sees

RE: [U2] [ud] UniObjects Dynamic Array Type Mismatch only in .exe

2004-08-23 Thread Jef Lee
You may be experiencing a problem we had with VB6 in the executable. Try setting your project compilation to P-code. It makes a difference to the way the values are assigned to the dynamic arrays. Jef... IT Vision Level 3 Kirin Centre, 15 Ogilvie Road, APPLECROSS, WA 6153 Tel: (08) 9315 7000 Fax