Re: [U2] EasySoft ODBC-ODBC bridge

2008-05-02 Thread David Beahm
Absolutely, unreservedly. They are some sharp guys, and will steer you through the issues that the latest U2 versions introduce in BCI. We were upgrading to a new HP-UX box, and could not use the latest version of UniData because of changes IBM had made. We didn't know why BCI was being so

[U2] Good ssh service for Windows

2008-05-02 Thread Dan Goble
Does anybody know of SSH service for Windows that works well with UniVerse.Most of the ones I have tested either have bad terminal information translation, or do not have the ability to read the users' profile for destination directory. Thanks, Dan Goble Systems Administrator RATEX

RE: [U2] Press any k

2008-05-02 Thread Brutzman, Bill
We have 6-digit part numbers here. With input PN, 6... I have single-handedly saved the company millions of keystrokes per year. Also... it is not inconsistent if it is used all over the place. Q: Are we not men? A: We are the DevoTees. -Bill -Original Message- From: [EMAIL

RE: [U2] Good ssh service for Windows

2008-05-02 Thread Bill Haskett
Dan: What are you trying to do? We wanted to set up secure connectivity without using VPN to allow AccuTerm or wIntegrate to access our UD server. We have WinSSHD on one of our Windows servers to handle all sftp for our network. We can then use Tunnelier to make a client connection to this

RE: [U2] Good ssh service for Windows

2008-05-02 Thread Dan Goble
Thanks Bill, What we are trying to do is connect from a desktop to a windows server that is running UniVerse. When the user puts in their name and password it would automatically put them into the correct directory ( UniVerse Account ) and execute uv.exe so that they never hit dos. I have

RE: [U2] Good ssh service for Windows

2008-05-02 Thread Cordes, Tom (contractor)
Dan, On our government contract, we use accuterm which has ssh and a great Wyse-50 emulation. TomC -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Goble Sent: Friday, May 02, 2008 11:01 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Good ssh

RE: [U2] Good ssh service for Windows

2008-05-02 Thread Bill Haskett
Dan: This is why I use AccuTerm (or wIntegrate) instead of other terminal software. Personally, I don't want to use some other, non-MV terminal emulator. The idea is to connect from the client to the SSH server then forward communication to the U2 server. Once this is complete (via Tunnelier),

[U2] Call Unidata Subroutine via ODBC

2008-05-02 Thread Kevin King
I have a project where I need to call a Unidata subroutine via ODBC and return a string result. The ODBC connection is connecting properly (as best I can tell) and the subroutine is being called via: SqlStatement = CALL *subrName*( QueryType , QueryValue ) Set RecordSet =

RE: [U2] Good ssh service for Windows

2008-05-02 Thread Symeon Breen
So is the problem here with the windows ssh server or with a suitable client ? The op's question makes it sound like it is the server (WinSSHD) but if it is purely a matter of emulation it may well be that WinSSHD is fine and that he should use a better emulator like wintegrate. Personally I

[U2] passing file pointers?

2008-05-02 Thread Doug Chanco
Hey all, In universe 10.1 how can I verify that a file pointer passed via a subroutine param is valid? I have a subroutine that is called with several file pointers but it is possible to be called without opening a file and the subroutine would check if the file pointer is empty and if so

RE: [U2] passing file pointers?

2008-05-02 Thread David Ward
Something like this should do the trick IF ASSIGNED(F.PTR) THEN STATUS STUFF FROM F.PTR ELSE * FILE POINTER IS INVALID) END END ELSE * FILE POINTER IS NOT ASSIGNED/OPENED END -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

Re: [U2] passing file pointers?

2008-05-02 Thread Raul_Dominguez
Check out the FILEINFO function Raul - Original Message - From: Doug Chanco [EMAIL PROTECTED] Sent: 05/02/2008 04:21 PM AST To: u2-users@listserver.u2ug.org Subject: [U2] passing file pointers? Hey all, In universe 10.1 how can I verify that a file pointer passed via a subroutine