SUGGESTED FIX
--- wrapper.cpp Thu Oct 30 13:56:35 2003
*** 23,34 ****
HINTERNET hOpen, hConnect, hRequest;
HRESULT ret = S_OK;
DWORD dwVal;
DWORD dwValSize = sizeof(DWORD);
! if (!InternetGetConnectedState(&dwVal, NULL))
! return E_FAIL;
sprintf(szURL, "%s", "http://java.sun.com");
__try
{
// Open Internet Call
--- 23,35 ----
HINTERNET hOpen, hConnect, hRequest;
HRESULT ret = S_OK;
DWORD dwVal;
DWORD dwValSize = sizeof(DWORD);
! //InternetGetConnectedState is returning false on some XP machines, even when connected
! //if (!InternetGetConnectedState(&dwVal, NULL))
! // return E_FAIL;
sprintf(szURL, "%s", "http://java.sun.com");
__try
{
// Open Internet Call
Fixed in 1.4.2_04
###@###.### 2003-11-06
|
EVALUATION
Was the user going through the autodownload with Internet Explorer, or was the user using Netscape or Mozilla to manually download the jre Windows Online Installer bundle?
Is the user able to view java.com with Internet Explorer?
###@###.### 2003-09-16
This was due to InternetGetConnectedState() returning false on some XP
machines, even when online. This call is used in the install wrapper code.
###@###.### 2003-09-22
Not reproducible in-house yet.
###@###.### 2003-10-03
I think Rajani may have fixed this in Tiger already. Assigning it to her for further evaluation.
###@###.### 2003-10-23
|