JDK-7080417 : DT: javafx auto-download does not work from internal url
  • Type: Bug
  • Component: deploy
  • Sub-Component: deployment_toolkit
  • Affected Version: 7-client
  • Priority: P2
  • Status: Closed
  • Resolution: Fixed
  • OS: windows,windows_xp
  • CPU: x86
  • Submitted: 2011-08-17
  • Updated: 2011-11-28
  • Resolved: 2011-11-28
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 7 JDK 8
7u2 b03Fixed 8Fixed
Related Reports
Duplicate :  
Description
DT:  javafx auto-download does not work from internal url

Comments
EVALUATION Treat 404 error in a special way and give it a try to alternative location. Also in this change: - return installer exit code to javascript - distinguish between user canceled download vs network error
22-08-2011

EVALUATION problem is in src/plugin/win32/toolkit/common/JavaFX.cpp; we now never calls into the fallback into the secondary internal url. 309 // try external URL1, then internal URL2 310 if (pInstallCallback->getPrimaryURL() != NULL) { 311 if (dlg1.DoModal() == IDOK) { 312 // OK - we downloaded the external posted JavaFX intaller 313 if (ExecuteInstallation(szInsFile, "")) { 314 status = INSTALL_ERR_SUCCESS; 315 } else { 316 status = INSTALL_ERR_EXEC; 317 } 318 } else { 319 //FIXME: return code other than IDOK, e.g. IDCANCEL, can be 320 // due to either canceled by the user or an error condition 321 // during download. Need to investigate on how to return an error 322 // code vs. user's cancellation from DownloadDialog.cpp. 323 status = INSTALL_ERR_DOWNLOAD; 324 } 325 } else { 326 CDownloadDialog dlg2; 327 dlg2.setInstallerURL(pInstallCallback->getSecondaryURL()); // try secondary URL
17-08-2011