DO NOT REPLY [Bug 44679] Cookies are treated differently between 6.0.16 and 6.0.14
https://issues.apache.org/bugzilla/show_bug.cgi?id=44679 --- Comment #24 from Mark Thomas <[EMAIL PROTECTED]> 2008-10-13 00:11:41 PST --- To repeat Filip's question, what value does new BASE64Encoder().encode(token.getBytes())) return? -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r703976 - /tomcat/connectors/trunk/jk/xdocs/reference/iis.xml
Author: mturk Date: Mon Oct 13 01:58:07 2008 New Revision: 703976 URL: http://svn.apache.org/viewvc?rev=703976&view=rev Log: Document new IIS environmet vars Modified: tomcat/connectors/trunk/jk/xdocs/reference/iis.xml Modified: tomcat/connectors/trunk/jk/xdocs/reference/iis.xml URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/xdocs/reference/iis.xml?rev=703976&r1=703975&r2=703976&view=diff == --- tomcat/connectors/trunk/jk/xdocs/reference/iis.xml (original) +++ tomcat/connectors/trunk/jk/xdocs/reference/iis.xml Mon Oct 13 01:58:07 2008 @@ -273,6 +273,22 @@ +Starting with version 1.2.27 two environment variables are +dynamically added to the environment that can be used inside +.properties files. + +JKISAPI_PATH - Full path to the ISAPI Redirector. + +JKISAPI_NAME - Name of the ISAPI Redirector dll without extension + + + + + +# Use the logs in the installation path of ISAPI Redirector +log_file=$(ISAPI_PATH)\$(ISAPI_NAME).log + + - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45995] New: RFE - MIME type extension not case sensitive
https://issues.apache.org/bugzilla/show_bug.cgi?id=45995 Summary: RFE - MIME type extension not case sensitive Product: Tomcat 6 Version: unspecified Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: Catalina AssignedTo: dev@tomcat.apache.org ReportedBy: [EMAIL PROTECTED] Hi, On the dev-tomcat list I described in the topic "Byte Serving and PDFs with the DefaultServlet" an issue that I had with Tomcat to serve PDFs. Analysing the answers I could find that the matter was related to the case of the file extension. Today Tomcat is case sensitive for MIME type extensions. So the solution for me was enter two MIME specifications on the web.xml file. One is for "pdf" and another one for "PDF". This way I would like to ask for and request for enhancement to make Tomcat be able to, due a setup on configuration file, consider or not case for MIME type extensions. Regards, Vitor -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45996] MIME type case insentive for Tomcat and allow byte serving with HTTP response header
https://issues.apache.org/bugzilla/show_bug.cgi?id=45996 --- Comment #1 from Mark Thomas <[EMAIL PROTECTED]> 2008-10-13 04:58:32 PST --- I've propose a backport of the Accept-Ranges fix for 5.5.x -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r704048 - /tomcat/current/tc5.5.x/STATUS.txt
Author: markt Date: Mon Oct 13 05:05:37 2008 New Revision: 704048 URL: http://svn.apache.org/viewvc?rev=704048&view=rev Log: Propose a requested backport Modified: tomcat/current/tc5.5.x/STATUS.txt Modified: tomcat/current/tc5.5.x/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/current/tc5.5.x/STATUS.txt?rev=704048&r1=704047&r2=704048&view=diff == --- tomcat/current/tc5.5.x/STATUS.txt (original) +++ tomcat/current/tc5.5.x/STATUS.txt Mon Oct 13 05:05:37 2008 @@ -124,3 +124,9 @@ http://svn.apache.org/viewvc?rev=702219&view=rev +1: markt -1: + +* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=45996 + Add Accept-Range header to DefaultServlet response + http://svn.apache.org/viewvc?rev=696408&view=rev + +1: mark + -1: - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r703993 - /tomcat/connectors/trunk/jk/native/apache-2.0/Makefile.vc
Author: mturk Date: Mon Oct 13 02:52:28 2008 New Revision: 703993 URL: http://svn.apache.org/viewvc?rev=703993&view=rev Log: Use correct winsock libs Modified: tomcat/connectors/trunk/jk/native/apache-2.0/Makefile.vc Modified: tomcat/connectors/trunk/jk/native/apache-2.0/Makefile.vc URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/apache-2.0/Makefile.vc?rev=703993&r1=703992&r2=703993&view=diff == --- tomcat/connectors/trunk/jk/native/apache-2.0/Makefile.vc (original) +++ tomcat/connectors/trunk/jk/native/apache-2.0/Makefile.vc Mon Oct 13 02:52:28 2008 @@ -63,7 +63,7 @@ BSC32_SBRS= \ LINK32=link.exe -LINK32_FLAGS=libhttpd.lib $(APR_LIB) $(APU_LIB) kernel32.lib user32.lib advapi32.lib wsock32.lib /nologo /base:"0x6A6B" /subsystem:windows /dll /incremental:no /pdb:"$(OUTDIR)\mod_jk.pdb" /debug /machine:I386 /out:"$(OUTDIR)\mod_jk.so" /implib:"$(OUTDIR)\mod_jk.lib" /libpath:"$(APACHE2_HOME)\lib" /opt:ref +LINK32_FLAGS=libhttpd.lib $(APR_LIB) $(APU_LIB) kernel32.lib user32.lib advapi32.lib mswsock.lib ws2_32.lib /nologo /base:"0x6A6B" /subsystem:windows /dll /incremental:no /pdb:"$(OUTDIR)\mod_jk.pdb" /debug /machine:I386 /out:"$(OUTDIR)\mod_jk.so" /implib:"$(OUTDIR)\mod_jk.lib" /libpath:"$(APACHE2_HOME)\lib" /opt:ref LINK32_OBJS= \ "$(INTDIR)\jk_ajp12_worker.obj" \ "$(INTDIR)\jk_ajp13.obj" \ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 44679] Cookies are treated differently between 6.0.16 and 6.0.14
https://issues.apache.org/bugzilla/show_bug.cgi?id=44679 --- Comment #25 from Tristan Tarrant <[EMAIL PROTECTED]> 2008-10-13 05:09:06 PST --- (In reply to comment #24) > To repeat Filip's question, what value does > > new BASE64Encoder().encode(token.getBytes())) > > return? > For example FYeqC65bZGVSlPe4Q4iCRhXxOXZ4iN8QrOsQXhYV1bUOmipkRgc9H7cZ9DdQ66+UESCSg3feeMM= BASE64 uses the following characters: ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/ and "=" as a padding character at the end. My question: is the "=" (and the "+" in the middle of the above string) legal when quoted as a version 1 cookie ? -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45996] New: MIME type case insentive for Tomcat and allow byte serving with HTTP response header
https://issues.apache.org/bugzilla/show_bug.cgi?id=45996 Summary: MIME type case insentive for Tomcat and allow byte serving with HTTP response header Product: Tomcat 5 Version: 5.5.27 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P5 Component: Catalina AssignedTo: dev@tomcat.apache.org ReportedBy: [EMAIL PROTECTED] Hi, On the dev-tomcat list I described in the topic "Byte Serving and PDFs with the DefaultServlet" an issue that I had with Tomcat to serve PDFs. Analysing the answers I could find that the matter was related to the case of the file extension. Today Tomcat is case sensitive for MIME type extensions. So the solution for me was enter two MIME specifications on the web.xml file. One is for "pdf" and another one for "PDF". This way I would like to ask for and request for enhancement to make Tomcat be able to, due a setup on configuration file, consider or not case for MIME type extensions. About the HTTP response header, I would like to have "useAcceptRanges" Feature as default for src.share.org.apache.catalina.servlets.DefaultServlet. It was already added on Tomcat after 6.0.18. Regards, Vitor -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
JK 1.2.27-dev snapshot
Hi, I'd like to tag and release 1.2.27 pretty soon (this week) Here is the release snapshot for testing. http://people.apache.org/~mturk/jk-1.2.27-dev/ The binaries provided are for win32 for tester convenience. Please test, and if nothing bad found I'll tag the 1.2.27 in cca. 36 hours. Regards -- ^(TM) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 44679] Cookies are treated differently between 6.0.16 and 6.0.14
https://issues.apache.org/bugzilla/show_bug.cgi?id=44679 --- Comment #26 from Mark Thomas <[EMAIL PROTECTED]> 2008-10-13 07:41:18 PST --- That value works for me and is perfectly legal for a quoted version 1 cookie (as are all the characters you list) I don't see anything invalid in Tomcat's behaviour. You will be better served using the users list for further assistance. It would help to provide the value that is causing the error. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r703970 - /tomcat/connectors/trunk/jk/xdocs/reference/iis.xml
Author: mturk Date: Mon Oct 13 01:47:47 2008 New Revision: 703970 URL: http://svn.apache.org/viewvc?rev=703970&view=rev Log: Document new IIS configuration directives Modified: tomcat/connectors/trunk/jk/xdocs/reference/iis.xml Modified: tomcat/connectors/trunk/jk/xdocs/reference/iis.xml URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/xdocs/reference/iis.xml?rev=703970&r1=703969&r2=703970&view=diff == --- tomcat/connectors/trunk/jk/xdocs/reference/iis.xml (original) +++ tomcat/connectors/trunk/jk/xdocs/reference/iis.xml Mon Oct 13 01:47:47 2008 @@ -199,6 +199,34 @@ This directive has been added in version 1.2.27 + +A string value representing the error page url redirection when +backend returns non-200 response. This directive can be used +to customise the error messages returned from backend server. + +The url must point to a valid server url and can contain +format string number (%d) that can be used to +separate the pages by error number. The redirect url in that +case is formatted by replacing %d from +error_page to returned error number. + +This directive has been added in version 1.2.27 + + +A string value representing a boolean. If it is set to true, +chunked encoding is supported by the server. + + +A true value can be represented by the string "1" or any string starting +with the letters "T" or "t". A false value will be assumed for "0" +or any string starting with "F" or "f". The default value is false. + +This option is considered experimental and its support +must be compile time enabled. Use isapi_redirect.dll +with chunked support enabled. + +This directive has been added in version 1.2.27 + - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r703982 - /tomcat/connectors/trunk/jk/xdocs/reference/iis.xml
Author: mturk Date: Mon Oct 13 02:13:35 2008 New Revision: 703982 URL: http://svn.apache.org/viewvc?rev=703982&view=rev Log: Fix typo Modified: tomcat/connectors/trunk/jk/xdocs/reference/iis.xml Modified: tomcat/connectors/trunk/jk/xdocs/reference/iis.xml URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/xdocs/reference/iis.xml?rev=703982&r1=703981&r2=703982&view=diff == --- tomcat/connectors/trunk/jk/xdocs/reference/iis.xml (original) +++ tomcat/connectors/trunk/jk/xdocs/reference/iis.xml Mon Oct 13 02:13:35 2008 @@ -288,7 +288,7 @@ # Use the logs in the installation path of ISAPI Redirector log_file=$(ISAPI_PATH)\$(ISAPI_NAME).log - + - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45997] New: Non-secure HTTP Connector with secure="true" results in exception
https://issues.apache.org/bugzilla/show_bug.cgi?id=45997 Summary: Non-secure HTTP Connector with secure="true" results in exception Product: Tomcat 5 Version: 5.5.26 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Connector:HTTP AssignedTo: dev@tomcat.apache.org ReportedBy: [EMAIL PROTECTED] Tomcat 5.5.26 with the following configuration (which is identical to that provided in the example server.xml that ships with TC 5.5.26 plus the secure="true" attribute): I get the following exception: java.io.FileNotFoundException: /home/chris/.keystore (No such file or directory) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.(FileInputStream.java:106) at org.apache.tomcat.util.net.jsse.JSSESocketFactory.getStore(JSSESocketFactory.java:284) Removing the secure="true" attribute results in a successful startup (as expected). Tomcat 6.0.18 with the following configuration (which is the default that ships with TC 6.0.18 plus the secure="true" attribute): Successful startup. Using HTTP, a test JSP reports that request.isSecure() returns true, which is exactly what Filip claims. It appears that the behavior of TC 6.0 and 5.5 are not the same. My expectation is that an HTTP Connector configured with secure="true" would result in an HTTP connector being created that returns true for request.isSecure() (as TC 6.x does). -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r704015 - in /tomcat/connectors/trunk/jk: native/common/ xdocs/miscellaneous/ xdocs/reference/
Author: mturk Date: Mon Oct 13 04:31:00 2008 New Revision: 704015 URL: http://svn.apache.org/viewvc?rev=704015&view=rev Log: Add socket_connect_timeout, as per mod_proxy Modified: tomcat/connectors/trunk/jk/native/common/jk_ajp12_worker.c tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c tomcat/connectors/trunk/jk/native/common/jk_ajp_common.h tomcat/connectors/trunk/jk/native/common/jk_connect.c tomcat/connectors/trunk/jk/native/common/jk_connect.h tomcat/connectors/trunk/jk/native/common/jk_util.c tomcat/connectors/trunk/jk/native/common/jk_util.h tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml tomcat/connectors/trunk/jk/xdocs/reference/workers.xml Modified: tomcat/connectors/trunk/jk/native/common/jk_ajp12_worker.c URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/common/jk_ajp12_worker.c?rev=704015&r1=704014&r2=704015&view=diff == --- tomcat/connectors/trunk/jk/native/common/jk_ajp12_worker.c (original) +++ tomcat/connectors/trunk/jk/native/common/jk_ajp12_worker.c Mon Oct 13 04:31:00 2008 @@ -127,7 +127,7 @@ attempt++) { p->sd = jk_open_socket(&p->worker->worker_inet_addr, - JK_FALSE, 0, 0, l); + JK_FALSE, 0, 0, 0, l); jk_log(l, JK_LOG_DEBUG, "In jk_endpoint_t::service, sd = %d", p->sd); Modified: tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c?rev=704015&r1=704014&r2=704015&view=diff == --- tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c (original) +++ tomcat/connectors/trunk/jk/native/common/jk_ajp_common.c Mon Oct 13 04:31:00 2008 @@ -913,6 +913,7 @@ ae->sd = jk_open_socket(&ae->worker->worker_inet_addr, ae->worker->keepalive, ae->worker->socket_timeout, +ae->worker->socket_connect_timeout, ae->worker->socket_buf, l); if (!IS_VALID_SOCKET(ae->sd)) { @@ -2509,6 +2510,10 @@ p->socket_timeout = jk_get_worker_socket_timeout(props, p->name, AJP_DEF_SOCKET_TIMEOUT); +p->socket_connect_timeout = +jk_get_worker_socket_connect_timeout(props, p->name, + p->socket_timeout * 1000); + p->keepalive = jk_get_worker_socket_keepalive(props, p->name, JK_FALSE); @@ -2591,51 +2596,55 @@ "setting endpoint options:", p->keepalive); jk_log(l, JK_LOG_DEBUG, - "keepalive:%d", + "keepalive: %d", p->keepalive); jk_log(l, JK_LOG_DEBUG, - "timeout: %d", + "socket timeout: %d", p->socket_timeout); jk_log(l, JK_LOG_DEBUG, - "buffer size: %d", + "socket connect timeout: %d", + p->socket_connect_timeout); + +jk_log(l, JK_LOG_DEBUG, + "buffer size:%d", p->socket_buf); jk_log(l, JK_LOG_DEBUG, - "pool timeout: %d", + "pool timeout: %d", p->cache_timeout); jk_log(l, JK_LOG_DEBUG, - "ping timeout: %d", + "ping timeout: %d", p->ping_timeout); jk_log(l, JK_LOG_DEBUG, - "connect timeout: %d", + "connect timeout:%d", p->connect_timeout); jk_log(l, JK_LOG_DEBUG, - "reply timeout:%d", + "reply timeout: %d", p->reply_timeout); jk_log(l, JK_LOG_DEBUG, - "prepost timeout: %d", + "prepost timeout:%d", p->prepost_timeout); jk_log(l, JK_LOG_DEBUG, - "recovery options: %d", + "recovery options: %d", p->recovery_opts); jk_log(l, JK_LOG_DEBUG, - "retries: %d", + "retries:%d", p->retries); jk_log(l, JK_LOG_DEBUG, - "max packet size: %d", + "max packet size:%d", p->max_packet_size); jk_log(l, JK_LOG_DEBUG, - "retry interval: %d", + "retry interval: %d", p->retry_interval); }
DO NOT REPLY [Bug 45997] Non-secure HTTP Connector with secure="true" results in exception
https://issues.apache.org/bugzilla/show_bug.cgi?id=45997 Filip Hanik <[EMAIL PROTECTED]> changed: What|Removed |Added Status|NEW |RESOLVED Resolution||INVALID --- Comment #1 from Filip Hanik <[EMAIL PROTECTED]> 2008-10-13 09:46:32 PST --- The ability to set secure=true but not use SSL is a new feature in Tomcat 6, and not a bug in 5.5.x -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45999] New: Tomcat 5.5.17 won't start service with Java 1.6_5+ installed
https://issues.apache.org/bugzilla/show_bug.cgi?id=45999 Summary: Tomcat 5.5.17 won't start service with Java 1.6_5+ installed Product: Tomcat 5 Version: 5.5.17 Platform: PC OS/Version: Windows Server 2003 Status: NEW Severity: major Priority: P2 Component: Catalina AssignedTo: dev@tomcat.apache.org ReportedBy: [EMAIL PROTECTED] I install JDK 1.6_5 or 1.6_7 and neither will work right after installation. If i install JDK 1.5_14 it works fine. What do I need to adjust to get it to work? I am using Tomcat 5.5.17. All I want is the service to start. Thanks. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45999] Tomcat 5.5.17 won't start service with Java 1.6_5+ installed
https://issues.apache.org/bugzilla/show_bug.cgi?id=45999 --- Comment #1 from Jeff <[EMAIL PROTECTED]> 2008-10-13 15:34:26 PST --- Created an attachment (id=22721) --> (https://issues.apache.org/bugzilla/attachment.cgi?id=22721) tomcat log snapshot -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]