Re: [U2] UO.Net unable to login

2014-01-27 Thread Arie van Dam
With the SBXA 6.1.2 we also had a similar problem a while ago. We discovered that a return DNS needed in the new UODOTNET may also be the culprit. The UODOTNET.dll should also fit in with the version of the unirpc and SBXA middleware you are using. My 2 cents, Arie van Dam

Re: [U2] UO.Net unable to login

2014-01-27 Thread Symeon Breen
Can you telnet to the host system on port 31438 from the same client ? Is the client local to the host network, or is there some NAT device in between ? -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Martin

[U2] [UV] Programmatic Verification of Globally Cataloged Subroutine

2014-01-27 Thread Perry Taylor
Does anyone know of a good method in UniVerse BASIC to be able to verify if a subroutine is globally cataloged? Thanks. Perry Taylor Senior MV Architect Office (877) 494-7633 ext. 4392 Direct (502) 779-4392 ZirMed 888 West Market Street, Suite 400 Louisville, KY 40202

Re: [U2] [UV] Programmatic Verification of Globally Cataloged Subroutine

2014-01-27 Thread Allen Egerton
Perhaps VCATALOG (Allen - Sent from my paperweight) On Jan 27, 2014, at 12:06 PM, Perry Taylor perry.tay...@zirmed.com wrote: Does anyone know of a good method in UniVerse BASIC to be able to verify if a subroutine is globally cataloged? Thanks. Perry Taylor Senior MV Architect

Re: [U2] [UV] Programmatic Verification of Globally Cataloged Subroutine

2014-01-27 Thread Wjhonson
You read the GLOBAL.CATDIR file looking for that subroutine name, typically, at least at my site, they are prepended with an asterisk *GET.YEAR -Original Message- From: Perry Taylor perry.tay...@zirmed.com To: U2-Users List u2-users@listserver.u2ug.org Sent: Mon, Jan 27, 2014 9:06

Re: [U2] [UV] Programmatic Verification of Globally Cataloged Subroutine

2014-01-27 Thread Wjhonson
Could you give an example of this usage? Trying to use the HELP, I'm just getting strange errors when I try to follow HELP and use it on known globally catalogued routines -Original Message- From: Allen Egerton aeger...@pobox.com To: U2 Users List u2-users@listserver.u2ug.org Cc:

Re: [U2] JET no longer available on Universe

2014-01-27 Thread Daniel McGrath
Hi Will, I said Rocket has Jet, not necessarily that it is available. For people who already have the product and new more 'users', that is someone. For outright new, we may need to legally need to rebrand the product (hence build, QA, etc) to remove previous company names. Obviously, there

Re: [U2] JET no longer available on Universe

2014-01-27 Thread Wjhonson
But we *did* have JET. In an upgrade, it was removed, I suspect simply because the person who ask for the upgrade disks didn't specifically ask for JET to be included. Can we get it back? You're suggesting here that you can ship it, included in upgrades, to people who already *have* it.

Re: [U2] [UV] Programmatic Verification of Globally Cataloged Subroutine

2014-01-27 Thread Wols Lists
On 27/01/14 17:48, Wjhonson wrote: You read the GLOBAL.CATDIR file looking for that subroutine name, typically, at least at my site, they are prepended with an asterisk *GET.YEAR And, iirc, you can call a locally catalog'd routine globally by calling it as *ACCOUNT*SUBNAME. This is a

Re: [U2] [UV] Programmatic Verification of Globally Cataloged Subroutine

2014-01-27 Thread Hona, David
There is the !EXIST subroutine. It's a legacy Prime INFO subroutine - created for legacy code that need it. The source code is in UV APP.PROGS and just reads GLOBAL.CATDIR and also sets STATUS() with a return code too. CATALOGED.NAME = '*MYGLOBALSUB' call !EXIST(CATALOGED.NAME, RC) crt