We recently converted a bunch of company internal web sites to secure https sites. This broke code that showed them in HTMLPanes. How do we deal with SSL in this case?
Code:
// show embedded confluence page
HTMLPane confluencePane = new HTMLPane();
// ???? Secure (https) pages do not load, but regular old http pages still do.
//confluencePane.setContentsURL("https://www.boston.com/");
//confluencePane.setContentsURL("https://confluence.com/");
confluencePane.setContentsURL("http://neverssl.com");
confluencePane.setContentsType(ContentsType.PAGE);
confluencePane.setWidth100();
confluencePane.setHeight100();
confluencePane.setShowEdges(true);
myWindow.addItem(confluencePane);
Comment