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

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3571 - 3600 of 8501   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3571
Hi all, I am trying to deploy 1 ear file multiple times using JBoss/Jetty. Each ear file has a different root context. The problem is that if I access web app...
dthornton777
dthornton777@...
Send Email
Jun 1, 2002
11:12 pm
3572
I think you may have hit a JBoss problem with multiple EARs with wars or jars called the same thing. Jetty treats each war totally separately, so there should...
Greg Wilkins
gregjwilkins
Offline Send Email
Jun 1, 2002
11:43 pm
3573
Danny, Classes are not loaded within JBoss scoped by ear (currently, although I believe this may be changing) - essentially they form a flat namespace. ...
Jan Bartel
janbartel
Offline Send Email
Jun 2, 2002
10:30 am
3574
Actually it seems that scoped ear class loading has been added to JBoss3.0, so you may want to use that. Check out the info on the change note "[ 558189 ]...
Jan Bartel
janbartel
Offline Send Email
Jun 2, 2002
11:16 am
3575
There is a bit of a discussion going on at http://www.theserverside.com/home/thread.jsp?thread_id=13749 regarding the problems with tomcat and people are...
Greg Wilkins
gregjwilkins
Offline Send Email
Jun 3, 2002
8:39 am
3576
exactly what is the problem ? have you mailed Greg/jetty-discuss ? have you tried the same code on Tomcat ? Jules...
Jules Gosnell
jules_gosnell
Offline Send Email
Jun 3, 2002
10:09 pm
3577
I'm trying to move from the older JBoss/Jetty configuration (where Jetty was an add-on that could be used independently) to the new combined version (3.0)....
cmreigrut
chris@...
Send Email
Jun 4, 2002
5:09 am
3578
Hello, We are using Jetty (4.0) embedded in our own application, and are experiencing difficulties with POST requests. What I have noticed is that...
Heabdogg
Offline Send Email
Jun 4, 2002
4:03 pm
3579
I am writing a custom WebApplicationContext that will check HttpSession attributes before allowing access to a particular directory under the web application...
Barbara Baughman
baughman@...
Send Email
Jun 4, 2002
5:00 pm
3580
I am developing a custom WebApplicationContext that will secure one of the subdirectories under the web application. I want to be sure the user is...
bbaughman29
baughman@...
Send Email
Jun 4, 2002
5:12 pm
3581
What class is this method from? It looks like you are writing your own servlet handler. You probably want to write a servlet instead. Implement doGet() and...
Kent Johnson
kent3737
Offline Send Email
Jun 4, 2002
5:32 pm
3582
This is from our extension of NullHandler. We cannot use a servlet due to the static nature of servlets. There is some other processing that goes on which...
Heabdogg
Offline Send Email
Jun 4, 2002
6:27 pm
3583
I still can't get the point (looking at your code) where a servlet/filter is not enough for your needs. Could you extend more this point? Only trying to help,...
Ignacio Coloma
alu1344
Offline Send Email
Jun 4, 2002
6:37 pm
3584
I'm not 100% clear on exactly what you want to do but this might help. The contents of your jetty.xml is now a single embedded xml element ...
Jules Gosnell
jules_gosnell
Offline Send Email
Jun 4, 2002
6:51 pm
3585
You are using methods from the servlet spec outside of the context of the spec. There is really no reason to expect this to work. Take a look at what...
Kent Johnson
kent3737
Offline Send Email
Jun 4, 2002
7:06 pm
3586
There is much code that I did not post, as it is completely irrelevant to the http request. It has nothing to do with Jetty or even http for that matter, and...
Heabdogg
Offline Send Email
Jun 4, 2002
7:12 pm
3587
Please note I am **NOT** using the servlet spec. HttpHandler is outside the scope of the servlet spec. It is even in a different package. ...
Heabdogg
Offline Send Email
Jun 4, 2002
7:26 pm
3588
Scott, Can you replace your handler with the DumpHandler and see if the method reported is still GET. Actually, I just noticed that the dump handler does not...
Greg Wilkins
gregjwilkins
Offline Send Email
Jun 4, 2002
8:35 pm
3589
Hi, firstly there are lots of problems with the existing way that handlers interact with servlet sessions. But it can be done - look at the FilterHandler or...
Greg Wilkins
gregjwilkins
Offline Send Email
Jun 4, 2002
8:40 pm
3590
Greg, I did as you asked, replacing our handler with addHandler(new DumpHandler()); I also re-built Jetty4.0.1 with the addition of getMethod() being displayed...
Heabdogg
Offline Send Email
Jun 4, 2002
9:54 pm
3591
As a followup, here is the result of using formGET.html submitting to ... Dump HttpHandler path=/test/ contextPath=/test pathInContext=/ method=GET Header: GET...
Heabdogg
Offline Send Email
Jun 4, 2002
10:13 pm
3592
Can you run the Jetty demo and see if getMethod returns POST for you in that? We need to establish if the basic mechanism is working for you. I suspect that...
Greg Wilkins
gregjwilkins
Offline Send Email
Jun 4, 2002
10:15 pm
3593
JBoss-2.4.6_Jetty-4.0.1 ... I have just released JBoss-2.4.6_Jetty-4.0.1 to SourceForge : ...
Jules Gosnell
jules_gosnell
Offline Send Email
Jun 5, 2002
4:08 pm
3594
Development release 4.1.D0 is now available via http://jetty.mortbay.org The 4.0.x series focused on implementing the 2.3 servlet spec, while maintaining...
Greg Wilkins
gregjwilkins
Offline Send Email
Jun 5, 2002
4:19 pm
3595
Hello All , I have written one Server which is serving files using ResourceHandler and sends response to different requests using different Handlers other than...
sharmila punde
sharmilaspx@...
Send Email
Jun 5, 2002
4:47 pm
3596
Sharmila, this is not really a jetty specific question, so I'll only give you a short response here. The way to do server push is to use a multi-part mime...
Greg Wilkins
gregjwilkins
Offline Send Email
Jun 5, 2002
5:44 pm
3597
Recent talk about Handler / Context changes got me thinking about problems we've had moving to Jetty as a replacement for Apache. Historically our site ran...
Andrew Houghton
andrewahoughton
Offline Send Email
Jun 5, 2002
6:01 pm
3598
I take it the RequestDispatcher doesn't work for you?...
Kevin Duffey
supreme_java...
Online Now Send Email
Jun 5, 2002
7:53 pm
3599
Not unless I'm missing something. Using RequestDispatcher limits dispatches to the current Context. With Apache, I could use mod_rewrite and tell it to pass a...
Andrew Houghton
andrewahoughton
Offline Send Email
Jun 5, 2002
8:34 pm
3600
Andrew, I hear what you are saying and I have been trying to get time to finish the ProxyHandler in Jetty. It sort of works at the moment, but has a long way...
Greg Wilkins
gregjwilkins
Offline Send Email
Jun 5, 2002
9:42 pm
Messages 3571 - 3600 of 8501   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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