While trying to run a website with SSO and auto-login feature using ADFS and NTLM on JavaFX WebView I am unable to load it as the application pop-up shows a blank screen.
This happens when I try to run the program on openJDK-11. When I run the same program with Oracle's Java8 it works just fine, and I want it to work the same way with openJDK.
What I noticed while trying to debug using com.mohamnag.javafx-webview-debugger v0.0.2 is that when I ran the application with openJDK-11, the network calls stopped after a GET request was made to NTLM using client id, session id and time as payload. It returns with 401 Unauthorized and the network calls stop there. When I run the same app with Oracle Java8, the same NTLM call mentioned above is made and it returns with the same 401 Unauthorized message. But, right after that other network calls are made which loads the webpage successfully.
I tried openJDK-11 with openJFX v19 with runtime build 11 and v13.0.2 with runtime build 1, but the issue is reproduced in both the cases. Java8, v1.8.0_181, has its own javafx so it must be using that.
Please help me find what is different in Java8 that is making it work and how can I replicate the same for openJDK-11.