I'm integrating a legacy application running on AIX with a new J2EE app using Applinx API. After send some keys, I'm waiting the cursor jump to next field:
wc = new GXWaitForCursor(new GXPosition(11, 22),new GXPosition(11, 33), 3000, 1000);
client.sendKeys("[enter]1[enter]2[enter]3[enter]3[enter]");
sr = new GXGetScreenRequest();
sr.addWaitCondition(wc);
screen = client.getScreen(sr);
While I can see (using Applinx Administrator) that the cursor has already reached that position, it wait until it fails by timeout.
Is there anyone who has faced this issue?
Thanks.