[U2] COMMON Size MisMatch

2012-04-12 Thread Bill Brutzman
... in subroutine named XYZ.R1. While I would like to pass parameters back-and-forth invoking bona fide external subroutines using commands such as... CALL *MY.SUB.R2(param1, param2, errorString) ...I have a few big old legacy programs with nasty COMMON tentacles. How can I make these pesky

Re: [U2] COMMON Size MisMatch

2012-04-12 Thread Bill Brutzman
Eating my own dog food... I cranked CLEARCOMMON into the LOGTO SandBox and LOGTO LIVE paragraph commands. --Bill From: u2-users-bounces at listserver.u2ug.org [mailto:u2-users-bounces at listserver.u2ug.org] On Behalf Of Don_Bausili at hcsc.net Sent: Thursday, July 16, 2009 10:17 AM To:

Re: [U2] COMMON Size MisMatch

2012-04-12 Thread Wjhonson
If you *do* use CLEARCOMMON you have to be alert to gremlins as well. LOGTO is not expecting to have to reinitialize the system and so probably doesn't. You need to review what the Login process is doing as well. You may end up wiping out control information such as the user's port, name, login

Re: [U2] COMMON Size MisMatch

2012-04-12 Thread Perry Taylor
Do you need to use LOGTO.ABORT perhaps instead of LOGTO? -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson Sent: Thursday, April 12, 2012 1:08 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] COMMON Size

Re: [U2] COMMON Size MisMatch

2012-04-12 Thread Wjhonson
That doesn't help in the situation I described, where you really want just *part* of your environment variables retained, and part cleared. Like I said simple sites, don't have this problem, but some sites have this kind of complexity, and those have or should have by now, seperated their

Re: [U2] COMMON Size MisMatch

2012-04-12 Thread Bill Brutzman
I presume that the following is workable... Comments are welcome. To LogTo the SandBox it is now just... ED VOC LLS 0001: PA 0002: CLEARCOMMON 0003: LOGTO SANDBOX 0004: WHO ED VOC LOGIN 0001: PA 0003: PTERM -ECHO DELAY 0005: BREAK ON 0007: CLEARCOMMON 0009: HK.RESET.PRINTER 0011: RUN MT.BP

[U2] Can I automate Wintegrate BridgeCopy?

2012-04-12 Thread Beverly Wilson
Hi Folks, I've got several files I need to transfer between our live and test servers. Ideally, I would write a Unibasic program to take the list of filenames and feed them into the RunBridgeCopy command. However, I've been unable to determine how to do it, if it is even possible. I found

Re: [U2] Can I automate Wintegrate BridgeCopy?

2012-04-12 Thread Richard A. Wilson
I'm not sure what operating system you are using but it might be simpler to just use the OS copy function if the two servers are connected. Rich Beverly Wilson wrote: Hi Folks, I've got several files I need to transfer between our live and test servers. Ideally, I would write a Unibasic

Re: [U2] COMMON Size MisMatch

2012-04-12 Thread Wjhonson
Look inside those routines, and determine that they are agnostic about you coming from LOGIN vs LOGTO Perhaps I'm the sole person in history to have coded things that are wise about the distinction -Original Message- From: Bill Brutzman bi...@hkmetalcraft.com To: U2 Users List

Re: [U2] COMMON Size MisMatch

2012-04-12 Thread Bill Brutzman
Will: Your commentary on this matter is very much appreciated. As long as this new fix works... I expect to defer further investigation. --Bill -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson Sent:

[U2] UD - Export Telnet Registry Users (Win 2K3) and Import to Windows 2008 R2

2012-04-12 Thread Bill Haskett
On Windows 2K3 Server, UniData keeps telnet users as (a) registry entry(s) in: HKLM\SOFTWARE\IBM\UniData\7.1\UDTelnetD\users I can export this node to a .reg file on the desktop. I'd like to know how to import it into a Win 2K8 R2 machine; which goes into a different registry node:

Re: [U2] UD - Export Telnet Registry Users (Win 2K3) and Import to Windows 2008 R2

2012-04-12 Thread Colin Alfke
I think there might be a technote on how to do this. I'm pretty sure Rocket has one and MS may as well... hth Colin -Original Message- From: Bill Haskett Sent: April 12, 2012 3:30 PM To: U2 Mail List Subject: [U2] UD - Export Telnet Registry Users (Win 2K3) and Import to Windows 2008 R2

Re: [U2] COMMON Size MisMatch

2012-04-12 Thread Tony Gravagno
From: Wjhonson Look inside those routines, and determine that they are agnostic about you coming from LOGIN vs LOGTO Perhaps I'm the sole person in history to have coded things that are wise about the distinction (Not following this thread, sorry if I'm being redundant here) Will, there

Re: [U2] COMMON Size MisMatch

2012-04-12 Thread Wjhonson
I was pointing out Tony, that some systems programmers like myself, have written BASIC code which acts differently if it sense you are doing a Login, versus a Logto. So the quick solution of simply doing a ClearCommon may not be what's wanted in this case (the OP's original case). I was

Re: [U2] COMMON Size MisMatch

2012-04-12 Thread David A. Green
While this topic is on the table, can we request some kind of COMMON flag or command that would tell the DBM to clear commons on a LOGTO? David A. Green (480) 813-1725 DAG Consulting -Original Message- From: u2-users-boun...@listserver.u2ug.org

Re: [U2] COMMON Size MisMatch

2012-04-12 Thread Wjhonson
You don't really want to clear all common variables all the time. Some common variables are actually universal. Take for example that you store in common the say full name of the user who is logged in, and their extension. That doesn't change on a logto. Some people use things like that in

Re: [U2] COMMON Size MisMatch

2012-04-12 Thread Wjhonson
Okay that was a bad example. But I think you get my general drift. There are some common variables that are truly universal and should persist. -Original Message- From: Wjhonson wjhon...@aol.com To: u2-users u2-users@listserver.u2ug.org Sent: Thu, Apr 12, 2012 4:49 pm Subject: Re: