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@...
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...
Danny, Classes are not loaded within JBoss scoped by ear (currently, although I believe this may be changing) - essentially they form a flat namespace. ...
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 ]...
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...
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@...
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...
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@...
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@...
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...
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...
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,...
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...
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...
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...
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, 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...
As a followup, here is the result of using formGET.html submitting to ... Dump HttpHandler path=/test/ contextPath=/test pathInContext=/ method=GET Header: GET...
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...
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...
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@...
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...
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...
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, 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...