Hi I get an error when trying to forward to a JSP page. The excert from my log file shows the problem where the session ID is being appended to the URI. ...
Fallowfield Paul
Paul.Fallowfield@...
May 1, 2001 8:54 am
1436
This release is a major restructuring of the packages to allow a minimal HTTP jar to be built (OK 200K is not exactly minimal - but I expected a bit of code...
Greg Wilkins
gregw@...
May 1, 2001 6:01 pm
1437
Hi. What the reason to take out a use of native setuid() function? It is very usefull feature and were present in previous releases. I want to present Jetty...
Arkadi E. Shishlov
arkadi@...
May 2, 2001 9:31 am
1438
The problem is with modern JVMs on some (most?) unixes. As java threads are now mapped to kernel threads, calling setuid only changes the UID of the current...
Greg Wilkins
gregw@...
May 2, 2001 9:58 am
1439
... I think it affects only Linux in native threads mode. ? ... But, it have root anyway. In less degree, but... And it sounds cumbersome... Maybe you can put...
Arkadi E. Shishlov
arkadi@...
May 2, 2001 10:30 am
1440
Hi Greg, just tried jetty 3.1.RC5. Thanks for ... and for ... Regarding the latter, i would like to suggest an additional small change to increase robustness. ...
Oliver Koell
oko@...
May 2, 2001 2:28 pm
1441
Is the IBM Dav servlet what people are using with Jetty? I looked at it and it looks nice-- unfortunately it depends on XML4j version 2.* and all I could find...
antrod2@...
May 6, 2001 4:00 am
1442
I just added basic support for running Jetty as a Win32 service to bint/jetty.bat. The change doesn't interfere with any of the previous functionality, so it ...
Juancarlo Anez
juancarlo@...
May 7, 2001 6:22 pm
1443
There was also a typo in the inclusion of the crimson library in the classpath. Fixed. Juanco...
Juancarlo Anez
juancarlo@...
May 8, 2001 11:32 am
1444
Juanco, thanks for this - can you put a few lines in the README about it. cheers ... -- Greg Wilkins<gregw@...> GB Phone: +44-(0)7092063462 ...
Greg Wilkins
gregw@...
May 8, 2001 4:01 pm
1445
jetty.bat had also a typo in the inclusion of the crimson (said cromson) library in the classpath. Fixed. Juanco...
Juancarlo Anez
juancarlo@...
May 8, 2001 7:52 pm
1446
Greg, ... Actually, I wasn't able to make v3.1 run as a service, no matter what I tried. v3.0.x works fine with the script, though. It may be anything from too...
Juancarlo Anez
juancarlo@...
May 8, 2001 7:52 pm
1447
I'm crossposting this to Jetty-Discuss, where you are likely to find the expertise... Jules ... connectionURL="jdbc:HypersonicSQL:hsql://localhost:1476" ... ...
Julian Gosnell
jules_gosnell@...
May 8, 2001 11:47 pm
1448
Did somebidy write a handler for for authorization ? Is there something I am missing about it in Jetty ? Thanks Pascal...
pascal@...
May 9, 2001 5:12 am
1449
Basic authentication is support. Form auth is not implemented - nobody has asked for it yet.... It can't be too difficult to do if you REALLY need it?? ... -- ...
Greg Wilkins
gregw@...
May 9, 2001 9:04 am
1450
Thanks of your quick answer. The problems I can see are : 1. Basic authentication is absolutely unsecure so useless. 2. Form authentication but other...
pascal@...
May 9, 2001 9:26 am
1451
... No, the whole file would be in EBCDIC. James is right, the idea is to take advantage of the known characters '<?xml'. Since the first few bytes depend ...
Robert Munyer
munyer@...
May 9, 2001 6:48 pm
1452
... No, the whole file would be in EBCDIC. James is right, the idea is to take advantage of the known characters '<?xml'. Since the first few bytes depend ...
Robert Munyer
munyer@...
May 9, 2001 7:22 pm
1453
It will be great to have form based authentication as it is certainly more elegant than just the plain basic authentication prompt. Moreover this will increase...
kokhoor@...
May 10, 2001 9:28 am
1454
It will be great to have form-based authentication as it is certainly more appealing compared to the simple basic authentication prompt. And this will increase...
kokhoor@...
May 10, 2001 9:31 am
1455
OK, it's on my short todo list.... But it is still looking like July before I'll get around to it. If others need it sooner - happy to take contributed...
Greg Wilkins
gregw@...
May 10, 2001 9:37 am
1456
I'm using Jetty 3.1 RC5. Referring to the com.mortbay.Jetty.Win32.Service class, in the createAll function, the following was used to create and configure a...
kokhoor@...
May 10, 2001 9:37 am
1457
I think you are doing the right thing. RC5 had a bit of a major restructuring of packages and methods. I have neglected win32 - like I always do.... I'll try...
Greg Wilkins
gregw@...
May 10, 2001 9:47 am
1458
For those of you who don't subscribe the the cvslog mailing list... last night I checked in a much requested feature, that being the ability to call statics...
Greg Wilkins
gregw@...
May 10, 2001 10:21 am
1459
That's nice to you... If I get some time to get around that I'll contribute; my todolist is quite busy to July too even if I stay in France and don't go back...
pascal@...
May 10, 2001 3:01 pm
1460
Pascal, Julian (cc'd) is working on the JBoss/Jetty authentication at the moment, so hopefully that will be available soon. cheers ... -- Greg...
Greg Wilkins
gregw@...
May 10, 2001 3:07 pm
1461
You might get an answer to this on jetty-discuss - I have cross-posted. Jules ... Hello JBoss(+Tomcat/Jetty) Users ... ...
Julian Gosnell
jules_gosnell@...
May 10, 2001 7:40 pm
1462
Hi, I have a web application running on Jetty-3.1.rc1 which uses a native library. I wanted to include this library into the jar file of the webapp and load it...
Hartmut Ferentschik
hardy@...
May 11, 2001 6:27 am
1463
Also you can try the getResource"("/") api as a way of finding a URL to the "real" loction of a web app (which may have been unpacked to a temp location). ...
Greg Wilkins
gregw@...
May 11, 2001 9:48 am
1464
I think the problem is with "System.loadLibrary" .resources in the web app are not on the system classpath. You will have to use the contexts classloader to...