svn commit: r1815659 - /tomcat/jk/trunk/xdocs/webserver_howto/iis.xml
Author: markt Date: Sat Nov 18 11:48:07 2017 New Revision: 1815659 URL: http://svn.apache.org/viewvc?rev=1815659&view=rev Log: ISAPI installation instructions successfully tested with Windows 7. Add a note regarding UAC. Modified: tomcat/jk/trunk/xdocs/webserver_howto/iis.xml Modified: tomcat/jk/trunk/xdocs/webserver_howto/iis.xml URL: http://svn.apache.org/viewvc/tomcat/jk/trunk/xdocs/webserver_howto/iis.xml?rev=1815659&r1=1815658&r2=1815659&view=diff == --- tomcat/jk/trunk/xdocs/webserver_howto/iis.xml (original) +++ tomcat/jk/trunk/xdocs/webserver_howto/iis.xml Sat Nov 18 11:48:07 2017 @@ -170,10 +170,11 @@ Adding more contexts to the configuratio -These instructions have been written based on Windows Server 2012 R2. -Other versions should be broadly the same. As the installation process is tested -on other Windows versions, these instructions will be updated to note any -version specific information. +These instructions have been written based on Windows Server 2012 R2. The +instructions have also been tested successfully with Windows 7. The steps for +other supported operating systems should be broadly the same. As the +installation process is tested on other Windows versions, these instructions +will be updated to note any version specific information. @@ -194,6 +195,9 @@ following at a command prompt: >icacls "C:\Program Files\Apache Software Foundation\Tomcat 9.0\isapi" /grant >"IIS APPPOOL\DefaultAppPool":(OI)(CI)M +On client operating systems with User Account Control (UAC) enabled, the command +prompt must be opened using Run as administrator for the above command to +complete successfully. Download the appropriate (32-bit or 64-bit) isapi_redirect.dll for your - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1815660 - /tomcat/jk/trunk/xdocs/webserver_howto/iis.xml
Author: markt Date: Sat Nov 18 12:35:44 2017 New Revision: 1815660 URL: http://svn.apache.org/viewvc?rev=1815660&view=rev Log: Tested on Serevr 2008 with no changes required Modified: tomcat/jk/trunk/xdocs/webserver_howto/iis.xml Modified: tomcat/jk/trunk/xdocs/webserver_howto/iis.xml URL: http://svn.apache.org/viewvc/tomcat/jk/trunk/xdocs/webserver_howto/iis.xml?rev=1815660&r1=1815659&r2=1815660&view=diff == --- tomcat/jk/trunk/xdocs/webserver_howto/iis.xml (original) +++ tomcat/jk/trunk/xdocs/webserver_howto/iis.xml Sat Nov 18 12:35:44 2017 @@ -171,10 +171,10 @@ Adding more contexts to the configuratio These instructions have been written based on Windows Server 2012 R2. The -instructions have also been tested successfully with Windows 7. The steps for -other supported operating systems should be broadly the same. As the -installation process is tested on other Windows versions, these instructions -will be updated to note any version specific information. +instructions have also been tested successfully with Windows 7 and Windows +Server 2008. The steps for other supported operating systems should be broadly +the same. As the installation process is tested on other Windows versions, these +instructions will be updated to note any version specific information. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61777] New: NPE in AuthConfigFactoryImpl.detachListener()
https://bz.apache.org/bugzilla/show_bug.cgi?id=61777 Bug ID: 61777 Summary: NPE in AuthConfigFactoryImpl.detachListener() Product: Tomcat 8 Version: 8.5.x-trunk Hardware: PC Status: NEW Severity: normal Priority: P2 Component: Catalina Assignee: dev@tomcat.apache.org Reporter: lazar.kirc...@gmail.com Target Milestone: In case AuthConfigFactoryImpl.detachListener() is called for a combination of layer and appContext for which there is no registration (e.g. because the registration was already removed, or due to wrong layer and/or appContext) the method throws a NPE. It does not check for null the result from the call to findRegistrationContextImpl, which is null if such registration does not exist. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[GitHub] tomcat pull request #85: Fix NPE in AuthConfigFactoryImpl.detachListener()
GitHub user lkirchev opened a pull request: https://github.com/apache/tomcat/pull/85 Fix NPE in AuthConfigFactoryImpl.detachListener() Test case and fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=61777 You can merge this pull request into a Git repository by running: $ git pull https://github.com/lkirchev/tomcat npe_detach_listener Alternatively you can review and apply these changes as the patch at: https://github.com/apache/tomcat/pull/85.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #85 commit 48b3cc3bcb3d50a12a5ae00d0ab75645a88a38f4 Author: Lazar Kirchev Date: 2017-11-17T09:25:54Z Fix NPE in AuthConfigFactoryImpl.detachListener() --- - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61777] NPE in AuthConfigFactoryImpl.detachListener()
https://bz.apache.org/bugzilla/show_bug.cgi?id=61777 Lazar changed: What|Removed |Added OS||All --- Comment #1 from Lazar --- This pull request contains a test case, which illustrates the problem and a fix for it: https://github.com/apache/tomcat/pull/85 -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61778] New: AuthConfigFactoryImpl.detachListener() alwas returns an empty string array
https://bz.apache.org/bugzilla/show_bug.cgi?id=61778 Bug ID: 61778 Summary: AuthConfigFactoryImpl.detachListener() alwas returns an empty string array Product: Tomcat 8 Version: 8.5.23 Hardware: PC Status: NEW Severity: normal Priority: P2 Component: Catalina Assignee: dev@tomcat.apache.org Reporter: lazar.kirc...@gmail.com Target Milestone: RegistrationContextImpl.removeListener() always returns false - it initialises the return value in the beginning, but never changes it even if the listener for removal is found. The result is that when detachListener() calls removeListener, it allways gets false, and finally does not return the correct registration id. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[GitHub] tomcat pull request #86: Fix wrong return value from removeListener()
GitHub user lkirchev opened a pull request: https://github.com/apache/tomcat/pull/86 Fix wrong return value from removeListener() Test case and fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=61778 You can merge this pull request into a Git repository by running: $ git pull https://github.com/lkirchev/tomcat fix_remove_listener Alternatively you can review and apply these changes as the patch at: https://github.com/apache/tomcat/pull/86.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #86 commit 37fc340930e4d87f01da4a83769fa63996530a06 Author: Lazar Kirchev Date: 2017-11-17T10:27:46Z Fix wrong return value from removeListener() --- - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61778] AuthConfigFactoryImpl.detachListener() alwas returns an empty string array
https://bz.apache.org/bugzilla/show_bug.cgi?id=61778 Lazar changed: What|Removed |Added OS||All --- Comment #1 from Lazar --- This pull request contains a test case, which illustrates the problem and a fix for it: https://github.com/apache/tomcat/pull/86 -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61779] New: NPE in AuthConfigFactoryImpl.removeRegistration() if AuthConfigFactoryImpl.getConfigProvider() was called with null parameter for listener
https://bz.apache.org/bugzilla/show_bug.cgi?id=61779 Bug ID: 61779 Summary: NPE in AuthConfigFactoryImpl.removeRegistration() if AuthConfigFactoryImpl.getConfigProvider() was called with null parameter for listener Product: Tomcat 8 Version: 8.5.23 Hardware: PC Status: NEW Severity: normal Priority: P2 Component: Catalina Assignee: dev@tomcat.apache.org Reporter: lazar.kirc...@gmail.com Target Milestone: AuthConfigFactoryImpl.getConfigProvider() always creates a listener wrapper, even if the listener parameter is actually null. When after that AuthConfigFactoryImpl.removeRegistration() is called, the listeners in all listener wrappers for this registration are notified for the removal. However, no check for null listener in the listener wrapper is made, therefore if there is a null listener within a wrapper a NPE is thrown. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[GitHub] tomcat pull request #87: Fix NPE on removeRegistration in case getConfigProv...
GitHub user lkirchev opened a pull request: https://github.com/apache/tomcat/pull/87 Fix NPE on removeRegistration in case getConfigProvider is called wit⦠Test case and fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=61779 You can merge this pull request into a Git repository by running: $ git pull https://github.com/lkirchev/tomcat npe_remove_registration Alternatively you can review and apply these changes as the patch at: https://github.com/apache/tomcat/pull/87.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #87 commit bdcd567e80a94468180c945a1131ecc4f0f664d7 Author: Lazar Kirchev Date: 2017-11-17T10:47:19Z Fix NPE on removeRegistration in case getConfigProvider is called with null listener --- - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61779] NPE in AuthConfigFactoryImpl.removeRegistration() if AuthConfigFactoryImpl.getConfigProvider() was called with null parameter for listener
https://bz.apache.org/bugzilla/show_bug.cgi?id=61779 Lazar changed: What|Removed |Added OS||All --- Comment #1 from Lazar --- This pull request contains a test case, which illustrates the problem and a fix for it: https://github.com/apache/tomcat/pull/87 -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61780] New: If AuthConfigFactoryImpl.getRegistrationIDs() is called to get the IDs of all active registrations, it always returns the default registration id in the result list
https://bz.apache.org/bugzilla/show_bug.cgi?id=61780 Bug ID: 61780 Summary: If AuthConfigFactoryImpl.getRegistrationIDs() is called to get the IDs of all active registrations, it always returns the default registration id in the result list Product: Tomcat 8 Version: 8.5.23 Hardware: PC Status: NEW Severity: normal Priority: P2 Component: Catalina Assignee: dev@tomcat.apache.org Reporter: lazar.kirc...@gmail.com Target Milestone: When AuthConfigFactoryImpl.getRegistrationIDs() is called with null parameter in order to get all active registrations' IDs, it always returns in the result list the default registration id, even if there is no registration with this ID. It adds the default registration ID to the list if the default registration map is not null, but it actually is always non-null becuase it is created upon creation of the AuthConfigFactoryImpl instance. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[GitHub] tomcat pull request #88: Return the default registration id in the list of r...
GitHub user lkirchev opened a pull request: https://github.com/apache/tomcat/pull/88 Return the default registration id in the list of registration ids on⦠Test case and fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=61780 You can merge this pull request into a Git repository by running: $ git pull https://github.com/lkirchev/tomcat fix_default_registration Alternatively you can review and apply these changes as the patch at: https://github.com/apache/tomcat/pull/88.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #88 commit 4c0dd481ecda4c9e6e6cbb10fb02623a169a9785 Author: Lazar Kirchev Date: 2017-11-17T11:59:03Z Return the default registration id in the list of registration ids only if there is such a registration --- - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61780] If AuthConfigFactoryImpl.getRegistrationIDs() is called to get the IDs of all active registrations, it always returns the default registration id in the result list
https://bz.apache.org/bugzilla/show_bug.cgi?id=61780 Lazar changed: What|Removed |Added OS||All --- Comment #1 from Lazar --- This pull request contains a test case, which illustrates the problem and a fix for it: https://github.com/apache/tomcat/pull/88 One comment - in the proposed fix I add a check if the default registrations map is empty. However, here the check for null seems not to be necessary as the map is created upon creation of the AuthConfigFactoryImpl instance. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61781] New: NPE in PersistentProviderRegistrations.writeProviders() if layer or app context are null
https://bz.apache.org/bugzilla/show_bug.cgi?id=61781 Bug ID: 61781 Summary: NPE in PersistentProviderRegistrations.writeProviders() if layer or app context are null Product: Tomcat 8 Version: 8.5.23 Hardware: PC Status: NEW Severity: normal Priority: P2 Component: Catalina Assignee: dev@tomcat.apache.org Reporter: lazar.kirc...@gmail.com Target Milestone: PersistentProviderRegistrations.writeProviders() throws NPE if it tries to persist a provider with null layer or app context. The NPE is caused by passing null to Writer.write(). However, it is acceptable for a Provider to have its layer and/or app context null. It is allowed by the spec and there is logic which supports this in the AuthConfigFactoryImpl. So the layer and the app context should be treated as optional, just as the description is treated. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[GitHub] tomcat pull request #89: Fix NPE when persisting a provider without layer or...
GitHub user lkirchev opened a pull request: https://github.com/apache/tomcat/pull/89 Fix NPE when persisting a provider without layer or app context Test case and fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=61781 You can merge this pull request into a Git repository by running: $ git pull https://github.com/lkirchev/tomcat npe_persist_providers Alternatively you can review and apply these changes as the patch at: https://github.com/apache/tomcat/pull/89.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #89 commit 1ced8a16cd4164e38edc2d40f03ef0880367d916 Author: Lazar Kirchev Date: 2017-11-17T12:37:15Z Fix NPE when persisting a provider without layer or app context --- - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61781] NPE in PersistentProviderRegistrations.writeProviders() if layer or app context are null
https://bz.apache.org/bugzilla/show_bug.cgi?id=61781 Lazar changed: What|Removed |Added OS||All --- Comment #1 from Lazar --- This pull request contains a test case which illustrates the problem and a fix for it: https://github.com/apache/tomcat/pull/89 -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61782] New: AuthConfigFactoryImpl.doRegisterConfigProvider() does not search in the web app classloader when loading the provider class
https://bz.apache.org/bugzilla/show_bug.cgi?id=61782 Bug ID: 61782 Summary: AuthConfigFactoryImpl.doRegisterConfigProvider() does not search in the web app classloader when loading the provider class Product: Tomcat 8 Version: 8.5.23 Hardware: PC Status: NEW Severity: normal Priority: P2 Component: Catalina Assignee: dev@tomcat.apache.org Reporter: lazar.kirc...@gmail.com Target Milestone: Created attachment 35536 --> https://bz.apache.org/bugzilla/attachment.cgi?id=35536&action=edit sample app AuthConfigFactoryImpl.doRegisterConfigProvider() first tries to load the provider class with the thread context class loader (which is the application loader) and after that it retries with its own loader. However, the retry is always done, even if the first loading was successful. The result is that if the provider implementation is in the application the second loading fails and the provider registration throws ClassNotFound The attached war contains a very sample application illustrating the problem. It contains a sample provider implementation and a ServletContextListener which tries to register the provider it in its contextInitialized. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[GitHub] tomcat pull request #90: When loading AuthConfigProvider class upon registra...
GitHub user lkirchev opened a pull request: https://github.com/apache/tomcat/pull/90 When loading AuthConfigProvider class upon registration firs search i⦠Fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=61782 You can merge this pull request into a Git repository by running: $ git pull https://github.com/lkirchev/tomcat load_provider_class Alternatively you can review and apply these changes as the patch at: https://github.com/apache/tomcat/pull/90.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #90 commit 60893b43fa548f5213000e3082e526c9d96b Author: Lazar Kirchev Date: 2017-11-17T13:27:45Z When loading AuthConfigProvider class upon registration firs search it in tccl --- - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61782] AuthConfigFactoryImpl.doRegisterConfigProvider() does not search in the web app classloader when loading the provider class
https://bz.apache.org/bugzilla/show_bug.cgi?id=61782 Lazar changed: What|Removed |Added OS||All --- Comment #1 from Lazar --- This pull request contains a fix for it: https://github.com/apache/tomcat/pull/90 -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61783] New: AuthConfigFactoryImpl.removeRegistration() does not remove from the persistent storage
https://bz.apache.org/bugzilla/show_bug.cgi?id=61783 Bug ID: 61783 Summary: AuthConfigFactoryImpl.removeRegistration() does not remove from the persistent storage Product: Tomcat 8 Version: 8.5.23 Hardware: PC Status: NEW Severity: normal Priority: P2 Component: Catalina Assignee: dev@tomcat.apache.org Reporter: lazar.kirc...@gmail.com Target Milestone: AuthConfigFactoryImpl.removeRegistration() removes the registration from the in-memory structures, but in case the registration is persistent it should also remove the provider from the persistent storage. The result is that even when a provider is removed, if the providers list is reloaded from persistent storage the removed provider appears again. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[GitHub] tomcat pull request #91: When a persistent registration is removed, the chan...
GitHub user lkirchev opened a pull request: https://github.com/apache/tomcat/pull/91 When a persistent registration is removed, the change should be persi⦠Test case and fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=61783 You can merge this pull request into a Git repository by running: $ git pull https://github.com/lkirchev/tomcat remove_persistent_provider Alternatively you can review and apply these changes as the patch at: https://github.com/apache/tomcat/pull/91.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #91 commit 47aa3f9437ad40253a8b107ce1208575691df968 Author: Lazar Kirchev Date: 2017-11-17T14:37:34Z When a persistent registration is removed, the change should be persisted --- - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61783] AuthConfigFactoryImpl.removeRegistration() does not remove from the persistent storage
https://bz.apache.org/bugzilla/show_bug.cgi?id=61783 Lazar changed: What|Removed |Added OS||All --- Comment #1 from Lazar --- This pull request contains a test case which illustrates the problem and a fix for it: https://github.com/apache/tomcat/pull/91 -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61784] New: NPE if AuthConfigFactoryImpl.registerConfigProvider() is called with null provider name parameter
https://bz.apache.org/bugzilla/show_bug.cgi?id=61784 Bug ID: 61784 Summary: NPE if AuthConfigFactoryImpl.registerConfigProvider() is called with null provider name parameter Product: Tomcat 8 Version: 8.5.23 Hardware: PC Status: NEW Severity: normal Priority: P2 Component: Catalina Assignee: dev@tomcat.apache.org Reporter: lazar.kirc...@gmail.com Target Milestone: When AuthConfigFactoryImpl.doRegisterConfigProvider() tries to load the class of the provider it does not check for null. However, according to the javadoc in the jaspic specification null could be passed as provider name. Therefore a check for null is necessary in this place. And if it is null, according to the spec the registration ID should be returned, but subsequent calls to getConfigProvider() should return null. The only thing which shoud be added to the current implementation in order to support this behavior is in case of null provider class name, only to return the registration ID without modifying the provider registration structures or the persistent storage. In this way it will actually return a non-existing registration ID, but if getConfigProvider() is called with non-existing registration ID it returns null, so it behaves according to the spec. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[GitHub] tomcat pull request #92: Support null for provider class name when registeri...
GitHub user lkirchev opened a pull request: https://github.com/apache/tomcat/pull/92 Support null for provider class name when registering a provider Test case and fix for https://bz.apache.org/bugzilla/show_bug.cgi?id=61784 You can merge this pull request into a Git repository by running: $ git pull https://github.com/lkirchev/tomcat null_provider_name Alternatively you can review and apply these changes as the patch at: https://github.com/apache/tomcat/pull/92.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #92 commit 0f83cecc022c4ce51a02752eb94f5585c24d566b Author: Lazar Kirchev Date: 2017-11-17T15:10:44Z Support null for provider class name when registering a provider --- - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 61784] NPE if AuthConfigFactoryImpl.registerConfigProvider() is called with null provider name parameter
https://bz.apache.org/bugzilla/show_bug.cgi?id=61784 Lazar changed: What|Removed |Added OS||All --- Comment #1 from Lazar --- This pull request contains a test case which illustrates the problem and a fix for it: https://github.com/apache/tomcat/pull/92 -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1815681 - /tomcat/jk/trunk/xdocs/webserver_howto/iis.xml
Author: markt Date: Sat Nov 18 15:19:57 2017 New Revision: 1815681 URL: http://svn.apache.org/viewvc?rev=1815681&view=rev Log: Tested on Windows 8.1 without any additional issues Modified: tomcat/jk/trunk/xdocs/webserver_howto/iis.xml Modified: tomcat/jk/trunk/xdocs/webserver_howto/iis.xml URL: http://svn.apache.org/viewvc/tomcat/jk/trunk/xdocs/webserver_howto/iis.xml?rev=1815681&r1=1815680&r2=1815681&view=diff == --- tomcat/jk/trunk/xdocs/webserver_howto/iis.xml (original) +++ tomcat/jk/trunk/xdocs/webserver_howto/iis.xml Sat Nov 18 15:19:57 2017 @@ -171,10 +171,11 @@ Adding more contexts to the configuratio These instructions have been written based on Windows Server 2012 R2. The -instructions have also been tested successfully with Windows 7 and Windows -Server 2008. The steps for other supported operating systems should be broadly -the same. As the installation process is tested on other Windows versions, these -instructions will be updated to note any version specific information. +instructions have also been tested successfully with Windows 7, Windows 8.1 and +Windows Server 2008. The steps for other supported operating systems should be +broadly the same. As the installation process is tested on other Windows +versions, these instructions will be updated to note any version specific +information. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1815683 - /tomcat/jk/trunk/xdocs/webserver_howto/iis.xml
Author: markt Date: Sat Nov 18 15:48:49 2017 New Revision: 1815683 URL: http://svn.apache.org/viewvc?rev=1815683&view=rev Log: Tested on Windows Server 2008 R2 without any additional issues Modified: tomcat/jk/trunk/xdocs/webserver_howto/iis.xml Modified: tomcat/jk/trunk/xdocs/webserver_howto/iis.xml URL: http://svn.apache.org/viewvc/tomcat/jk/trunk/xdocs/webserver_howto/iis.xml?rev=1815683&r1=1815682&r2=1815683&view=diff == --- tomcat/jk/trunk/xdocs/webserver_howto/iis.xml (original) +++ tomcat/jk/trunk/xdocs/webserver_howto/iis.xml Sat Nov 18 15:48:49 2017 @@ -171,11 +171,11 @@ Adding more contexts to the configuratio These instructions have been written based on Windows Server 2012 R2. The -instructions have also been tested successfully with Windows 7, Windows 8.1 and -Windows Server 2008. The steps for other supported operating systems should be -broadly the same. As the installation process is tested on other Windows -versions, these instructions will be updated to note any version specific -information. +instructions have also been tested successfully with Windows 7, Windows 8.1, +Windows Server 2008 and Windows Server 2008 R2. The steps for other supported +operating systems should be broadly the same. As the installation process is +tested on other Windows versions, these instructions will be updated to note any +version specific information. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Bug report for Tomcat Modules [2017/11/19]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |50571|Inf|Nor|2011-01-11|Tomcat 7 JDBC connection pool exception enhancemen| |51595|Inf|Nor|2011-08-01|org.apache.tomcat.jdbc.pool.jmx.ConnectionPool sho| |51879|Inf|Enh|2011-09-22|Improve access to Native Connection Methods | |52024|Inf|Enh|2011-10-13|Custom interceptor to support automatic failover o| |53199|Inf|Enh|2012-05-07|Refactor ConnectionPool to use ScheduledExecutorSe| |54437|New|Enh|2013-01-16|Update PoolProperties javadoc for ConnectState int| |54929|Inf|Nor|2013-05-05|jdbc-pool cannot be used with Java 1.5, "java.lang| |55078|New|Nor|2013-06-07|Configuring a DataSource Resource with dataSourceJ| |55662|New|Enh|2013-10-17|Add a way to set an instance of java.sql.Driver di| |56046|New|Enh|2014-01-21|org.apache.tomcat.jdbc.pool.XADataSource InitSQL p| |56088|New|Maj|2014-01-29|AbstractQueryReport$StatementProxy throws exceptio| |56310|Inf|Maj|2014-03-25|PooledConnection and XAConnection not handled corr| |56586|New|Nor|2014-06-02|initSQL should be committed if defaultAutoCommit =| |56775|New|Nor|2014-07-28|PoolCleanerTime schedule issue| |56779|New|Nor|2014-07-28|Allow multiple connection initialization statement| |56790|New|Nor|2014-07-29|Resizing pool.maxActive to a higher value at runti| |56798|New|Nor|2014-07-31|Idle eviction strategy could perform better (and i| |56804|New|Nor|2014-08-02|Use a default validationQueryTimeout other than "f| |56805|New|Nor|2014-08-02|datasource.getConnection() may be unnecessarily bl| |56837|New|Nor|2014-08-11|if validationQuery have error with timeBetweenEvic| |56970|New|Nor|2014-09-11|MaxActive vs. MaxTotal for commons-dbcp and tomcat| |56974|New|Nor|2014-09-12|jdbc-pool validation query defaultAutoCommit statu| |57460|New|Nor|2015-01-19|[DB2]Connection broken after few hours but not rem| |57729|New|Enh|2015-03-20|Add QueryExecutionReportInterceptor to log query e| |58489|Opn|Maj|2015-10-08|QueryStatsComparator throws IllegalArgumentExcepti| |59077|New|Nor|2016-02-26|DataSourceFactory creates a neutered data source | |59569|New|Nor|2016-05-18|isWrapperFor/unwrap implementations incorrect | |59879|New|Nor|2016-07-18|StatementCache interceptor returns ResultSet objec| |60195|New|Nor|2016-10-02|No javadoc in Maven Central | |60522|New|Nor|2016-12-27|An option for setting if the transaction should be| |60524|Inf|Nor|2016-12-28|NPE in SlowQueryReport in tomcat-jdbc-7.0.68 | |60645|New|Nor|2017-01-25|StatementFinalizer is not thread-safe | |61032|New|Nor|2017-04-24|min pool size is not being respected | |61103|New|Nor|2017-05-18|StatementCache potentially caching non-functional | |61302|New|Enh|2017-07-15|Refactoring of DataSourceProxy| |61303|New|Enh|2017-07-15|Refactoring of ConnectionPool | |61312|New|Nor|2017-07-17|NullPointerException in StatementCache.isCached | +-+---+---+--+--+ | Total 37 bugs | +---+ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Bug report for Tomcat 8 [2017/11/19]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |43925|Opn|Enh|2007-11-21|org.apache.jasper.runtime.BodyContentImpl causing | |51497|New|Enh|2011-07-11|Use canonical IPv6 text representation in logs| |53737|Opn|Enh|2012-08-18|Use ServletContext.getJspConfigDescriptor() in Jas| |53930|New|Enh|2012-09-24|allow capture of catalina stdout/stderr to a comma| |54700|New|Enh|2013-03-15|Improvement: Add support for system property to sp| |54741|New|Enh|2013-03-22|Add org.apache.catalina.startup.Tomcat#addWebapp(S| |55243|New|Enh|2013-07-11|Add special search string for nested roles| |55252|New|Enh|2013-07-12|Separate Ant and command-line wrappers for JspC | |55383|New|Enh|2013-08-07|Improve markup and design of Tomcat's HTML pages | |9|New|Enh|2013-09-14|UserDatabaseRealm enhacement: may use local JNDI | |55675|New|Enh|2013-10-18|Checking and handling invalid configuration option| |55770|New|Enh|2013-11-12|Allow the crlFile to be reloaded | |55788|New|Enh|2013-11-16|TagPlugins should key on tag QName rather than imp| |55969|New|Enh|2014-01-07|Security-related enhancements to the Windows Insta| |56166|New|Enh|2014-02-20|Suggestions for exception handling (avoid potentia| |56361|New|Enh|2014-04-08|org.apache.tomcat.websocket.WsWebSocketContainer#b| |56398|New|Enh|2014-04-11|Support Arquillian-based unit testing | |56399|New|Enh|2014-04-11|Re-factor request/response recycling so Coyote and| |56402|New|Enh|2014-04-11|Add support for HTTP Upgrade to AJP components| |56448|New|Enh|2014-04-23|Implement a robust solution for client initiated S| |56522|Opn|Enh|2014-05-14|jasper-el 8 does not comply to EL Spec 3.0 regardi| |56546|New|Enh|2014-05-19|Improve thread trace logging in WebappClassLoader.| |56676|New|Enh|2014-06-26|Normalize access to native library| |56713|New|Enh|2014-07-12|Limit time that incoming request waits while webap| |56724|New|Enh|2014-07-15|Restart Container background thread if it died une| |56890|Inf|Maj|2014-08-26|getRealPath returns null | |56966|New|Enh|2014-09-11|AccessLogValve's elapsed time has 15ms precision o| |57130|New|Enh|2014-10-22|Allow digest.sh to accept password from a file or | |57287|New|Enh|2014-11-29|Sort files listed by DefaultServlet | |57421|New|Enh|2015-01-07|Farming default directories | |57486|New|Enh|2015-01-23|Improve reuse of ProtectedFunctionMapper instances| |57619|Opn|Enh|2015-02-23|Memory consumption| |57665|New|Enh|2015-03-05|support x-forwarded-host | |57701|New|Enh|2015-03-13|Implement "[Redeploy]" button for a web applicatio| |57830|New|Enh|2015-04-18|Add support for ProxyProtocol | |58052|Opn|Enh|2015-06-19|RewriteValve: Implement additional RewriteRule dir| |58072|New|Enh|2015-06-23|ECDH curve selection | |58433|New|Enh|2015-09-21|RemoteIpValve not activated on redirect from mappi| |58577|New|Enh|2015-11-03|JMX Proxy Servlet can't handle overloaded methods | |58837|New|Enh|2016-01-12|support "X-Content-Security-Policy" a.k.a as "CSP"| |58935|Opn|Enh|2016-01-29|Re-deploy from war without deleting context | |59232|New|Enh|2016-03-24|Make the context name of an app available via JNDI| |59423|New|Enh|2016-05-03|amend "No LoginModules configured for ..." with hi| |59758|New|Enh|2016-06-27|Add http proxy username-password credentials suppo| |60276|New|Enh|2016-10-19|upgrade HTTP/2 can't use gzip compress. | |60281|Ver|Nor|2016-10-20|Pathname of uploaded WAR file should not be contai| |60511|Inf|Maj|2016-12-22|org.apache.coyote.ajp.AjpNio2Protocol sends wrong | |60560|New|Enh|2017-01-07|Support systemd/inetd style socket activation | |60721|Ver|Nor|2017-02-10|Unable to find key spec if more applications use b| |60762|New|Enh|2017-02-21|Enhancement: Add support for runtime SNI changes i| |60781|New|Nor|2017-02-27|Access Log Valve does not escape the same as mod_l| |60849|
Bug report for Tomcat Native [2017/11/19]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |53940|New|Enh|2012-09-27|Added support for new CRL loading after expiration| |56378|New|Nor|2014-04-09|Cert load fails if cert is located in path with no| |57815|New|Enh|2015-04-15|Improve error message when OpenSSL does not suppor| |58194|Inf|Maj|2015-07-30|Tomcat crash EXCEPTION_ACCESS_VIOLATION in tcnativ| |59286|New|Nor|2016-04-07|Socket binding failures when using APR| +-+---+---+--+--+ | Total5 bugs | +---+ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Bug report for Tomcat Connectors [2017/11/19]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |35959|Opn|Enh|2005-08-01|mod_jk not independant of UseCanonicalName| |43303|New|Enh|2007-09-04|Versioning under Windows not reported by many conn| |45313|New|Nor|2008-06-30|mod_jk 1.2.26 & apache 2.2.9 static compiled on so| |46767|New|Enh|2009-02-25|mod_jk to send DECLINED in case no fail-over tomca| |47327|New|Enh|2009-06-07|Return tomcat authenticated user back to mod_jk (A| |47750|New|Maj|2009-08-27|ISAPI: Loss of worker settings when changing via j| |47795|New|Maj|2009-09-07|service sticky_session not being set correctly wit| |48513|New|Enh|2010-01-09|IIS Quick setup instructions | |48564|New|Enh|2010-01-18|Allow to turn off retries for LB worker | |48830|New|Nor|2010-03-01|IIS shutdown blocked in endpoint service when serv| |49063|New|Enh|2010-04-07|Please add JkStripSession status in jk-status work| |49822|New|Enh|2010-08-25|Add hash lb worker method | |49903|New|Enh|2010-09-09|Make workers file reloadable | |52483|New|Enh|2012-01-18|Print JkOptions's options in log file and jkstatus| |53883|New|Maj|2012-09-17|isapi_redirect v 1.2.37 crashes w3wp.exe on the p| |53977|New|Maj|2012-10-07|32bits isapi connector cannot work in wow64 mode | |54027|New|Cri|2012-10-18|isapi send request to outside address instead of i| |54117|New|Maj|2012-11-08|access violation exception in isapi_redirect.dll | |54621|New|Enh|2013-02-28|[PATCH] custom mod_jk availability checks | |56489|New|Enh|2014-05-05|Include a directory for configuration files | |56576|New|Enh|2014-05-29|Websocket support | |57402|New|Enh|2014-12-30|Provide correlation ID between mod_jk log and acce| |57403|New|Enh|2014-12-30|Persist configuration changes made via status work| |57407|New|Enh|2014-12-31|Make session_cookie, session_path and session_cook| |57790|New|Enh|2015-04-03|Check worker names for typos | |57946|New|Nor|2015-05-23|Configuration example for mod_jk should be updated| |58287|New|Nor|2015-08-26|Questionable use of "Global" objects on Windows | |59897|New|Nor|2016-07-25|Buffer Overflow in FD_SET in nb_connect (jk_connec| |60240|New|Min|2016-10-11|Duplicate initialization log entry in mod_jk.log | |60745|New|Nor|2017-02-18|False positive: Somebody try to hack into the site| |61476|New|Enh|2017-09-01|Allow reset of an individual worker stat value| |61621|New|Nor|2017-10-15|Content-Type is forced to lowercase when it goes t| |61733|New|Nor|2017-11-07|lb_mult changes caused by status worker changing a| +-+---+---+--+--+ | Total 33 bugs | +---+ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Bug report for Taglibs [2017/11/19]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |38193|Ass|Enh|2006-01-09|[RDC] BuiltIn Grammar support for Field | |38600|Ass|Enh|2006-02-10|[RDC] Enable RDCs to be used in X+V markup (X+RDC)| |42413|New|Enh|2007-05-14|[PATCH] Log Taglib enhancements | |46052|New|Nor|2008-10-21|SetLocaleSupport is slow to initialize when many l| |48333|New|Enh|2009-12-02|TLD generator | |57434|New|Nor|2015-01-11|Race condition in EL1.0 validation| |57548|New|Min|2015-02-08|Auto-generate the value for org.apache.taglibs.sta| |57684|New|Min|2015-03-10|Version info should be taken from project version | |59359|New|Enh|2016-04-20|(Task) Extend validity period for signing KEY - be| |59668|New|Nor|2016-06-06|x:forEach retains the incorrect scope when used in| +-+---+---+--+--+ | Total 10 bugs | +---+ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Bug report for Tomcat 9 [2017/11/19]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |47467|New|Enh|2009-07-02|Deployment of the war file by URL when contextpath| |48672|New|Enh|2010-02-03|Tomcat Virtual Host Manager (/host-manager) needs | |57505|New|Enh|2015-01-27|Add integration tests for JspC| |57661|New|Enh|2015-03-04|Delay sending of 100 continue response until appli| |58242|New|Enh|2015-08-13|Scanning jars in classpath to get annotations in p| |58530|New|Enh|2015-10-23|Proposal for new Manager HTML GUI | |58548|New|Enh|2015-10-26|support certifcate transparency | |58590|New|Enh|2015-11-05|org.apache.catalina.realm.MemoryRealm can use back| |58859|New|Enh|2016-01-14|Allow to limit charsets / encodings supported by T| |59179|New|Enh|2016-03-14|HTTP Public Key Pinning (HPKP) for Tomcat | |59203|New|Enh|2016-03-21|Try to call Thread.interrupt before calling Thread| |59344|Ver|Enh|2016-04-18|PEM file support for JSSE | |59750|New|Enh|2016-06-24|Amend "authenticate" method with context by means | |59901|New|Enh|2016-07-26|Reduce I/O associated with JSP compilation| |60997|New|Enh|2017-04-17|Enhance SemaphoreValve to support denied status an| |61171|New|Enh|2017-06-09|Add port offset attribute (portOffset?) to Server | |61223|New|Enh|2017-06-26|Enhance the documentation for mbeans-descriptors.x| |61565|New|Enh|2017-09-26|Manager interface for reloading TLS config| |61566|New|Enh|2017-09-26|Expose TLS Certificate and Trusted Authority detai| |61599|New|Nor|2017-10-09|Update Commons Daemon for improved Java 9 support | |61600|New|Nor|2017-10-09|Windows service stop logs warnings on Java 9 | |61683|Inf|Nor|2017-10-27|NullPointerException in ErrorReportValve while exe| |61692|New|Enh|2017-10-28|CGIServlet should handle additional HTTP methods, | +-+---+---+--+--+ | Total 23 bugs | +---+ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Bug report for Tomcat 7 [2017/11/19]
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned| | | OPN=ReopenedVER=Verified(Skipped Closed/Resolved) | | | +-+ | | | Severity: BLK=Blocker CRI=Critical REG=Regression MAJ=Major | | | | MIN=Minor NOR=NormalENH=Enhancement TRV=Trivial | | | | +-+ | | | | Date Posted | | | | | +--+ | | | | | Description | | | | | | | |41007|Opn|Enh|2006-11-20|Can't define customized 503 error page| |43866|New|Enh|2007-11-14|add support for session attribute propagation with| |47242|New|Enh|2009-05-22|request for AJP command line client | |49395|New|Enh|2010-06-06|manager.findLeaks : display the date when the leak| |49821|New|Enh|2010-08-25|Tomcat CLI [PATCH/Contribution] | |50019|New|Enh|2010-09-28|Adding JNDI "lookup-name" support In XML and Resou| |50175|New|Enh|2010-10-28|Enhance memory leak detection by selectively apply| |50234|New|Enh|2010-11-08|JspC use servlet 3.0 features | |50670|New|Enh|2011-01-27|Tribes | RpcChannel | Add option to specify extern| |50944|Ver|Blk|2011-03-18|JSF: java.lang.NullPointerException at com.sun.fac| |51195|New|Enh|2011-05-13|"Find leaks" reports a false positive memory/class| |51423|Inf|Enh|2011-06-23|[Patch] to add a path and a version parameters to | |51496|New|Enh|2011-07-11|NSIS - Warn that duplicate service name will resul| |51587|New|Enh|2011-07-29|Implement status and uptime commands | |51953|New|Enh|2011-10-04|Proposal: netmask filtering valve and filter [PATC| |52381|New|Enh|2011-12-22|Please add OSGi metadata | |52448|New|Enh|2012-01-11|Cache jar indexes in WebappClassLoader to speed up| |52489|New|Enh|2012-01-19|Enhancement request for code signing of war files | |52688|New|Enh|2012-02-16|Add ability to remove old access log files [PATCHE| |52952|New|Enh|2012-03-20|Improve ExtensionValidator handling for embedded s| |53085|New|Enh|2012-04-16|[perf] [concurrency] DefaultInstanceManager.annota| |53387|New|Enh|2012-06-08|SSI: Allow to use $1 to get result of regular expr| |53411|Opn|Enh|2012-06-13|NullPointerException in org.apache.tomcat.util.buf| |53492|New|Enh|2012-07-01|Make JspC shell multithreaded | |53553|New|Enh|2012-07-16|[PATCH] Deploy uploaded WAR with context.xml from | |53620|New|Enh|2012-07-30|[juli] delay opening a file until something gets l| |54499|New|Enh|2013-01-29|Implementation of Extensible EL Interpreter | |54802|New|Enh|2013-04-04|Provide location information for exceptions thrown| |55104|New|Enh|2013-06-16|Allow passing arguments with spaces to Commons Dae| |55470|New|Enh|2013-08-23|Help users for ClassNotFoundExceptions during star| |55477|New|Enh|2013-08-23|Add a solution to map an realm name to a security | |56148|New|Enh|2014-02-17|support (multiple) ocsp stapling | |56181|New|Enh|2014-02-23|RemoteIpValve & RemoteIpFilter: HttpServletRequest| |56300|New|Enh|2014-03-22|[Tribes] No useful examples, lack of documentation| |56438|New|Enh|2014-04-21|If jar scan does not find context config or TLD co| |56614|New|Enh|2014-06-12|Add a switch to ignore annotations detection on ta| |56787|New|Enh|2014-07-29|Simplified jndi name parsing | |57367|New|Enh|2014-12-18|If JAR scan experiences a stack overflow, give the| |57827|New|Enh|2015-04-17|Enable adding/removing of members via jmx in a sta| |57870|New|Enh|2015-04-29|backport GzipOutputFilter #doWrite to Tomcat 7 to | |57872|New|Enh|2015-04-29|Do not auto-switch session cookie to version=1 due| |57892|New|Enh|2015-05-05|Log once a warning if a symbolic link is ignored (| |58338|New|Nor|2015-09-07|BasicDataSourceFactory uses wrong attribute name | |59716|New|Enh|2016-06-17|Allow JNDI configuration of CorsFilter| |60597|New|Enh|2017-01-17|Add ability to set cipher suites for websocket cli| |60944|Inf|Nor|2017-03-30|Tomcat Production Issue connections in CLOSE_WAIT | +-+---+---+--+--+ | Total 46 bugs | +---+ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: d