Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8113771

http://www.live.com can't load

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • None
    • fx2.0
    • javafx
    • None
    • web

      http://www.live.com can't load with b39 WebNode.
      Other sites are loaded quite well.
      Consider the following application to reproduce the issue:

      mport javafx.application.Application;
      import javafx.scene.Scene;
      import javafx.scene.web.WebEngine;
      import javafx.scene.web.WebView;
      import javafx.stage.Stage;

      public class Main extends Application {
          
          WebEngine e;

          /**
           * @param args the command line arguments
           */
          public static void main(String[] args) {
              System.setProperty("http.proxyHost", "emeacache.uk.oracle.com");
              System.setProperty("http.proxyPort", "80");
              Application.launch(args);
          }

          @Override
          public void start(Stage stage) throws Exception {
              WebView wv = new WebView();
              e = wv.getEngine();
              e.load("http://www.live.com");
              stage.setScene(new Scene(wv));
              stage.setVisible(true);
          }
      }

            malenkov Sergey Malenkov (Inactive)
            ilatyshe Irina Grineva (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: