tomcat 5.8.0 - weird response on HTTP OPTIONS method

2006-01-06 Thread mauro Bertapelle
Is it correct that coyote reply with the home page contents on an HTTP OPTIONS method request ? Client request: OPTIONS / HTTP/1.1\r\n Request Method: OPTIONS Request URI: / Request Version: HTTP/1.1 Translate: f\r\n User-Agent: Microsoft Data Access Internet

tomcat 5.8.0 - configuration problem with load balancer

2006-01-06 Thread KUNAL.PARMAR
Hi I am trying to load balance my tomcat server. Rule file is as below. rule className=org.apache.webapp.balancer.rules.URLStringMatchRule targetString=cadpush redirectUrl=http://10.22.11.29:8080/cadpush/servlet/CadPushEx?user=; / rule

tomcat 5.8.0 - weird response on HTTP OPTIONS method

2006-01-06 Thread Mauro Bertapelle
Is it correct that coyote reply with the home page contents on an HTTP OPTIONS method request ? Client request: OPTIONS / HTTP/1.1\r\n Request Method: OPTIONS Request URI: / Request Version: HTTP/1.1 Translate: f\r\n User-Agent: Microsoft Data Access Internet Publishing

Re: tomcat 5.8.0 - weird response on HTTP OPTIONS method

2006-01-06 Thread Remy Maucherat
Mauro Bertapelle wrote: Is it correct that coyote reply with the home page contents on an HTTP OPTIONS method request ? If you post another message on this list that belongs to the user list, I'll ban you. Rémy - To

Re: tomcat 5.8.0 - weird response on HTTP OPTIONS method

2006-01-06 Thread Mauro Bertapelle
oops, sorry I wasn't sure where to post it mauro -- Remy Maucherat ha scritto: Mauro Bertapelle wrote: Is it correct that coyote reply with the home page contents on an HTTP OPTIONS method request ? If you post another message on this list that belongs to the user list, I'll ban you.

Re: tomcat 5.8.0 - weird response on HTTP OPTIONS method

2006-01-06 Thread Remy Maucherat
Mauro Bertapelle wrote: oops, sorry I wasn't sure where to post it Ok. If you have questions about usage of Tomcat, you should post on [EMAIL PROTECTED] Rémy - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

svn commit: r366510 - /tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/TOMCAT_5_5_12/

2006-01-06 Thread yoavs
Author: yoavs Date: Fri Jan 6 06:35:40 2006 New Revision: 366510 URL: http://svn.apache.org/viewcvs?rev=366510view=rev Log: Copying tag from 5.5.11 to 5.5.12 as I apparently forgot to tag 5.5.12 at the time of release. Added: tomcat/servletapi/tags/servlet2.4-jsp2.0-tc5.x/TOMCAT_5_5_12/

Re: Missing tag in SVN

2006-01-06 Thread Yoav Shapira
This is done now... Thanks for pointing it out, Yoav On 1/5/06, Mark Thomas [EMAIL PROTECTED] wrote: Yoav Shapira wrote: So I guess I should just do an svn copy of servletapi from 5.5.11 to 5.5.12 to tag it as such. I don't need to do anything fancier like an svn:prop edit, right?

DO NOT REPLY [Bug 38012] - CGIServlet redirect

2006-01-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=38012. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

Re: tomcat 5.8.0 - weird response on HTTP OPTIONS method

2006-01-06 Thread Costin Manolache
I'm curious - why would you need the options method ? Obviously, as you found, tomcat does not support it ( and many other servers ), and I never heard of any use of it, even if it is in the spec. Well, in theory servlets could respond to 'options' method if they choose to - and so could the

Re: EL and JSP 2.1

2006-01-06 Thread Costin Manolache
On 12/27/05, Mark Thomas [EMAIL PROTECTED] wrote: My own views in line. Mark Mark Thomas wrote: Jacob Hookom wrote: I'd like to get the ball rolling on a branch for JSP 2.1. I can get the SVN stuff set up over the next few days. There has been some debate about how we arrange

DO NOT REPLY [Bug 38167] New: - tomcat 5.0.30 hangs at sun.util.calendar.ZoneInfo.getOffsets(ZoneInfo.java:215)

2006-01-06 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=38167. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

Re: tomcat 5.8.0 - weird response on HTTP OPTIONS method

2006-01-06 Thread Mauro Bertapelle
Costin, I'm tweaking with internet explorer and his web folder feature (access to webdav resource). When accessing a webdav resource, ie fire a lot of OPTIONS requests, not only to the specified url but as you see from my example even to the / uri which is obviously catched by the default

Re: Facing problem when 2 simultaneous requests are sent to tomcat.

2006-01-06 Thread Mark Thomas
This belongs on the users list. Please read http://tomcat.apache.org/lists.html Mark [EMAIL PROTECTED] Uttam wrote: Hi All, I am a newbei using the Tomcat server in my application. *Sorry all, I gave a wrong information*. I am using *Apache Tomcat 5.512* server and not 5.0.28. JDK

Re: tomcat 5.8.0 - weird response on HTTP OPTIONS method

2006-01-06 Thread Costin Manolache
Interesting. Well, Remy is the expert in webdav, but I guess you'll need to talk with him on the users list :-) I suppose the default servlet could handle 'options', since it's part of the standard, but for regular servlets there is nothing to be done, it's up to them to implement whatever

Re: EL and JSP 2.1

2006-01-06 Thread Yoav Shapira
Hi, I'm actually +1 to more or less everything Costin said ;) Yoav On 1/6/06, Costin Manolache [EMAIL PROTECTED] wrote: On 12/27/05, Mark Thomas [EMAIL PROTECTED] wrote: My own views in line. Mark Mark Thomas wrote: Jacob Hookom wrote: I'd like to get the ball rolling on a

Re: tomcat 5.8.0 - weird response on HTTP OPTIONS method

2006-01-06 Thread Keith Wannamaker
Tomcat handles it just fine -- if you implement it in your servlet :-) Options conveys not only whether a resource is dav-enabled and the class of dav support, but it has a well-defined xml response body for a number of ACL and DeltaV properties, all of which needs to be handled by the

Re: tomcat 5.8.0 - weird response on HTTP OPTIONS method

2006-01-06 Thread Costin Manolache
I guess the problem was that the default servlet ( part of tomcat ) doesn't handle options for static files like /, instead returns the page as if it would be a GET. I tried on www.apache.org - and apache seems to return the right thing ( no body, etc ). Costin On 1/6/06, Keith Wannamaker

Re: tomcat 5.8.0 - weird response on HTTP OPTIONS method

2006-01-06 Thread Mauro Bertapelle
Costin, you've got the point I was trying to make, this has nothing to do with webdav and the naive way in which ie implements it, but probably Tomcat should handle options better when it's acting as a static web server. Mauro -- Costin Manolache wrote: I guess the problem was that the