I have created a configuration for HttpServer with a FileHandler and a ServletHandler. I have defined a style sheet which should be reachable by the File...
francois.meaude@...
Nov 2, 1999 9:54 am
199
... I'm not sure what you mean by Netscape loading your servlet. I have used Jetty and servlets to create HTML pages that use style sheets from the server. Is...
Kent Johnson
kjohnson@...
Nov 2, 1999 2:48 pm
200
Yes, I've seen the same behaviour (Netscape trying to save the stylesheet and crashing), but not consistently. I've seen it popping up when the server was busy...
justb@...
Nov 4, 1999 9:37 am
201
Under some circumstances I see strange behaviour with the BasicAuthHandler: - a file is kept being requested and Netscape loops (Win32) - the HTTP challenge...
justb@...
Nov 4, 1999 11:42 am
202
just-@... wrote: original article:http://www.egroups.com/group/jetty-discuss/?start=200 ... up ... and ... I ... use ... If ... I have solved my problem....
francois.meaude@...
Nov 8, 1999 8:30 am
203
Does anybody use the ServletContext implementation in Jetty 2.3.3 or even at all ? In Jetty 2.3.3, attributes in the servlet context seems to be stored in a...
Jesper Jørgensen
jesper@...
Nov 8, 1999 9:05 am
204
From: jesper@... [mailto:jesper@...] ... I've used it, but only for storing strings, so didn't notice the bug. Looks easy to fix though: Index:...
Preston L. Bannister
preston@...
Nov 8, 1999 4:13 pm
205
If content-type is: text/xml;charset="UTF-8" getChararacterEncoding returns the string "UTF-8" - which is to say, the string "\"UTF8\"". Also, the the...
thomasoa@...
Nov 11, 1999 2:39 pm
206
In DefaultExceptionHandler.handle(), the following lines PrintWriter pout=null; try{ pout=new PrintWriter(response.getWriter()); } catch(IllegalStateException...
Kent Johnson
kjohnson@...
Nov 17, 1999 3:14 pm
207
And to work properly on EBCDIC boxes this should be: PrintWriter pout=null; try { pout=new PrintWriter(response.getWriter()); } catch(IllegalStateException...
Preston L. Bannister
preston@...
Nov 17, 1999 11:11 pm
208
Does anyone know of optimization techniques for Jetty on NT? Also, I'm interested in the memory (ram)footprint as well. Any and all information would be...
alan@...
Nov 18, 1999 4:54 pm
209
testing .. please ignore....
alan@...
Nov 18, 1999 6:11 pm
210
OK so this is way of topic and complete noise for this mailing list, but I thought I´d say hi to the list anyway.... But firstly a few thing on topic - thanks...
Greg Wilkins
gregw@...
Nov 18, 1999 7:18 pm
211
Hi, I would like to know where stdout and stderr (System.out and System.err) go. Your response will be helpful. Thanks -Indu...
r9135c@...
Nov 25, 1999 10:06 pm
212
... Where they go by default will depend on your jvm. Assuming you just want to shunt (or even duplicate) the output to System.err and System.out then one...
Brett Sealey
brett@...
Nov 25, 1999 11:14 pm
213
I use method initArgObject(Object toInit) in com.mortbay.Servlets.ServletDispatch to populate public properties of toInit Object with parameters with matching...
adnan.music@...
Dec 3, 1999 7:25 am
214
May be this is a crazy idea, but could I replace Jetty's built-in servlet engine with another servlet engine and won't lose any functions that Jetty supports ?...
Stephen Kuo
skedin@...
Dec 8, 1999 7:20 pm
215
... A major goal of Jetty 3 is to decouple the HTTP engine from the servlet engine and to allow the use of the Tomcat servlet engine from the Jakarta project...
Kent Johnson
kjohnson@...
Dec 8, 1999 8:14 pm
216
kent johnson <kjohnso-@...> wrote: original article:http://www.egroups.com/group/jetty-discuss/?start=215 ... functions ... Thank you, you've...
Stephen Kuo
skedin@...
Dec 9, 1999 2:35 am
217
... What is Resin? ... I'm pretty sure you can use the HTML and JDBC packages without the Jetty HTTP and servlet server if you want. Kent...
Kent Johnson
kjohnson@...
Dec 9, 1999 2:09 pm
218
kent johnson <kjohnso-@...> wrote: original article:http://www.egroups.com/group/jetty-discuss/?start=217 ... Java ... Resin is a Servlets engine...
Stephen Kuo
skedin@...
Dec 9, 1999 7:34 pm
219
It seems possible that Jetty might be able to become SSL capable without having to pay money in the not to distant future, have a look at: ...
Brett Sealey
brett@...
Dec 15, 1999 1:13 pm
220
Since upgrading to 2.3.3 we've started gettign randome 404 errors that a reload always solves. From both servlets adn static pages. Any ideas?...
nwc@...
Dec 15, 1999 8:44 pm
221
I managed to get this working and posted the code and instructions to jetty-support. I was using the previous JSSE release so the code is quite gross in some...
court@...
Dec 16, 1999 1:06 pm
222
The famous German computer magazine "iX" did a testing on 6 servlet engines and servlet plugins. The candidates were: A) ServletExec 2.2 (with Apache 1.3.9) B)...
Klaus
klausspd@...
Dec 25, 1999 2:50 pm
223
Hi, I'm a new Jetty user, having discovered it two days ago, and I am truly impressed! It's a fine piece of engineering. I did manage to make it a full day...
Nathan Meyers
nmeyers@...
Dec 27, 1999 4:05 am
224
I think your analysis is correct. It sounds like you have the servlet class in the system classpath and in the servlet loader classpath. Take the servlet class...
Kent Johnson
kjohnson@...
Dec 27, 1999 4:00 pm
225
... Yep... you got me going in the right direction. Thanks! Nathan...
Nathan Meyers
nmeyers@...
Dec 27, 1999 7:24 pm
226
... The corollary to this observation is that I cannot avoid using the FileJarServletLoader unless I list all my servlet classes individually? Nathan Meyers ...
Nathan Meyers
nmeyers@...
Dec 27, 1999 8:54 pm
227
... I think that is correct. I _do_ list all my servlet classes individually because I don't want to have to refer to them by the full class name. Maybe...