Hi,
We have upgraded our IDE to eclipse 3.5 (galileo) which uses dltk1.0 and
RSE3.1.
Here, when we try to launch(run/debug) the remote files,it forms a command
line and write it to a temporary shell script on the unix terminal and
then log in to the unix and tries to run that shell script using "exec
/bin/sh <temp_file>.sh" command.
But in our case, loggin is a 2 step process:
1. It asks for login/password details
2. It shows a module area selection menu. We have to give module area
number as user input and press enter.
Only after these steps, the command prompt is made available. Hence, there
is a mismatch in firing command.
Is it possible to get handle to give the initial and final commands before
and after the actual "exec" command ? i.e if it is possible to customise
the command firing sequence ,so that after loggin in command firing
sequence will be :
<initial commands> (user will give this via some get method, say,
preFireCommandCheck()-optional)
"exec /bin/sh <temp_file>.sh" command.
<finalcommands> (user will give this via some get method, say,
postFireCommandCheck -optional)