[U2] EN4 documentation

2008-02-26 Thread Dennis Bartlett
Hi The company I've just joined uses EN4 and DEFINE. I know I've seen these before, but I simply cannot remember how EN4 fits together... and I have dropped into a place that believes that every programming task should take 30 minutes or less. There is no-one to ask, and no manuals. Only the exi

RE: [U2] Type ahead buffer overflow

2008-02-26 Thread Dennis Bartlett
Agreed. You may find tho', that the extra call out to TRIM may cause the input loop to be too slow to collect all the incoming data. Better to get the data, then trim as you process it... Your loop doesn't cater for 80 col lines (or whatever length) and therefore runs the risk of getting to the sa

Re: [U2][UV] ANALYZE.FILE dilemma

2008-02-26 Thread Ray Wurlod
I created a dynamic hashed file. It contains only keys, made up of two integers (with @TM between). I then populated this file with lots of keys. I expected ANALYZE.FILE to show key space and unused space, but it's showing lots of space for "data", even though there is none. Is what's being coun

Re: [U2] - Websphere MQ

2008-02-26 Thread Craig Bennett
BTW...Craig: Does the C.R.O.S.S. MQ Interface product (UniVerse edition) still exist? Or is no longer available? I think so -- anyone interested in a GCI interface to the MQI could try asking [EMAIL PROTECTED] Craig --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe

RE: [U2] - Websphere MQ

2008-02-26 Thread phil walker
I don't think the AMI support is there on Redhat which is the platform he is look at I believe? At least it didn't used to be. Cheers, Phil. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Hona, David S Sent: Wednesday, 27 February 2008 3:00 p.m. To: u2

RE: [U2] - Websphere MQ

2008-02-26 Thread Hona, David S
If you have never used MQSeries before, it is a steep learning curve. Even if you have, as Craig pointed out...the AMI libraries used by IBM to interface UV to MQ only seem to add to the learning curve and frustration at times (if you're learning and developing at the same time). Once you get it u

RE: [U2] - Websphere MQ [AD]

2008-02-26 Thread Janet Bond
Hello Marc, If you would like I can setup a conference call with one of our developers. We have implemented our FusionWare Integration Server with UniVerse to move data bi-directional. At this point we have connected with SQL Server, Oracle and Websphere MQ for our UniVerse Customer. Any other

Re: [U2] - Websphere MQ

2008-02-26 Thread Craig Bennett
The current interface works but is frustrating as the environment setup is difficult to track down. The AMI (which are the libraries U2 use to access MQ) is now deprecated so AMI configuration info is hard to find. Also there is no support for MQ transactions in the BASIC API -- so o

Re: [SPAM] [U2] - Websphere MQ

2008-02-26 Thread Dave Taylor
Dave Taylor Sysmark Information Systems, Inc. Authorized IBM Business Partner 49 Aspen Way Rolling Hills Estates, CA 90274 (O) 800-SYSMARK (800-797-6275) (F) 310-377-3550 (C) 310-561-5200 www.sysmarkinfo.com - Original Message - From: "Caminiti, Marc" <[EMAIL PROTECTED]> To: Sent: Tuesd

RE: [U2] Color Laser PCL

2008-02-26 Thread Jerry Banker
Have you also checked that the driver is in raw mode? Jerry Banker > -Original Message- > From: Bob Rasmussen [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 26, 2008 12:44 PM > To: u2-users@listserver.u2ug.org > Subject: Re: [U2] Color Laser PCL > > On Sat, 23 Feb 2008, [EMAIL PROTE

[U2] - Websphere MQ

2008-02-26 Thread Caminiti, Marc
Not sure if this is the right place to ask, but I was wondering if anyone had any feelings/thoughts on Websphere MQ and integration with uniVerse. We are currently running uniVerse 10.0.9 on Red Hat Linux If you wish, you can respond off line too. Thanks in advance Marc Marc Caminiti IS Manage

Re: [U2] Color Laser PCL

2008-02-26 Thread Bob Rasmussen
On Sat, 23 Feb 2008, [EMAIL PROTECTED] wrote: > >I have posted this in CDP once and got the enclosed answer. > >According to the manual that was quoted, it should be working, but > >it is not. I am using a Dell 3110cn Color laser printer. We are > >printing from Universe with a Windows 2003 ser

RE: [U2] Type ahead buffer overflow

2008-02-26 Thread Tim Stokes
That is very similar to the one I use. Here is mine. REC = '' LOOP INPUT XXX UNTIL XXX = "*NED OF TEXT*" DO REC<-1> = XXX REPEAT If you want to lose blank lines you change REC<-1> = XXX to IF TRIM(XXX) # "" THEN REC<-1> = XXX -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL P

RE: [U2] Type ahead buffer overflow

2008-02-26 Thread Thomas Derwin
Agreed, a UD DIR-type file (called type 19 in UV) in the middle might solve the issue nicely. Instead of an input statement, the UniBasic program would simply read the record from the DIR-type file. The heavy lifting involves passing the data into the DIR-type file. Several possibilities come to m

RE: [U2] Type ahead buffer overflow

2008-02-26 Thread Dennis Bartlett
>> A! OK, so with your 500 lines of data, is it a single INPUT >> statement for all 500 lines? Or a loop over INPUT? AND >> 500 lines of 80 COL wide If so, then the code you're looking for is LOOP INPUT LN, 80 IF TRIM(LN) = '' THEN EXIT GOSUB PROCESS.LINE REPEAT That way the INPUT

RE: [U2] Type ahead buffer overflow

2008-02-26 Thread Ross Ferris
A! OK, so with your 500 lines of data, is it a single INPUT statement for all 500 lines? Or a loop over INPUT? If the former I believe you may find that you are hitting the limit of the INPUT statement --> I know we have bumped into this on UV Ross Ferris Stamina Software Visage > Better by D

RE: [U2] Type ahead buffer overflow

2008-02-26 Thread Hona, David S
I'd have to agree. If it's important, you should not be using unreliable means to input data. There are so many points of failure, worse than losing data it could be corrupting data. I wouldn't want to be the one to explain that to external auditors or angry workers whose payroll got "glitched"

RE: [U2] Type ahead buffer overflow

2008-02-26 Thread Dennis Bartlett
Can't you simply paste into a text file in a type 1 directory, and then read and process the input? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Dodds Sent: 25 February 2008 07:41 PM To: u2-users@listserver.u2ug.org Subject: [U2] Type ahead buffer o