[U2] UV telnet disconnects over WAN

2007-06-06 Thread Gabriel Green
Ever since we switched to a new network (but before as well), we've experienced lots of unexpected disconnects--people in the middle of transactions or actively doing things suddenly becoming disconnected, often leaving the transaction they were in locked which I then must clear manually. The new

Re: [U2] UV telnet disconnects over WAN

2007-06-06 Thread Martin Phillips
I am going to take a wild guess that you are in the US and hence my UK experiences are probably worthless. For a long time, we have had a 512k ADSL connection because it was all that was available at our location. Ten days ago we upgraded to an 8M connection. It has been a disaster and is

RE: [U2] UV telnet disconnects over WAN

2007-06-06 Thread Steve Ferries
The new network is a DSL-based MPLS product We use DSL at our Montreal office but over LAN Extension which is also a Bell network but no guaranteed service level. We run about 120 telnet connections, and we do not have any issues. Ping times vary from 20ms to 800ms. We had some issues early on,

RE: [U2] UV telnet disconnects over WAN

2007-06-06 Thread Anthony Youngman
and everything goes the Chinese-whispers route via your ISP ... Cheers, Wol -Original Message- From: Martin Phillips [mailto:[EMAIL PROTECTED] Sent: 06 June 2007 15:36 To: u2-users@listserver.u2ug.org Subject: Re: [U2] UV telnet disconnects over WAN I am going to take a wild guess that you

RE: [U2][UV]telnet

2004-11-03 Thread Adrian Matthews
Interesting attitude. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stu Glancy Sent: 02 November 2004 18:04 To: [EMAIL PROTECTED] Subject: Re: [U2][UV]telnet Au contrair. Tom Firl was able to give me exactly what I needed. I was able to build

RE: [U2][UV]telnet

2004-11-03 Thread Adrian Matthews
of people wanted more detail. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stu Glancy Sent: 02 November 2004 18:04 To: [EMAIL PROTECTED] Subject: Re: [U2][UV]telnet Au contrair. Tom Firl was able to give me exactly what I needed. I was able to build

Re: [U2][UV]telnet

2004-11-03 Thread Stu Glancy
he's doing this or maybe he's doing that so obviously a lot of people wanted more detail. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stu Glancy Sent: 02 November 2004 18:04 To: [EMAIL PROTECTED] Subject: Re: [U2][UV]telnet Au contrair. Tom Firl was able

Re: [U2][UV]telnet

2004-11-02 Thread Stu Glancy
]telnet Bob: I think Stu is trying to run another data entry application via telnet, without the user realizing it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Bob Witney Sent: Friday, October 29, 2004 3:05 AM To: [EMAIL PROTECTED] Subject: RE: [U2][UV

RE: [U2][UV]telnet

2004-10-31 Thread David Jordan
I started a project, but have not got around to completing it. This was to use the socket API in universe BASIC to talk to a telnet service. This was to enable a UniVerse Application to interface with external applications that have a telnet interface. I got it partly working, but have not had

Re: [U2][UV]telnet

2004-10-31 Thread FFT2001
In a message dated 10/30/2004 3:50:40 PM Pacific Standard Time, [EMAIL PROTECTED] writes: You are right however, that most windows telnet clients/terminal emulators allow session startup to be scripted. If the original user will be connected via a PC, then perhaps the solution is to try and

Re: [U2][UV]telnet

2004-10-30 Thread FFT2001
In a message dated 10/28/2004 7:10:40 PM Pacific Daylight Time, [EMAIL PROTECTED] writes: Are you just trying to fire up a telnet session and get it logged in so a user can then start interacting with a system? If so, then you essentially have to write your own telnet client/terminal

RE: [U2][UV]telnet

2004-10-30 Thread Ken Wallis
[EMAIL PROTECTED] wrote [EMAIL PROTECTED] writes: Are you just trying to fire up a telnet session and get it logged in so a user can then start interacting with a system? If so, then you essentially have to write your own telnet client/terminal emulator. Not true. Accuterm for

RE: [U2][UV]telnet

2004-10-29 Thread Rex Gozar
login loginid password passwordone I don't think that you can invoke a telnet session the same way Bob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Stu Glancy Sent: 28 October 2004 19:54 To: [EMAIL PROTECTED] Subject: [U2][UV]telnet I want

[U2][UV]telnet

2004-10-28 Thread Stu Glancy
I want to create a telnet script from a program and execute it. Can it be done? If it can, what would the EXECUTE look like? What would the script look like? I'm looking for concept and a little detail. --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit

Re: [U2][UV]telnet

2004-10-28 Thread karlp
I'm not sure you've given enough information. What would the script do? What's it for? I've created scripts that use ssh rather than telnet for automated processes but never telnet. Karl quote who=Stu Glancy I want to create a telnet script from a program and execute it. Can it be done? If

RE: [U2][UV]telnet

2004-10-28 Thread Lance Jahnke
CMD='SH -c telnet myserver' EXECUTE CMD END * UniVerse -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stu Glancy Sent: Thursday, October 28, 2004 1:54 PM To: [EMAIL PROTECTED] Subject: [U2][UV]telnet I want to create a telnet script from a program

Re: [U2][UV]telnet

2004-10-28 Thread Stu Glancy
] Subject: [U2][UV]telnet I want to create a telnet script from a program and execute it. Can it be done? If it can, what would the EXECUTE look like? What would the script look like? I'm looking for concept and a little detail. --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please

