Re: [jira] Updated: (HARMONY-1370) [classlib][luni] HttpsURLConnection enhancement allowing work over HTTP proxy server

2006-09-17 Thread Alexander Kleymenov
Hello Mikhail, On 9/14/06, Mikhail Loenko [EMAIL PROTECTED] wrote: It seams like system property are not restored well, new 1.5 method System.clearProperty() IMHO would be suitable What do you think? You are right! If setProperty(property) returned null, we should restore overridden property

Re: [jira] Updated: (HARMONY-1370) [classlib][luni] HttpsURLConnection enhancement allowing work over HTTP proxy server

2006-09-14 Thread Mikhail Loenko
Thanks for the updated patch! I still have a question. As we've discussed [1] available method can be trusted in very special cases only. So, should this code while (is.available() != 0) { is.read(); } be replaced with reading until '-1'?

Re: [jira] Updated: (HARMONY-1370) [classlib][luni] HttpsURLConnection enhancement allowing work over HTTP proxy server

2006-09-13 Thread Mikhail Loenko
Hi Alexander, thanks for your patch! Is there any reason why resource could not be loaded from classpath and additional system property is specified in the build? Would you mind if I change it? It seams like system property are not restored well, new 1.5 method System.clearProperty() IMHO