Question about patch submission

2002-07-02 Thread Russ Trotter
Hey all, Quick question about patch submission: I submitted a patch a week or so ago and was curious if it was even received or acknowledged or anything or simply diverted to /dev/null. If it was rejected is there any protocol for the submitter getting notice or anything? thx, russ -- To

Re: Valves, requests and getting the session

2002-07-01 Thread Russ Trotter
I don't know if you've considered this, but why not just make a Filter (ala Servlet 2.3) instead of a valve? They are more "portable" to other containers and should have less quirky behavior than you see now with valves. I use a filter to do a very similar operation where I check the session

[PATCH] Patch to allow more flexible WebdavServlet/DefaultServlet operation

2002-06-25 Thread Russ Trotter
Two patches attached, catalina/src/share/org/apache/catalina/servlets/DefaultServlet.java catalina/src/share/org/apache/catalina/servlets/WebdavServlet.java There are two main pieces to this patch: 1) The addition of an "isDefaultServlet" initialization parameter to the WebdavServlet Thi

[PATCH] Patch to allow more flexible WebdavServlet/DefaultServlet operation

2002-06-24 Thread Russ Trotter
Two patches attached, catalina/src/share/org/apache/catalina/servlets/DefaultServlet.java catalina/src/share/org/apache/catalina/servlets/WebdavServlet.java There are two main pieces to this patch: 1) The addition of an "isDefaultServlet" initialization parameter to the WebdavServlet Thi

proposed minor change to WebdavServlet

2002-06-20 Thread Russ Trotter
Hello, I'm proposing a minor change to WebdavServlet. In my application, I need the actually docBase of the inner-most DirContext to be dynamic dependent on request/session data. I was thinking of the following: Create a method like this in WebdavServlet: protected DirContext getResour

Tomcat 4.0.3, WebdavServlet and Konqueror

2002-05-17 Thread Russ Trotter
Hello, I'm having a problem Tomcat's built-in WebdavServlet "/webdav" from Konqueror. basically, konq is just hanging trying to hit the base "/webdav" URL. I stepped through the WebdavServlet code and noticed it was hanging trying to parse XML data over a call to req.getInputStream(). My

Re: servlet-path, path-info and Filters

2002-02-07 Thread Russ Trotter
mcat Developers List" <[EMAIL PROTECTED]> Sent: Thursday, February 07, 2002 9:09 AM Subject: Re: servlet-path, path-info and Filters > > > On Wed, 6 Feb 2002, Russ Trotter wrote: > > > Date: Wed, 6 Feb 2002 23:04:40 -0700 > > From: Russ Trotter <[EMAIL PROTE

Re: servlet-path, path-info and Filters

2002-02-07 Thread Russ Trotter
Thank for your response Craig. Just re-read SRV.11 (for the umpteenth time!) So just so I have understanding, whatever resource (either static file, servlet, etc) the filter is filtering is irrelavent in determining what is returned from getServletPath(), getPathInfo() _in the filter_? >From wh

servlet-path, path-info and Filters

2002-02-06 Thread Russ Trotter
Does anyone here know what the official correct handling of ServletRequest.getServletPath() and ServletRequest.getPathInfo() should be? More specifically, if I specify a filter with an url-pattern of "/files/*" and I make a request to "/context/files/foo.jpg", what should getServletPath() and getP