-
Bug
-
Resolution: Cannot Reproduce
-
P3
-
8u60, 9
-
x86_64
-
windows_7
FULL PRODUCT VERSION :
java version "1.8.0_72-ea"
Java(TM) SE Runtime Environment (build 1.8.0_72-ea-b05)
Java HotSpot(TM) 64-Bit Server VM (build 25.72-b05, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows [Version 6.1.7601]
A DESCRIPTION OF THE PROBLEM :
WebView can't display websites hosted at Wix.com
REGRESSION. Last worked in version 8u45
ADDITIONAL REGRESSION INFORMATION:
java version "1.8.0_45"
Java(TM) SE Runtime Environment (build 1.8.0_45-b15)
Java HotSpot(TM) 64-Bit Server VM (build 25.45-b02, mixed mode)
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Go to the following address using WebView
webView.getEngine().load("http://www.gizmo3dprinters.com.au");
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
See a web page
ACTUAL -
Didn't see a web page
ERROR MESSAGES/STACK TRACES THAT OCCUR :
No errors and no messages. I did try using -Djavax.net.debug=all and pasting the result here, but the web page crashed. Not sure what else I can supply
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
It is a JavaFX app so need to include everything to show how to reproduce it
FXMLDocument.xml
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.web.*?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane id="AnchorPane" prefHeight="543.0" prefWidth="787.0" xmlns="http://javafx.com/javafx/8.0.40" xmlns:fx="http://javafx.com/fxml/1" fx:controller="javafxapplication1.FXMLDocumentController">
<children>
<Button fx:id="button" layoutX="708.0" layoutY="42.0" onAction="#handleButtonAction" text="Click Me!" />
<Label fx:id="label" layoutX="126" layoutY="120" minHeight="16" minWidth="69" />
<WebView fx:id="webView" prefHeight="533.0" prefWidth="633.0" />
</children>
</AnchorPane>
FXMLDocumentController.java
package javafxapplication1;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Label;
import javafx.scene.web.WebView;
/**
*
* @author kdut
*/
public class FXMLDocumentController implements Initializable {
@FXML
private Label label;
@FXML
private WebView webView;
@FXML
private void handleButtonAction(ActionEvent event) {
webView.getEngine().load("http://www.gizmo3dprinters.com.au");
// webView.getEngine().load("http://google.com");
}
@Override
public void initialize(URL url, ResourceBundle rb) {
// TODO
}
}
JavaFXApplication1.java
package javafxapplication1;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
/**
*
* @author kdut
*/
public class JavaFXApplication1 extends Application {
@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("FXMLDocument.fxml"));
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Downgrade to Java 8 45
java version "1.8.0_72-ea"
Java(TM) SE Runtime Environment (build 1.8.0_72-ea-b05)
Java HotSpot(TM) 64-Bit Server VM (build 25.72-b05, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows [Version 6.1.7601]
A DESCRIPTION OF THE PROBLEM :
WebView can't display websites hosted at Wix.com
REGRESSION. Last worked in version 8u45
ADDITIONAL REGRESSION INFORMATION:
java version "1.8.0_45"
Java(TM) SE Runtime Environment (build 1.8.0_45-b15)
Java HotSpot(TM) 64-Bit Server VM (build 25.45-b02, mixed mode)
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Go to the following address using WebView
webView.getEngine().load("http://www.gizmo3dprinters.com.au");
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
See a web page
ACTUAL -
Didn't see a web page
ERROR MESSAGES/STACK TRACES THAT OCCUR :
No errors and no messages. I did try using -Djavax.net.debug=all and pasting the result here, but the web page crashed. Not sure what else I can supply
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
It is a JavaFX app so need to include everything to show how to reproduce it
FXMLDocument.xml
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.web.*?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane id="AnchorPane" prefHeight="543.0" prefWidth="787.0" xmlns="http://javafx.com/javafx/8.0.40" xmlns:fx="http://javafx.com/fxml/1" fx:controller="javafxapplication1.FXMLDocumentController">
<children>
<Button fx:id="button" layoutX="708.0" layoutY="42.0" onAction="#handleButtonAction" text="Click Me!" />
<Label fx:id="label" layoutX="126" layoutY="120" minHeight="16" minWidth="69" />
<WebView fx:id="webView" prefHeight="533.0" prefWidth="633.0" />
</children>
</AnchorPane>
FXMLDocumentController.java
package javafxapplication1;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Label;
import javafx.scene.web.WebView;
/**
*
* @author kdut
*/
public class FXMLDocumentController implements Initializable {
@FXML
private Label label;
@FXML
private WebView webView;
@FXML
private void handleButtonAction(ActionEvent event) {
webView.getEngine().load("http://www.gizmo3dprinters.com.au");
// webView.getEngine().load("http://google.com");
}
@Override
public void initialize(URL url, ResourceBundle rb) {
// TODO
}
}
JavaFXApplication1.java
package javafxapplication1;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
/**
*
* @author kdut
*/
public class JavaFXApplication1 extends Application {
@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("FXMLDocument.fxml"));
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Downgrade to Java 8 45