I am trying out the "Legacy Integrator" on a 3270 application.
So far by following the startingWithConvertigoLegacyIntegrator_5.2.0.pdf tutorial I managed to do the following :
- connect to my 3270 application through convertigo studio.
- defined two screen classes : the login screen and the screen that follows.
I'm now defining a transaction in order to navigate from Login screen and can't get i to work. The steps I followed are :
- created a transaction.
- created a new handler with the following propoerties : screen class handler bound to my login screen and "EntryHandler" checkbox selected.
- the handler code is as followed :
// Entry handler for screen class "EcranAuthentification"
function onEcranAuthentificationEntry() {
javelin.send("S025401"); //my login
javelin.moveCursor(18, 9);
javalin.send("test"); //my password
javelin.doAction("KEY_ENTER");
javelin.waitForDataStable(timeout, dataStableThreshold);
return "redetect";
}
I then tried to validate my transaction by connecting to the application (displays login screen) and then selecting my transaction -> Execute.
The result I expected was the screen following the login screen but nothing shows up : I get a black screen on emulator and "Last detected screen class: DefaultScreenClass"
Attached File "ConvertigoLog.txt" contains logs for both actions : connecting and displaying logging screen, executing transaction.
Any help on what I am doing wrong would be nice.