In JavaFx, I can connect the listener to the bootloader for webEngine as follows:
webEngine.getLoadWorker().stateProperty().addListener( new ChangeListener<Worker.State>() { public void changed(ObservableValue ov, Worker.State oldState, Worker.State newState) { System.out.println("webEngine result "+ newState.toString()); } });
However, if I try to download a document with an https address, for example:
https://SomeLocalMachine.com:9443/jts/admin#action=com.ibm.team.repository.manageUsers
everything I print on the console:
webEngine result READY webEngine result SCHEDULED webEngine result RUNNING webEngine result FAILED
(The same https address in Firefox or Chrome gets me the login page)
Does anyone know how I can get more detailed reports from JavaFx WebEngine. I donβt just want to know that it failed - I need to know why . I can guess that my error is related to SSL / certificate / HTTPS, but at present I am completely in the dark regarding what part of SSL caused it to "FAIL"
Tony eastwood
source share