DO NOT REPLY [Bug 42669] New: - Unhelpful error message when using zip installation on Mac OS X

2007-06-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: Serious non-native AJP connector issue

2007-06-15 Thread Jess Holle
Bill Barker wrote: It seems that we lost building the NIO/AJP connector in Tomcat, but since i recognize you from [EMAIL PROTECTED], you will have seen that already :). Last time I tested, the experimental NIO/AJP connector performed better than either the default or the APR connector on Solar

DO NOT REPLY [Bug 42673] New: - SSI virtual include broken for context path with slashes

2007-06-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: Serious non-native AJP connector issue

2007-06-15 Thread Jess Holle
H I just redid my tests with: BalancerMember ajp://localhost:8010 min=15 max=*50* smax=30 ttl=900 keepalive=Off timeout=900 and and ab -n 100 -c *50* http://jessh03l.ptcnet.ptc.com/TestApp/test.jsp?secs=3 I (after about 3 seconds) get SEVERE: All threads (51) ar

DO NOT REPLY [Bug 42565] - jsp /expression language

2007-06-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 32017] - Tomcat 5.5 manager fails to undeploy Struts app

2007-06-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: Proposed simplification of CometEvent

2007-06-15 Thread Filip Hanik - Dev Lists
Costin Manolache wrote: On 6/14/07, Filip Hanik - Dev Lists <[EMAIL PROTECTED]> wrote: Costin Manolache wrote: >> > >> > >> > Sounds better - but as Remy explained you would first need to explain >> > why blocking is needed in this context and how to deal with the >> confusion >> > of mixing

Re: svn commit: r546531 - in /tomcat/connectors/trunk/jk/native: apache-1.3/mod_jk.c apache-2.0/mod_jk.c common/jk_global.h common/jk_url.c common/jk_url.h common/list.mk.in

2007-06-15 Thread Rainer Jung
Sorry for being offline for 2 weeks :( Sorry for the long post coming :(( I just now read the URL rewriting discussion. Although the discussion seems to have come to an end, I find it worthwhile to actually add some structure to it: 1) How to forward the URL I already suggested a different f

DO NOT REPLY [Bug 42669] - Unhelpful error message when using zip installation on Mac OS X

2007-06-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: Proposed simplification of CometEvent

2007-06-15 Thread Remy Maucherat
Filip Hanik - Dev Lists wrote: Please note, that neither Remy nor I have yet really talked about non blocking reads, so you might think sandbox is non blocking, well it is not. It is buffering, but not non blocking. a true non blocking read, would require a rewrite of all the buffer filters to k

DO NOT REPLY [Bug 42669] - Unhelpful error message when using zip installation on Mac OS X

2007-06-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: Proposed simplification of CometEvent

2007-06-15 Thread Remy Maucherat
Filip Hanik - Dev Lists wrote: public class ExampleCometStockStreamer implements CometProcessor { ... public class StockUpdater extends Thread { public void run() { ... StockUpdates[] updates = fetchUpdates(); Client[] clients = getClients(updates); for (int i=0; i

Re: Proposed simplification of CometEvent

2007-06-15 Thread Filip Hanik - Dev Lists
Remy Maucherat wrote: Filip Hanik - Dev Lists wrote: Please note, that neither Remy nor I have yet really talked about non blocking reads, so you might think sandbox is non blocking, well it is not. It is buffering, but not non blocking. a true non blocking read, would require a rewrite of all

Re: Proposed simplification of CometEvent

2007-06-15 Thread Costin Manolache
Ok, so let me double check: the low level socket in sandbox is allways read after a poll() / select(), and never with a blocking read() ? After the poll(): the Comet servlet, in a tomcat thread will be able to call read() in the input stream, and that will return data or 0 if no more data is avai

Re: Proposed simplification of CometEvent

2007-06-15 Thread Filip Hanik - Dev Lists
Costin Manolache wrote: Ok, so let me double check: the low level socket in sandbox is allways read after a poll() / select(), and never with a blocking read() ? huh? :) After the poll(): the Comet servlet, in a tomcat thread will be able to call read() in the input stream, and that will r

Re: Serious non-native AJP connector issue

2007-06-15 Thread Rainer Jung
Jess, I didn't really carefully think about the case of a saturated pool. But nevertheless some hints: 1) There is always one thread waiting for the accept, which is a usual pool thread. So an offset of one between threeads processing requests and the pool size is normal. 2) There is no or

Re: Proposed simplification of CometEvent

2007-06-15 Thread Filip Hanik - Dev Lists
since we are getting pretty far off track here, I've started a Wiki page on what comet is and isn't. http://wiki.apache.org/tomcat/WhatIsComet It will be helpful in the future, or we can assimilate this into our docs eventually, but for now, I think it is a good drawing board to clear out thin

Re: Proposed simplification of CometEvent

2007-06-15 Thread Filip Hanik - Dev Lists
Ok, one use case scenario would be AJAX requests with asynchronous responses on the server, I can see this be extremely common, I've tried to add in comments to make the example clear, and I don't see this example as stupid, as there are a lot more AJAX client frameworks than Comet client framew

Re: Proposed simplification of CometEvent

2007-06-15 Thread Filip Hanik - Dev Lists
Filip Hanik - Dev Lists wrote: Costin Manolache wrote: Ok, so let me double check: the low level socket in sandbox is allways read after a poll() / select(), and never with a blocking read() ? huh? :) After the poll(): the Comet servlet, in a tomcat thread will be able to call read() in t

svn commit: r547788 - /tomcat/trunk/webapps/docs/aio.xml

2007-06-15 Thread fhanik
Author: fhanik Date: Fri Jun 15 14:27:12 2007 New Revision: 547788 URL: http://svn.apache.org/viewvc?view=rev&rev=547788 Log: minor correction Modified: tomcat/trunk/webapps/docs/aio.xml Modified: tomcat/trunk/webapps/docs/aio.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs

svn commit: r547792 - /tomcat/trunk/webapps/docs/aio.xml

2007-06-15 Thread fhanik
Author: fhanik Date: Fri Jun 15 14:31:45 2007 New Revision: 547792 URL: http://svn.apache.org/viewvc?view=rev&rev=547792 Log: Added in AJAX with delayed response example Modified: tomcat/trunk/webapps/docs/aio.xml Modified: tomcat/trunk/webapps/docs/aio.xml URL: http://svn.apache.org/viewvc

svn commit: r547794 - /tomcat/trunk/webapps/docs/aio.xml

2007-06-15 Thread fhanik
Author: fhanik Date: Fri Jun 15 14:35:57 2007 New Revision: 547794 URL: http://svn.apache.org/viewvc?view=rev&rev=547794 Log: fix formatting for latest added example Modified: tomcat/trunk/webapps/docs/aio.xml Modified: tomcat/trunk/webapps/docs/aio.xml URL: http://svn.apache.org/viewvc/tom

DO NOT REPLY [Bug 42669] - Unhelpful error message when using zip installation on Mac OS X

2007-06-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 42678] New: - docBase ignored even if its not a subdir of appBase

2007-06-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 42678] - docBase ignored even if its not a subdir of appBase

2007-06-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 42497] - 304 response should consistently include ETag header

2007-06-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: Serious non-native AJP connector issue

2007-06-15 Thread Jess Holle
Rainer Jung wrote: Jess, I didn't really carefully think about the case of a saturated pool. But nevertheless some hints: 1) There is always one thread waiting for the accept, which is a usual pool thread. So an offset of one between threeads processing requests and the pool size is normal.

DO NOT REPLY [Bug 42646] - Content-disposition on ia64 causes request to break

2007-06-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu