Jetty release 2.2.0 is now available on http://www.mortbay.com. The full list of changes since 2.1.x is listed below. Release 2.2.0 - 1 July 1999 + Improved...
Greg Wilkins
gregw@...
Jul 2, 1999 1:01 am
41
I have created a demonstration site to show Jetty working with Protekt SSL from FORGE. The URL is https://jetty.protekt.com Your browser will warn you about...
David Taylor
dtaylor@...
Jul 5, 1999 11:59 pm
42
Hi all, At the moment Jetty uses ';' to separate the content of any multiple HTTP headers with the same name. From HttpHeader.java:227 ... if (existing!=null) ...
Brett Sealey
brett@...
Jul 8, 1999 8:33 am
43
... getHeaderNoParams() is correct. It is used to get the media type from the Content-Type header without the associated parameters. For example given the...
Kent Johnson
kjohnson@...
Jul 8, 1999 1:32 pm
44
In com.mortbay.Util.PropertyTree - With debug turned on the following lines were causing some verbose output I didn't really want... private void...
E L
everlongh@...
Jul 8, 1999 6:07 pm
45
... Thanks Kent, I stand corrected on that point. Brett Sealey brett@... Locked Bag 6581 GPO Sydney NSW 1100 Australia 2nd Floor...
Brett Sealey
brett@...
Jul 8, 1999 11:50 pm
46
Sorry I have not been responding to your emails and bug reports, but I have been busy shaking the Jakarta tree to see what will fall out. So far lots of email...
Greg Wilkins
gregw@...
Jul 9, 1999 12:31 am
47
Hello - I am trying to get Jetty to run with servlets I have already written. It works fine with all of the demos but I get errors when trying to use my...
Josh Lucas
josh@...
Jul 13, 1999 1:51 pm
48
... Josh, Firstly, this should really have been sent to jetty-support@egroups.com, but... Jetty should handle more than 1 jar file without any problem. Make...
Greg Wilkins
gregw@...
Jul 13, 1999 10:02 pm
49
FORGE Information Technology have released a trial version of Protekt SSL 2.0. The trial version is exactly the same as the version you buy except it has only...
David Taylor
dtaylor@...
Jul 14, 1999 4:52 am
50
David, Thanks for adding SSL support to Jetty, however I'm curious about how much a Protekt server licence would cost. The forge web site is rather silent ...
Brett Sealey
brett@...
Jul 14, 1999 5:48 am
51
I'm trying to convert my old property file over to the new 2.2 format. I have a bunch of lines like: ServerCourse./.Servlet./servlet/b2.DisplayPage% : ...
Dan Finkelstein
danf@...
Jul 15, 1999 6:13 pm
52
I am trying to use HtmlFilter to insert dynamic content into an otherwise static page. The static page comes from a file, so it is fetched by FileHandler. Here...
Kent Johnson
kjohnson@...
Jul 15, 1999 7:37 pm
53
... I just realized, this is probably from a similar cause to the first problem. FileHandler sets Content-Length to the size of the file. The browser is...
Kent Johnson
kjohnson@...
Jul 15, 1999 7:45 pm
54
OK, sometimes just talking it through is all you need... HttpResponse.setHeader() with a null value removes a header. Removing the Last-Modified and...
Kent Johnson
kjohnson@...
Jul 15, 1999 8:39 pm
55
... Assuming that the line wrapping was just your MUA, not in the file, then it looks like it should be OK. I'm also assuming that the Servlet handler is still...
Brett Sealey
brett@...
Jul 16, 1999 12:40 am
56
... Wow - maybe I should get away from my email more often! Problems solve themselves!-) ... Will do. -- Greg Wilkins<gregw@...> GB Phone:...
Greg Wilkins
gregw@...
Jul 16, 1999 6:24 am
57
... [ ... ] It looks OK to me, except for the line wrap. Do you get any errors reading it or does it just give you 404s when you try to hit it? Try running ...
Greg Wilkins
gregw@...
Jul 16, 1999 6:40 am
58
Hi- Thanks for all the help. I'm almost there! I can now invoke the servlet with something like ...
Dan Finkelstein
danf@...
Jul 16, 1999 6:33 pm
59
... This is the root path for dynamic servlet loading. You need to use the full class name of the servlet for it to be found this way, e.g. ...
Kent Johnson
kjohnson@...
Jul 16, 1999 7:41 pm
60
Hi- Thanks for your pointer. With the pointer, I finally figured it out! But I think there are some anomolies in the configuration code. Here's my working ...
Dan Finkelstein
danf@...
Jul 16, 1999 11:12 pm
61
i am using a servlet to talk to an applet. sometimes the servlet sends only one char per line in this case HtmlFilter seems to not pass this char through. am i...
klausspd@...
Jul 18, 1999 5:47 pm
62
... DOH! There is a stupid bug in HtmlFilter. I did a '>' rather than a '>='! So any buffer that is only 1 byte long will not get written by write()! I'm...
Greg Wilkins
gregw@...
Jul 20, 1999 12:02 am
63
I need to embed some HTTP server functionality into an application. Basically, I'm just using HTTP messaging. Can anybody give me some basic help about where...
mattw@...
Jul 20, 1999 8:04 pm
64
In order to facilitate "community" support of the Jetty HTTP Server, the policies for the jetty-support@egroups.com mailing list have been changed. It is now...
Greg Wilkins
gregw@...
Jul 20, 1999 8:40 pm
65
... How far have you got? I'd try working along the following list: + Download Jetty, get it installed and running the demo server. + Look at all the demos in...
Greg Wilkins
gregw@...
Jul 20, 1999 10:52 pm
66
Hi- With the new Jetty 2.2.0, I'm having trouble setting the root directory of the server -- everything else is working. I'm using main.root.File.CLASS...
Dan Finkelstein
danf@...
Jul 20, 1999 11:19 pm
67
... You have things a little backwards. PATHS are the URL paths and DIRECTORY is the location in the file system (in native format). So try ...
Greg Wilkins
gregw@...
Jul 21, 1999 1:52 am
68
Hey, this is a very good idea. Didn't really think about using servlets in this fashion, but now that you mention it, I think it will work great. Thanks. ......
mattw@...
Jul 21, 1999 6:07 pm
69
That worked great!!! Many thanks! I now have migrated to 2.2.0 with everything working again. I came across one other item that might be a bug. In the...