dev@grizzly.java.net

Re: 1.9.6 this week?

From: Oleksiy Stashok <Oleksiy.Stashok_at_Sun.COM>
Date: Tue, 17 Feb 2009 11:03:16 +0100

Hi,

>
> I would like to propose the release of 1.9.6 this week. Mainly, I
> would like to have an official release to cover the following fixes:
>
> + https://grizzly.dev.java.net/issues/show_bug.cgi?id=447
> "cometd chat-room does not logout completely"
>
> + https://glassfish.dev.java.net/issues/show_bug.cgi?id=7105
> "Incorrect behaviour with HTTPServletResponse
> OutputStream#flushBuffer()"
>
> The last one is kind of dangerous. A simple servlet doing:
>
> public void doPost(HttpServletRequest request,
> HttpServletResponse response)
> throws ServletException, IOException {
>
> OutputStream out = response.getOutputStream();
> while(true) {
> try {
> System.out.println("Writing zero byte");
> out.write(0);
> response.flushBuffer();
> Thread.sleep(5000);
> } catch (InterruptedException e) {
> e.printStackTrace();
> }
> catch(IOException f) {
> f.printStackTrace();
> break;
> }
> }
> }
>
> can be used to produce a Denial-of-Service when the connection get
> closed remotely.
+1, IMHO these are quite important fixes.


> The current open issue can be seen here:
>
>
> http://is.gd/jLAR
>
> I would propose we fix the following issue:
>
> https://grizzly.dev.java.net/issues/show_bug.cgi?id=445
+1

> https://grizzly.dev.java.net/issues/show_bug.cgi?id=427
I'll take care of this.

> https://grizzly.dev.java.net/issues/show_bug.cgi?id=441
Not sure this is issue at all. Pls. see comment on issuetracker.

> https://grizzly.dev.java.net/issues/show_bug.cgi?id=388
I missed the moment, when we started to support pipelineing :)

> https://grizzly.dev.java.net/issues/show_bug.cgi?id=437
Very important issue, IMHO. We have lots of "Grizzly" issues because
of that.
I could take it after #427, if noone else will volunteer :)

Thanks.

WBR,
Alexey.

> Any objections? Anyone interested to fix one of the above feel free
> to assign the bug to yourself :-) :-)
>
> Thanks!!
>
> -- Jeanfrancois
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe_at_grizzly.dev.java.net
> For additional commands, e-mail: users-help_at_grizzly.dev.java.net
>