Discussions
Categories
- 196.8K All Categories
- 2.2K Data
- 235 Big Data Appliance
- 1.9K Data Science
- 449.9K Databases
- 221.6K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 549 MySQL Community Space
- 478 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3K ORDS, SODA & JSON in the Database
- 532 SQLcl
- 4K SQL Developer Data Modeler
- 186.9K SQL & PL/SQL
- 21.3K SQL Developer
- 295.5K Development
- 17 Developer Projects
- 138 Programming Languages
- 292.2K Development Tools
- 104 DevOps
- 3.1K QA/Testing
- 645.9K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 154 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.1K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 17 Java Essentials
- 158 Java 8 Questions
- 85.9K Java Programming
- 79 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.2K Java SE
- 13.8K Java Security
- 203 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 402 LiveLabs
- 37 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.6K Other Languages
- 2.3K Chinese
- 171 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 230 Portuguese
Problem with JavaAccessBridge doAccessibleActions method

Hi,
I am doing an R&D to monitor the controls of Java Swing/AWT application from C++. I am using JAB (Java Access Bridge) API for this integration and list out all the controls and control names using JavaMonkey and Ferret applications.
Things that i was used for this to work are:
1) Installed JDK 7u45 and ran below command to enable JAB.
jabswitch.exe /enable
2) Post that ran JavaMonkey application and it started working from there with out any issues. (and it confirmed me that JAB is enabled successfully)
Problem:
I have a button in swing application and post click on that button, it will navigate to another dialog which MODAL dialog box. Unless i close that window, it will not give control back parent window to access controls of parent.
In application, if my accessible context is button, then i am callling below methods to click the button.
getAccessibleActions and doAccesssibleAction
By these two methods i am able to click the button from my application and able to see the MODAL window opened. But post click the control is not coming back to my application instead it is sitting in API level. Until i close the opened modal window, the control is not coming back to my application, instead it is hanging.
Can anyone help me regarding this...? if this fixed in any of the versions, please provide me those details. Appreciate for quick response and thanks in advance.
Thanks