Re: Http client API

2012-08-08 Thread Sean Chou
sy to use for those who just want to open a webpage but don't want to know request and response. And as well doesn't break modularization. Thanks. On Wed, Aug 8, 2012 at 5:52 PM, Chris Hegarty wrote: > On 08/08/2012 07:25, Sean Chou wrote: > >> >> Is it possible

Re: Http client API

2012-08-07 Thread Sean Chou
viewed > at the following link > > http://cr.openjdk.java.net/~**michaelm/httpclient/v0.3/<http://cr.openjdk.java.net/~michaelm/httpclient/v0.3/> > > We would like to review the api on this mailing list. > So, all comments are welcome. > > Thanks > Michael McMahon. > -- Best Regards, Sean Chou

Re: A little modification to error message

2012-07-05 Thread Sean Chou
gt; Please verify > > Regards > Jonathan > > > On 07/03/2012 02:10 PM, Sean Chou wrote: > > > A bug is reported. > http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7181353 . > > On Mon, Jul 2, 2012 at 3:57 PM, Chris Hegarty > wrote: > >> Thanks

Re: A little modification to error message

2012-07-02 Thread Sean Chou
A bug is reported. http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7181353 . On Mon, Jul 2, 2012 at 3:57 PM, Chris Hegarty wrote: > Thanks Sean, looks fine to me. > > -Chris > > Sean Chou wrote: > > >Hello, > > > >Any one would like to take a look

Re: A little modification to error message

2012-07-01 Thread Sean Chou
Hello, Any one would like to take a look again ? -- Forwarded message -- From: Sean Chou Date: Tue, Jun 26, 2012 at 1:03 PM Subject: Re: A little modification to error message To: Chris Hegarty Cc: net-dev@openjdk.java.net Hi Chris, They are not all native OOMs, I

Re: A little modification to error message

2012-06-25 Thread Sean Chou
. > > Are these all the possibly native OOM throw sites in the networking area, > or just some you came across? > > -Chris. > > > On 21/06/2012 06:41, Sean Chou wrote: > >> Hi all, >> >> We did some modification in these error messages because of some &

A little modification to error message

2012-06-20 Thread Sean Chou
some places a little more to help locate to functions like "send buffer heap allocation failed". Would any one like to take a look? webrev: http://cr.openjdk.java.net/~zhouyx/OJDK-528/webrev.00/ . -- Best Regards, Sean Chou

Re: A behavior difference about reachable test for address zero

2011-11-25 Thread Sean Chou
No. Once before a time there was a testcase about it, so I just make sure it's a testcase problem. Thanks anyway. On Fri, Nov 25, 2011 at 7:28 PM, Chris Hegarty wrote: > On 25/11/2011 05:58, Sean Chou wrote: > >> Yes. ping 0.0.0.0 on linux works; while windows report not reacha

Re: A behavior difference about reachable test for address zero

2011-11-24 Thread Sean Chou
Yes. ping 0.0.0.0 on linux works; while windows report not reachable. On Tue, Nov 22, 2011 at 9:22 PM, Alan Bateman wrote: > On 22/11/2011 08:40, Sean Chou wrote: > >> >> Hi all, >> >>I found a behavior difference when running the testcase PingZero on >>

A behavior difference about reachable test for address zero

2011-11-22 Thread Sean Chou
atch (Exception e) { e.printStackTrace(); } } } // -- Best Regards, Sean Chou PingZero.java Description: Binary data

Re: HttpCookie.domainMatches("hostname.local", "hostname") return false

2011-08-21 Thread Sean Chou
oo.com", "x.foo.com",true); > +dm(".com", "whatever.com", false); > +dm(".com.", "whatever.com", false); > > +dm(".ajax.com", "ajax.com", true)

Re: HttpCookie.domainMatches("hostname.local", "hostname") return false

2011-08-04 Thread Sean Chou
Hi all, I checked with java8, this problem still exists; and I checked the patch, it is still working. The bug was filed with id 7023713 for java7, and the patch is here. So, would anyone like to take a look at it again? Thanks. 2011/2/22 Sean Chou > Hi, >I fin

Re: HttpCookie.domainMatches("hostname.local", "hostname") return false

2011-07-06 Thread Sean Chou
LocalDomain will be false > for 'hostname.local'. > > I am working on an alternative fix ( please feel free to work on an > alternative fix also). Additional, we should update > test/java/net/CookieHandler/**TestHttpCookie.java ( under "Test > domainMatches"

Re: HttpCookie.domainMatches("hostname.local", "hostname") return false

2011-03-24 Thread Sean Chou
Hi Chris, Is there any progress on this issue? -- Best Regards, Sean Chou

Re: HttpCookie.domainMatches("hostname.local", "hostname") return false

2011-03-16 Thread Sean Chou
it doesn't compile, startWith -> > startsWith ;-) > > More critically it doesn't resolve the problem, isLocalDomain will be false > for 'hostname.local'. > > I am working on an alternative fix ( please feel free to work on an > alternative fix also). Additional,

Re: HttpCookie.domainMatches("hostname.local", "hostname") return false

2011-03-14 Thread Sean Chou
> "HttpCookie.domainMatches("hostname.local", "hostname") should return true", > for this issue. > > -Chris. > > Thanks. >> >> >> 2011/2/22 Sean Chou > <mailto:zho...@linux.vnet.ibm.com>> >> >>Hi, >&

Re: HttpCookie.domainMatches("hostname.local", "hostname") return false

2011-03-01 Thread Sean Chou
Hi, If there's no different opinions or objection, can someone raise a bug on the Oracle bug system for me please? Thanks. 2011/2/22 Sean Chou > Hi, >I find that HttpCookie.domainMatches("hostname.local", "hostname") > returns false, which may be

HttpCookie.domainMatches("hostname.local", "hostname") return false

2011-02-22 Thread Sean Chou
println(HttpCookie.domainMatches("hostname.local", "hostname")); } } // End of testcase Any comments? -- Best Regards, Sean Chou