dbTalk Databases Forums  

Process KeepAlive for any Pick variant?

comp.databases.pick comp.databases.pick


Discuss Process KeepAlive for any Pick variant? in the comp.databases.pick forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Ed Sheehan
 
Posts: n/a

Default Process KeepAlive for any Pick variant? - 11-15-2006 , 03:50 PM






I've been looking for a freeware app which will just poke some character
into a process (say, Accuterm or wIntegrate) every n seconds/minutes. We've
got a rather short logoff timeout at a client, and I don't have access to
the setting.

Has anyone seen such an animal? I've found mostly IE/Internet keep alive
apps, but no freeware to just send a character into a process I can name.

I know I could run a program inside the Pick TE, but that's a pain compared
to a constantly running desktop program with an activity timer...

Thanks,

Ed



Reply With Quote
  #2  
Old   
Ross Ferris
 
Posts: n/a

Default Re: Process KeepAlive for any Pick variant? - 11-15-2006 , 05:08 PM






ED,

Is this a setting from the Operating System (Linux?) or Database (D3?)
- if the latter, then I don't think keepalives will do the trick, as
the input has to be "seen" by the application.

If from the OS, then Accuterm DOES have a "Send Keepalives" checkbox -
click the "advanced" button in the telnet box on the "connection" tab
(assuming you have a reasonably recent version)


HTH

Ross Ferris
Stamina Software
Visage > Better by Design!


Ed Sheehan wrote:
Quote:
I've been looking for a freeware app which will just poke some character
into a process (say, Accuterm or wIntegrate) every n seconds/minutes. We've
got a rather short logoff timeout at a client, and I don't have access to
the setting.

Has anyone seen such an animal? I've found mostly IE/Internet keep alive
apps, but no freeware to just send a character into a process I can name.

I know I could run a program inside the Pick TE, but that's a pain compared
to a constantly running desktop program with an activity timer...

Thanks,

Ed


Reply With Quote
  #3  
Old   
Ed Sheehan
 
Posts: n/a

Default Re: Process KeepAlive for any Pick variant? - 11-15-2006 , 05:23 PM



