Re: [PR] Correctly Proxy Statement returned from ResultSet [tomcat]

2024-08-08 Thread via GitHub
mc1arke commented on PR #742: URL: https://github.com/apache/tomcat/pull/742#issuecomment-2275124454 @chrisw-s Do you have a stacktrace that shows the exception you're getting or steps to reproduce the issue? -- This is an automated message from the Apache Git Service. To respond to the m

(tomcat-connectors) branch main updated: Improve shared memory handling on non-Windows.

2024-08-08 Thread rjung
This is an automated email from the ASF dual-hosted git repository. rjung pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat-connectors.git The following commit(s) were added to refs/heads/main by this push: new d55706e92 Improve shared memory handling o

[Bug 69245] Tomcat.addWebapp() doesn't expire sessions after Tomcat.start()

2024-08-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=69245 Jörg von Frantzius changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 69245] Tomcat.addWebapp() doesn't expire sessions after Tomcat.start()

2024-08-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=69245 --- Comment #9 from Jörg von Frantzius --- "works always" - well, at least on my machine, but not in Jenkins :-/ -- You are receiving this mail because: You are the assignee for the bug. ---

(tomcat-connectors) branch main updated: Add news page for 2024 with an estimate of the 1.2.50 release date

2024-08-08 Thread markt
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat-connectors.git The following commit(s) were added to refs/heads/main by this push: new 9612683ac Add news page for 2024 with an e

(tomcat-connectors) tag JK_1_2_50 created (now 9612683ac)

2024-08-08 Thread markt
This is an automated email from the ASF dual-hosted git repository. markt pushed a change to tag JK_1_2_50 in repository https://gitbox.apache.org/repos/asf/tomcat-connectors.git at 9612683ac (commit) No new revisions were added by this update. ---

[Bug 69245] Tomcat.addWebapp() doesn't expire sessions after Tomcat.start()

2024-08-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=69245 --- Comment #10 from Jörg von Frantzius --- Thx again Christopher, for the records, this is how Tomcat's own test does it: https://github.com/apache/tomcat/blob/main/test/org/apache/catalina/authenticator/TestFormAuthenticatorA.java#L162 For o

Re: [PR] Correctly Proxy Statement returned from ResultSet [tomcat]

2024-08-08 Thread via GitHub
chrisw-s commented on PR #742: URL: https://github.com/apache/tomcat/pull/742#issuecomment-2275611258 Just this: ``` try (Statement statement = connection.createStatement(); ResultSet resultSet = statement.executeQuery("sp_help_fulltext_catalogs")) { fullTextSearchable

Re: [PR] Correctly Proxy Statement returned from ResultSet [tomcat]

2024-08-08 Thread via GitHub
VRBogdanov commented on PR #742: URL: https://github.com/apache/tomcat/pull/742#issuecomment-2275626750 Hello, Same is observed on my side with the following strack trace below. With latest tomcat 9.091 is ok while after updating to tomcat 9.092/93 it fails. The problem is that DB in

Re: [PR] Correctly Proxy Statement returned from ResultSet [tomcat]

2024-08-08 Thread via GitHub
mc1arke commented on PR #742: URL: https://github.com/apache/tomcat/pull/742#issuecomment-2275689404 Ah, ok. It's an exception being thrown whilst executing the underlying statement, which is happening outside the existing try/catch block that unwraps the exception. I'll raise a Bugzilla re

svn commit: r70747 - in /dev/tomcat/tomcat-connectors/jk: ./ binaries/windows/ binaries/windows/symbols/

2024-08-08 Thread markt
Author: markt Date: Thu Aug 8 14:01:55 2024 New Revision: 70747 Log: Upload Tomcat Connectors 1.2.50 for voting Added: dev/tomcat/tomcat-connectors/jk/binaries/windows/symbols/tomcat-connectors-1.2.50-windows-i386-symbols.zip (with props) dev/tomcat/tomcat-connectors/jk/binaries/win

[VOTE] Release Apache Tomcat Connectors (JK) 1.2.50

2024-08-08 Thread Mark Thomas
Tag: https://github.com/apache/tomcat-connectors/tree/JK_1_2_50 Source: https://github.com/apache/tomcat-connectors/tree/JK_1_2_50 Dist: https://dist.apache.org/repos/dist/dev/tomcat/tomcat-connectors/jk/ This is a maintenance release with a handful of dependency updates and bug fixes (compar

Re: [VOTE] Release Apache Tomcat Connectors (JK) 1.2.50

2024-08-08 Thread Mark Thomas
On 08/08/2024 15:13, Mark Thomas wrote: The proposed JK 1.2.50 release is: [ ] Broken - do not release [X] Stable - go ahead and release as 1.2.50 Compiles on Ubuntu 22.04 (fully patched) and passes a simple smoke test with httpd. Windows binary for 64-bit passes a simple smoke test on: - Wi

(tomcat) branch main updated: More improvements to exception handling during WebSocket msg processing

2024-08-08 Thread markt
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/main by this push: new 00ef1b65d7 More improvements to exception handling du

Re: [VOTE] Release Apache Tomcat Connectors (JK) 1.2.50

2024-08-08 Thread Christopher Schultz
Mark, Thanks for RMing. On 8/8/24 10:13, Mark Thomas wrote: Tag: https://github.com/apache/tomcat-connectors/tree/JK_1_2_50 Source: https://github.com/apache/tomcat-connectors/tree/JK_1_2_50 Dist: https://dist.apache.org/repos/dist/dev/tomcat/tomcat-connectors/jk/ This is a maintenance rele

[PR] Unwrap InvocationTargetException from underlying statement execution [tomcat]

2024-08-08 Thread via GitHub
mc1arke opened a new pull request, #744: URL: https://github.com/apache/tomcat/pull/744 When executing a wrapped statement, any resulting SQLException is wrapped in an InvocationTargetException by the reflective invocation, which is rethrown by the InvocationHandler as an UndeclaredThrow

Re: [PR] Correctly Proxy Statement returned from ResultSet [tomcat]

2024-08-08 Thread via GitHub
mc1arke commented on PR #742: URL: https://github.com/apache/tomcat/pull/742#issuecomment-2276512539 Proposed fix in #744 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. T

Re: [VOTE] Release Apache Tomcat Connectors (JK) 1.2.50

2024-08-08 Thread Rainer Jung
Am 08.08.24 um 16:13 schrieb Mark Thomas: Tag: https://github.com/apache/tomcat-connectors/tree/JK_1_2_50 Source: https://github.com/apache/tomcat-connectors/tree/JK_1_2_50 Dist: https://dist.apache.org/repos/dist/dev/tomcat/tomcat-connectors/jk/ This is a maintenance release with a handful o