Search the web
Sign In
New User? Sign Up
jetty-support · Jetty Support
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 4315 - 4344 of 10422   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4315
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 :) ...
Greg Wilkins
gregjwilkins
Offline Send Email
Nov 1, 2002
10:13 am
4316
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...
Greg Wilkins
gregjwilkins
Offline Send Email
Nov 1, 2002
10:19 am
4317
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 ... ...
Chris Bailey
christopherr...
Offline Send Email
Nov 1, 2002
10:48 am
4318
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...
Tony Thompson
swtet
Offline Send Email
Nov 1, 2002
10:49 am
4319
Chris, Jasons showed his results of his test with with wget, and the content type was diplayed correctly. Note that I probably should set a default...
Greg Wilkins
gregjwilkins
Offline Send Email
Nov 1, 2002
11:06 am
4320
Are you using mod_jk and AJP13? Chris Bailey wrote:> I updated to 4.1.3 (from 4.1.0) and still get the same results. ... -- Greg Wilkins<gregw@...>...
Greg Wilkins
gregjwilkins
Offline Send Email
Nov 1, 2002
11:12 am
4321
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...
Tony Thompson
swtet
Offline Send Email
Nov 1, 2002
3:42 pm
4322
... 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...
Metal Fatigue
metalfatigue0
Offline Send Email
Nov 1, 2002
3:57 pm
4323
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...
Greg Wilkins
gregjwilkins
Offline Send Email
Nov 1, 2002
3:57 pm
4324
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...
Tony Thompson
swtet
Offline Send Email
Nov 1, 2002
4:12 pm
4325
From the 3.1 resource handler: // check if directory if (resource.isDirectory()) { if (!endsWithSlash && !pathInContext.equals("/")) { Code.debug("Redirect to...
Greg Wilkins
gregjwilkins
Offline Send Email
Nov 1, 2002
4:58 pm
4326
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...
Chris Bailey
christopherr...
Offline Send Email
Nov 1, 2002
5:28 pm
4327
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...
Chris Bailey
christopherr...
Offline Send Email
Nov 1, 2002
5:47 pm
4328
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...
Greg Wilkins
gregjwilkins
Offline Send Email
Nov 1, 2002
5:55 pm
4329
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 ...
Chris Bailey
christopherr...
Offline Send Email
Nov 1, 2002
5:57 pm
4330
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...
Greg Wilkins
gregjwilkins
Offline Send Email
Nov 1, 2002
5:59 pm
4331
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...
Tony Thompson
swtet
Offline Send Email
Nov 1, 2002
6:07 pm
4332
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 Wilkins
gregjwilkins
Offline Send Email
Nov 1, 2002
6:20 pm
4333
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. ... ...
Chris Bailey
christopherr...
Offline Send Email
Nov 1, 2002
6:22 pm
4334
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...
Chris Bailey
christopherr...
Offline Send Email
Nov 1, 2002
6:40 pm
4335
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...
Greg Wilkins
gregjwilkins
Offline Send Email
Nov 2, 2002
10:55 am
4336
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...
Greg Wilkins
gregjwilkins
Offline Send Email
Nov 2, 2002
5:05 pm
4337
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...
Chris Bailey
christopherr...
Offline Send Email
Nov 3, 2002
12:04 am
4338
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...
Greg Wilkins
gregjwilkins
Offline Send Email
Nov 3, 2002
8:29 am
4339
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@...
Send Email
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...
Greg Wilkins
gregjwilkins
Offline Send Email
Nov 4, 2002
9:20 am
4341
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 Matthews
grmatthews55
Offline Send Email
Nov 4, 2002
9:54 am
4342
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...
Greg Wilkins
gregjwilkins
Offline Send Email
Nov 4, 2002
11:43 am
4343
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_dunkerley
Offline Send Email
Nov 4, 2002
11:50 am
4344
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 ...
Greg Wilkins
gregjwilkins
Offline Send Email
Nov 4, 2002
12:19 pm
Messages 4315 - 4344 of 10422   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help