Re: getCanonicalHostName on Windows

2008-03-05 Thread Christopher Hegarty - Sun Microsystems Ireland
I am not familiar with the Windows DNS service, but I cannot image how the FQDN can be retrieved without a reverse entry in the DNS server. I suspect that you will need to populate "Reverse Lookup Zones" with the names of any machines you wish to be able to get the FQDN for. -Chris. Max (Weij

Proposed fix for 6660405.

2008-03-05 Thread Jean-Christophe Collet
Here is my proposed fix for CR 6660405. The issue is that after a redirect, and if there is a cache hit (i.e. the URL is found in the cache) HttpURLConnection will return the wrong InputStream. Details are in the evaluation section of the CR. My proposed fix is to set inputStream back to null in

Re: Proposed fix for 6660405.

2008-03-05 Thread Christopher Hegarty - Sun Microsystems Ireland
The change looks good. I approve this change. -Chris Jean-Christophe Collet wrote: Here is my proposed fix for CR 6660405. The issue is that after a redirect, and if there is a cache hit (i.e. the URL is found in the cache) HttpURLConnection will return the wrong InputStream. Details are in t

Proposed fix for 6651717

2008-03-05 Thread Jean-Christophe Collet
This is a straightforward fix in mailtoURLConnection to remove a left over debug statement in the connect() method. Also took the opportunity to remove unneeded imports and add appropriate @Override tags. No regression test as this is a trivial change. Patch attached. --- old/src/share/classes/

Re: Proposed fix for 6651717

2008-03-05 Thread Christopher Hegarty - Sun Microsystems Ireland
Yes, this change is fine. -Chris. Jean-Christophe Collet wrote: This is a straightforward fix in mailtoURLConnection to remove a left over debug statement in the connect() method. Also took the opportunity to remove unneeded imports and add appropriate @Override tags. No regression test as th