I was using Accuterm as an example. I'm actually using Dynamic Connect
(IBM's dumbed-down version of wIntegrate).

It's on windows, so I'm looking for a windows app that will let me specify
the window title string, then send a character I specify if the window
hasn't had activity for a specified amount of time.

The Accuterm keepalive would be perfect if it were available on DC, but no
such luck.

Ed

"Ross Ferris" <rossf (AT) stamina (DOT) com.au> wrote

Quote:
ED,

Is this a setting from the Operating System (Linux?) or Database (D3?)
- if the latter, then I don't think keepalives will do the trick, as
the input has to be "seen" by the application.

If from the OS, then Accuterm DOES have a "Send Keepalives" checkbox -
click the "advanced" button in the telnet box on the "connection" tab
(assuming you have a reasonably recent version)


HTH

Ross Ferris
Stamina Software
Visage > Better by Design!


Ed Sheehan wrote:
I've been looking for a freeware app which will just poke some character
into a process (say, Accuterm or wIntegrate) every n seconds/minutes.
We've
got a rather short logoff timeout at a client, and I don't have access to
the setting.

Has anyone seen such an animal? I've found mostly IE/Internet keep alive
apps, but no freeware to just send a character into a process I can name.

I know I could run a program inside the Pick TE, but that's a pain
compared
to a constantly running desktop program with an activity timer...

Thanks,

Ed




Reply With Quote
  #4  
Old   
Ross Ferris
 
Posts: n/a

Default Re: Process KeepAlive for any Pick variant? - 11-15-2006 , 06:11 PM



Good luck with that ! I take it the timeout is OS based then?

I have no knowledge of DC, but even to achieve what you are after would
imply some form of scripting capability ... does DC have a VBA variant
- maybe set a timer there & reset on activity (or not) ... if it's not
documented, I doubt you are going to find anything "free", so ATWIN may
still work out to be a cheaper option than having someone write some
one-off code for you .... have you tried IBM support or the U2 group?


Ed Sheehan wrote:
Quote:
I was using Accuterm as an example. I'm actually using Dynamic Connect
(IBM's dumbed-down version of wIntegrate).

It's on windows, so I'm looking for a windows app that will let me specify
the window title string, then send a character I specify if the window
hasn't had activity for a specified amount of time.

The Accuterm keepalive would be perfect if it were available on DC, but no
such luck.

Ed

"Ross Ferris" <rossf (AT) stamina (DOT) com.au> wrote in message
news:1163632120.332920.131090 (AT) m7g2000cwm (DOT) googlegroups.com...
ED,

Is this a setting from the Operating System (Linux?) or Database (D3?)
- if the latter, then I don't think keepalives will do the trick, as
the input has to be "seen" by the application.

If from the OS, then Accuterm DOES have a "Send Keepalives" checkbox -
click the "advanced" button in the telnet box on the "connection" tab
(assuming you have a reasonably recent version)


HTH

Ross Ferris
Stamina Software
Visage > Better by Design!


Ed Sheehan wrote:
I've been looking for a freeware app which will just poke some character
into a process (say, Accuterm or wIntegrate) every n seconds/minutes.
We've
got a rather short logoff timeout at a client, and I don't have access to
the setting.

Has anyone seen such an animal? I've found mostly IE/Internet keep alive
apps, but no freeware to just send a character into a process I can name.

I know I could run a program inside the Pick TE, but that's a pain
compared
to a constantly running desktop program with an activity timer...

Thanks,

Ed



Reply With Quote
  #5  
Old   
GVP
 
Posts: n/a

Default Re: Process KeepAlive for any Pick variant? - 11-15-2006 , 09:36 PM



Hi

Very simple CPP application with timer.

case WM_TIMER:
Search desktop windows with Accuterm text
Send group of messages like WM_KEYDOWN and WM_CHAR

I can write such program. But it is not good decision. It should be
done on server side or by Accuterm. For example BRIZ have sets of
timeouts.

regards,
Grigory


Reply With Quote
  #6  
Old   
dzigray
 
Posts: n/a

Default Re: Process KeepAlive for any Pick variant? - 11-16-2006 , 09:47 PM



you could always setup one of those perpetual motion birds by the
keyboard!


Reply With Quote
  #7  
Old   
Rick Kann
 
Posts: n/a

Default Re: Process KeepAlive for any Pick variant? - 11-17-2006 , 07:08 AM



I tried that once, but she kept doing her nails instead of hitting the
keys!

dzigray wrote:
Quote:
you could always setup one of those perpetual motion birds by the
keyboard!



Reply With Quote
  #8  
Old   
Chandru Murthi
 
Posts: n/a

Default Re: Process KeepAlive for any Pick variant? - 11-17-2006 , 08:05 AM



Trained monkeys were proposed for the oriignal Microdata systems to do IRI
when system hung (sorta the opposite of what you need, though).

Chandru

"Rick Kann" <him (AT) comp-ware (DOT) net> wrote

Quote:
I tried that once, but she kept doing her nails instead of hitting the
keys!

dzigray wrote:
you could always setup one of those perpetual motion birds by the
keyboard!





Reply With Quote
  #9  
Old   
JJCSR
 
Posts: n/a

Default Re: Process KeepAlive for any Pick variant? - 11-24-2006 , 01:39 PM



Ed:

I haven't seen anything in your posting that states which OS you are
using. I don't know Linux / Unix-based systems, but I am on Win 2k /
Win 2003 / XP, and I have to change the setting in the registry, in
Pick Systems (RainingData on 7.4.x), using REGEDIT (HKey_Local_Machine
/ Software / PickSystems (or RainingData) / D3 / CurrentVersion / D3VME
/ Pick0). Click on the folder "Pick0", and In the pane, right side of
window, double-click "TelnetDisc", change to "0".

Every time I install D3, I have to change this setting, or my
connection(s) will time out, based on whatever the TelnetDisc value is
(usually, it is "1"). I'm sorry if I have misconstrued your question,
but your problem sounds very familiar to one that I haev experienced.


Jim Cronin




Ed Sheehan wrote:
Quote:
I've been looking for a freeware app which will just poke some character
into a process (say, Accuterm or wIntegrate) every n seconds/minutes. We've
got a rather short logoff timeout at a client, and I don't have access to
the setting.

Has anyone seen such an animal? I've found mostly IE/Internet keep alive
apps, but no freeware to just send a character into a process I can name.

I know I could run a program inside the Pick TE, but that's a pain compared
to a constantly running desktop program with an activity timer...

Thanks,

Ed


Reply With Quote
  #10  
Old   
Tony Gravagno
 
Posts: n/a

Default Re: Process KeepAlive for any Pick variant? - 11-24-2006 , 10:05 PM



"JJCSR" wrote:

Quote:
Every time I install D3, I have to change this setting, or my
connection(s) will time out, based on whatever the TelnetDisc value is
(usually, it is "1"). I'm sorry if I have misconstrued your question,
but your problem sounds very familiar to one that I haev experienced.
Export common registry preferences into a specific directory on your
server. When you install D3 or other software, just double-click the
file to import your preferences.

A long time ago I wrote a D3 routine that would read/update the
registry. This allowed the D3 environment itself to be more
self-maintaining, and to serve more as a system administrative tool
than a financial application environment. I dunno, this was yet
another of my hair-brained ideas that I thought was pretty cool but
others don't seem to understand or appreciate.

T


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.