I'm having success so far experimentally running Jetty "behind" Apache. The result is a bit like Apache with JServe, but I find the independent configuration...
Cris Perdue
cris@...
Mar 6, 2000 4:15 am
295
I found a nasty little gotcha using Jetty on Windows 2000: Win2K allows you to select text in the console window. Mostly this is a great feature--you can copy...
Kent Johnson
kjohnson@...
Mar 7, 2000 9:42 pm
296
This is really interesting since I like both Apache and Jetty. I experimented this week with JServ but it seems to lack many features (chunked encoding ?)that...
Just van den Broecke
justb@...
Mar 9, 2000 12:17 pm
297
Hi, I think the intention of the Jakarta/tomcat people is to use the JSERV code base to improve Tomcat where they can. As for using Jetty behind apache, it...
Greg Wilkins
gregjwilkins@...
Mar 9, 2000 1:01 pm
298
I am currently using Jetty + Apache in this manner to support Servlets from the home directory for 1600+ students / faculty of the CSCI department at UNC...
James Robinson
jlrobins_uncc@...
Mar 9, 2000 8:02 pm
299
Hi Greg et al, I configure the pool with min/maxhtreads and a timeout (usually 3 minutes, maybe this should be 15 secs, taken that this is the keep-alive...
Just van den Broecke
justb@...
Mar 13, 2000 12:59 pm
300
Hello, I have problems trying the jsp10/date.jsp example. I allways get the ... Exception while servicing request for date.jsp java.lang.ClassCastException:...
Gerhard Hiler
hiller@...
Mar 14, 2000 7:26 am
301
hello gerhard, i had lot's of problems using gnujsp with jetty but after patching the source code i got it running. earlier this year we already discussed this...
Klaus
klausspd@...
Mar 14, 2000 8:59 am
302
Hi Klaus, I am trying to track down why my server (Jetty 2.3.3 on Linux with Sun JDK2) stops accepting new requests at some point. Since I had an article in...
Just van den Broecke
justb@...
Mar 14, 2000 10:40 am
303
... lock up, after an hour or so with a pool of min 32 max 64 threads and idletimeout 30 secs. [...] Have you maybe observed that GNUJSP is somewhere...
Juancarlo Añez
juancarlo@...
Mar 14, 2000 11:01 am
304
Hi Juanco, Thanks. My setup is however a bit involved. I use my own JettyServer class (extends BaseConfiguration) which reads in an XML file for configuring...
Just van den Broecke
justb@...
Mar 14, 2000 3:58 pm
305
Is it possible not to specify a class path or servlet path when creating a ServletServer if the servlet that is to be run is the class that started the...
Christopher Fahey
christopher.fahey@...
Mar 14, 2000 4:28 pm
306
I think you would have to write (update) your own servletHolder/ServletHandler pair to do this, but I don't think it would be difficult. But I'd probably...
Greg Wilkins
gregjwilkins@...
Mar 14, 2000 5:15 pm
307
Can anyone tell me how to use ServletHolder to add a previously instantiated Servlet to the ServletHandlers list? I see that I can create a ServletHolder and...
Christopher Fahey
christopher.fahey@...
Mar 14, 2000 5:38 pm
308
You will have to add another method to the holder. Currently the holder will construct the servlet when it first needs it. You will have to set the servlet...
Greg Wilkins
gregjwilkins@...
Mar 15, 2000 12:18 am
309
Just, Are you sure it isn't that clients are holding connections up? Try using netstat and looking for ESTABLISHED connections that persist for a long time. We...
Brett Sealey
brett@...
Mar 15, 2000 12:53 am
310
"just van den broecke" <just-@...> wrote: original article:http://www.egroups.com/group/jetty-discuss/?start=302 ... success ... you ... Hi Just, when...
Klaus
klausspd@...
Mar 15, 2000 9:29 am
311
Dear Jetty-Discussers, First my excuses for making all this noise. I found what was causing the thread eating: I have some pre-pushlet examples using ...
Just van den Broecke
justb@...
Mar 15, 2000 10:14 am
312
brett sealey <bret-@...> wrote: original article:http://www.egroups.com/group/jetty-discuss/?start=309 ... for a ... See my previous posting: a...
Just van den Broecke
justb@...
Mar 15, 2000 10:20 am
313
Klaus, if you set a resourceBase like "file:/mydirpath", then the second request is avoided and you get the "standard" resouce behaviour. cheers ... ===== -- ...
Greg Wilkins
gregjwilkins@...
Mar 15, 2000 10:20 am
314
... is avoided and you get the "standard" resouce behaviour. Is resourceBase part of the Servlet specification? I can't find it there. I looked up getResource...
Juancarlo Añez
juancarlo@...
Mar 15, 2000 1:17 pm
315
Greg, Actually, I dont exactly know how to make use of any ServletHolder/Handler that I create. I cant find any insertion point in any of the classes. In...
christopher.fahey@...
Mar 15, 2000 2:22 pm
316
I had an extended "debate" about this with the Jakarta people (including the Sun guys who wrote the servlet spec!). I thought that a resource should be...
Greg Wilkins
gregjwilkins@...
Mar 16, 2000 11:52 am
317
Chris, I'll reply to this in full over the weekend... cheers ... ===== -- Greg Wilkins <gregw@...> Mort Bay Consulting Australia and UK. GB Phone:...
Greg Wilkins
gregjwilkins@...
Mar 17, 2000 12:21 pm
318
Chris I think these are the things you need to do to use an already created object as a servlet.... Add a setServlet method to ServletHolder. Trivial...
Greg Wilkins
gregjwilkins@...
Mar 20, 2000 1:27 am
319
hi all, I'm using the Jetty 2.3.3 build and i'm using the gnujsp0.9 engine along with it. I tried several JSP demos without use of beans,everything seemed ok,...
Balaji Natarajan
balaji_nats@...
Mar 22, 2000 11:22 pm
320
hi balaji ... i am happy with http://rocketjsp.homepage.com it is for JSP 1.0 and works fine with useBean. are you sure that the JSP servlet can load the bean...
Klaus
klausspd@...
Mar 23, 2000 12:10 pm
321
Release 2.4.0 is now available via http://www.mortbay.com/software/Jetty.html This release has clicked up a minor release number as there have been some minor...
Greg Wilkins
gregjwilkins@...
Mar 23, 2000 5:28 pm
322
... Didn't know it was Indian. Sorry, couldn't resist. Brett...
Brett Sealey
brett@...
Mar 24, 2000 12:26 am
323
I tried a jsp test with the JettyDemp configuration, it doesn't seem to supprot jsp re-compilation ? The response page is always the original one....