我正在尝试向Microsoft的auth v2打开一个webview。在浏览器中加载很好,但在JavaFX的WebView(JDK 8)中,页面是空白的。一旦我打开控制台输出,我会看到许多行,例如CSS和JS。
[null:0] Cannot load stylesheet https://secure.aadcdn.microsoftonline-p.com/ests/2.1.8148.16/content/cdnbundles/converged.v2.login.min_t7iocdq0wq2qh0nv233jig2.css. Failed integrity metadata check.
我相对肯定问题是CORS(我正在加载microsoftonline.com
,资源是在microsoftonline-p.com
)。我已经尝试了所有可以解决的问题,或者在线查找。
我试过设置所有这些
engine.setJavaScriptEnabled(true)
engine.setUserAgent("AppleWebKit/537.44")
System.setProperty("sun.net.http.allowRestrictedHeaders", "true")
我还在-Dsun.net.http.allowRestrictedHeaders=true
(见VMOptions
)和JavaFX问题here中通过JDK-8096797设置了Property。
该属性显示为set:
println(System.getProperty("sun.net.http.allowRestrictedHeaders"))
在控制台打印输出上产生true
。
仍然没有变化,在页面输出中,它总是一个白色的空白屏幕,并且来自Web控制台的错误相同。
我想我发现trouble lines in WebKit(see matchIntegrityMetadata
)甚至,但这并没有帮助我解决问题,因为我不知道如何禁用integrityCheck。
这真的,真让我难过。非常感谢任何帮助。
作为参考,这是整个方法:
private fun WebView.authWindow(provider: Oath2Account){
engine.setUserAgent("AppleWebKit/537.44")
engine.setJavaScriptEnabled(true)
URLPermission("https://*.com")
System.setProperty("sun.net.http.allowRestrictedHeaders", "true")
Platform.runLater {
engine.userDataDirectory = File("C:\\users\\eric\\javafx_tmp")
engine.setOnError { println("IN PAGE ERROR --> $it") }
engine.setOnAlert { println("IN PAGE ALERT --> $it") }
engine.setConfirmHandler { println("IN PAGE CONFIRM HANDLER --> $it")
true
}
engine.setCreatePopupHandler { println("IN PAGE POPUP --> $it")
engine}
engine.setOnResized { println("IN PAGE RESIZED --> $it") }
engine.setOnStatusChanged { println("IN PAGE STATUS CHANGED --> $it")
println("\t${it.data}")
println("\t${it.source}")
println("\t${it.eventType}")
println("\t${it.target}")
println("\t${it.isConsumed}")
}
engine.setOnVisibilityChanged { println("IN PAGE VISIBILITY CHANGED --> $it") }
engine.setPromptHandler { println("IN PAGE PROMPTED --> $it")
"HELLO"}
println("JavaScript engine status: ${engine.isJavaScriptEnabled}")
println("engine is loading $loadURL")
engine.locationProperty().addListener { observable, oldLocation, newLocation->
println("observable=$observable\noldLocation=$oldLocation\nnewLocation=$newLocation")
// if (newLocation.startsWith("urn:ietf:wg:oauth:2.0:oob")) {
// val code:get
// val title:from
// val accessToken = service.getAccessToken(verifier)
// doSomething(accessToken.getAccessToken())
// }
}
com.sun.javafx.webkit.WebConsoleListener.setDefaultListener { webview, message, lineNumber, sourceId -> println("Console: [$sourceId:$lineNumber] $message") }
engine.setOnError({ event -> System.out.println(event.getMessage()) })
try{
engine.load(loadURL )
} catch (e: IOException) {
println("caught error:")
e.printStackTrace();
}
}
这证实了我的回答:Javafx - open login.microsoftonline.com page in webview component
关键点是外部脚本/链接完整性失败。这不是平台浏览器问题,JavaFX(OpenJFK)依赖于嵌入式webkit引擎。
回归发生在Windows JDK 8上的版本40和版本172之间。它与Oracle JDK 9.0.4一起正常工作它不能与Oracle JDK 11一起使用
更多细节:https://github.com/mguessan/davmail/issues/12
=>更新:OpenJFX团队在Windows和Linux上确认的问题,请参阅:https://github.com/javafxports/openjdk-jfx/issues/230和[WebView]子资源完整性检查在Windows和Linux上失败https://bugs.openjdk.java.net/browse/JDK-8219917
=>更新的答案:已实施以覆盖Microsoft表单内容并禁用完整性检查。这不是webkit错误的修复,只是一种解决方法
try {
URL.setURLStreamHandlerFactory(new URLStreamHandlerFactory() {
@Override
public URLStreamHandler createURLStreamHandler(String protocol) {
if ("https".equals(protocol)) {
return new sun.net.www.protocol.https.Handler() {
@Override
protected URLConnection openConnection(URL url, Proxy proxy) throws IOException {
System.out.println("openConnection " + url);
if (url.toExternalForm().endsWith("/common/handlers/watson")) {
System.out.println("Failed: form calls watson");
}
final HttpsURLConnectionImpl httpsURLConnection = (HttpsURLConnectionImpl) super.openConnection(url, proxy);
if ("login.microsoftonline.com".equals(url.getHost())
&& "/common/oauth2/authorize".equals(url.getPath())) {
return new URLConnection(url) {
@Override
public void connect() throws IOException {
httpsURLConnection.connect();
}
public InputStream getInputStream() throws IOException {
byte[] content = readFully(httpsURLConnection.getInputStream());
String contentAsString = new String(content, "UTF-8");
System.out.println(contentAsString);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
baos.write(contentAsString.replaceAll("integrity", "integrity.disabled").getBytes("UTF-8"));
return new ByteArrayInputStream(baos.toByteArray());
}
public OutputStream getOutputStream() throws IOException {
return httpsURLConnection.getOutputStream();
}
};
} else {
return httpsURLConnection;
}
}
};
}
return null;
}
});
} catch (Throwable t) {
System.out.println("Unable to register custom protocol handler");
}
我发现Web视图使用webkit引擎用于mac os / linux os和IE引擎用于windows机器。我有类似的问题Javafx - open login.microsoftonline.com page in webview component。 Mac OS上的WebView工作正常,但Windows机器上存在问题。当我调查这个问题时,我发现这个IE引擎存在问题。我可以访问安装了不同版本IE 11的少数机器。在使用update version 11.0.85
的机器上我无法打开这个网站,但是当我尝试使用update version 11.0.90
的机器时,问题不再存在。因此,如果您使用的是Windows操作系统,请尝试更新IE版本,这可能会解决您的问题。