Sounds like you are using an old buggy version of AJP13 listener? Can you try 4.1.3 or 4.2.0rc0? cheers Chris Bailey wrote:> Sorry, ya, forgot some details :) ...
Jetty normally does a redirect from /context to /context/ otherwise their is no servlet path - which is illegal in the spec. I just tested this in 3.1.9 and...
I updated to 4.1.3 (from 4.1.0) and still get the same results. ... <http://rd.yahoo.com/M=237459.2482214.3917349.2146399/D=egroupweb/S=17053756 ... ...
Hmmmm....when I turn on debug, Jetty acts like it wants to do a redirect: + WebApplicationContext[/help,jar:file:/S:/stoneware/ext/SWHelp.war!/] consumed all...
Jetty 3.1.9 works. I have a follow-up though. Should the same thing work for a directory inside of the web application? For example, /help/admin returns a...
... G> What are the groups thoughts - should I always set a content-type? Yes. Isn't it required? -- Seth Blumberg, a.k.a. Metal Fatigue, a.k.a. Nodens...
If the request falls through to a resource handler, then /context/dir should be redirected to /context/dir/ cheers Tony Thompson wrote:> Jetty 3.1.9 works. I...
OK...there is a ResourceHandler started in the web application (Jetty added it itself). It will actually serve up the HTML if I request it as /context/dir/ so...
From the 3.1 resource handler: // check if directory if (resource.isDirectory()) { if (!endsWithSlash && !pathInContext.equals("/")) { Code.debug("Redirect to...
Ya, I meant to say something about the AJP comment... I'm not using Apache at all. I'm running Jetty as an embedded server, and it is serving all content. I...
You're absolutely right (of course). Ugh, the way I was viewing Jason's message in my mail client, I didn't even see the results below (I only saw the...
Oh :-( Jetty 4.1.x has been pretty rock solid - no other reported protocol errors like this?!?!?!! Try verbose debug - try and see what headers are going back...
Ok, well, I figured it out, so this is actually an apology for wasting folks time. It turns out the reason it wasn't working, was because of a different ...
Can you tripple check the mime mapping in your web.xml. It works fine for me. I've put a fix into 4.2 that implements a default mapping, so a content type is...
I am deploying my web app in a WAR and that is the problem. If I extract the WAR, it works as advertised. I don't really want to extract the WAR so, I guess...
No problem - you at least brought it to our attention that default mime mapping was broken. If it had been working, you would have never noticed your lack of...
Greg, as you'll see from my other mail, I totaly screwed up. As for the default mapping, good deal, thanks. I'll look for the next version of 4.1. ... ...
Ok, so I have -DDEBUG, logging to a file, and -DDEBUG_VERBOSE=99. If I'm reading through the log right, what it looks like in pseudo English is: - Request...
The code looks good. You hopefully do not need the %20 anymore as we have made some fixes for that. You may still see some warnings when you have debug...
It appears that I took out the default MIME mapping because of a watchdog test. Now that it is back in, I'm failing a watchdog test. So for now, the default...
Ok, I set the cache to zero, via HttpContext.setMaxCacheSize and setMaxCachedFileSize (not sure if I need both these, or which one, etc.). Anyway, bummer, the...
You should not be getting cache hits of the cache size is zero. Note that I noticed that I'm not clearing the cache on a start/stop, so you may be hitting...
Hi, I'm new to Jetty and using it for a 4th year project application at the University of Toronto. I have spent a few days reading the Javadocs, and I seem to...
uc_offcampus
elena.garderman@...
Nov 3, 2002 8:00 pm
4340
Elena, I'm not sure why you are asking such a detailed question? Unless you are doing something very fancy you don't have to be concerned with passing anything...
Dear all, I've downloaded the new JBoss-3.0.4 that has the webdefault.xml file external to the various jetty jar files. I want to deploy an .ear file and also...
Greg, Why are you trying to manually set the JSP classpath? If you do not set it yourself, Jetty will take it's best guess at it, which is often correct if all...
I am currently porting my application from Tomcat 4 to Jetty. The only major problem I have got is with regard to passwords. The application is set up to use...
Phil, The JDBCUserRealm is a very under-documented class (even by Jetty standards). It does not support MD5 digests directly - however it should be simple to ...