Re: [U2][UV]telnet

2004-10-28 Thread Stu Glancy
What the script does is not so important just yet. How do you pass the login id and password? [EMAIL PROTECTED] wrote: I'm not sure you've given enough information. What would the script do? What's it for? I've created scripts that use ssh rather than telnet for automated processes but never

Re: [U2][UV]telnet

2004-10-28 Thread Andrew McLaughlin
Try: CMD='SH -c telnet myserver -l myuser EOF ' : char(10):' password ' : char(10): ' EOF' That should pass in the password to the prompt via the input chevron. The EOF signals where the inputs should stop... Andrew Andrew McLaughlin - Business Systems Manager - Shurflo Pump LLC -

RE: [U2][UV]telnet

2004-10-28 Thread Scott Ballinger
PROTECTED] Subject: [U2][UV]telnet I want to create a telnet script from a program and execute it. Can it be done? If it can, what would the EXECUTE look like? What would the script look like? I'm looking for concept and a little detail. --- u2-users mailing list [EMAIL PROTECTED

RE: [U2][UV]telnet

2004-10-28 Thread Alfke, Colin
Many emulators have scripting built-in. You may have to start a session that automatically runs your script. In effect, your execute statement would start the emulator which would run your script to do what you want. This doesn't really seem like a good solution. If you let the list know what you

RE: [U2][UV]telnet

2004-10-28 Thread Ken Wallis
: [U2][UV]telnet For a variety of reasons (security being a big one), many people think that automating a telnet client isn't a good idea... Karl may be fishing for more information so as to suggest an alternative solution. At any rate, the following has worked all right for simple tasks

Re: [U2][UV]telnet

2004-10-28 Thread Stu Glancy
Didn't work. I tried several times just in case I fat fingered somewhere. Andrew McLaughlin wrote: Try: CMD='SH -c telnet myserver -l myuser EOF ' : char(10):' password ' : char(10): ' EOF' That should pass in the password to the prompt via the input chevron. The EOF signals where the

RE: [U2][UV]telnet

2004-10-28 Thread David Jordan
Sent: Friday, 29 October 2004 9:17 AM To: [EMAIL PROTECTED] Subject: RE: [U2][UV]telnet Many emulators have scripting built-in. You may have to start a session that automatically runs your script. In effect, your execute statement would start the emulator which would run your script to do what you

Re: [U2][UV]telnet

2004-10-28 Thread Stu Glancy
Message- From: Stu Glancy [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 2:39 PM To: [EMAIL PROTECTED] Subject: Re: [U2][UV]telnet What the script does is not so important just yet. How do you pass the login id and password? [EMAIL PROTECTED] wrote: I'm not sure you've given

RE: [U2][UV]telnet

2004-10-28 Thread Ken Wallis
Stu Glancy wrote: This was close. I removed the exit and it sill exited. I'd like to take over manually once I get in. What do you mean by 'manually'? Are you just trying to fire up a telnet session and get it logged in so a user can then start interacting with a system? If so, then you