"Reach" blockchain dApps in a Tomcat webapp?

2023-02-23 Thread James H. H. Lampert
If you haven't heard of the "Reach" blockchain language, this probably isn't worth your time. But. Is there anybody here who has called a Reach dApp from a Tomcat webapp? And if so, what's the most practical way to do it? -- JHHL

Re: Database related performance degradation after upgrading from Tomcat 9.0.33 to Tomcat 9.0.69

2023-02-23 Thread Artur Tomusiak - Hannon Hill
Thanks everyone for the information and advice. Thanks to you we were able to track this down to a specific version of Tomcat and DBCP. Simply copying tomcat-dbcp.jar file from Tomcat 9.0.38 to Tomcat 9.0.33 and running Tomcat 9.0.33 results in the slowness. This means that the issue was

Tomcat 7.0.54

2023-02-23 Thread a.grubner
Hi all Can you tell me if there is a difference between Tomcat 7.0.54 with Oracle JRE 1.8.0_221 and OpenJDK 1.8.0_342 from a functional perspective? Can it be, that certain DB transactions are handled different between these two java versions? Yes, I know, Tomcat 7.0.54 is . old, legacy,

emulate slowloris DoS attack on apache-tomcat-9.0.71

2023-02-23 Thread Manohar Mikkili
I am trying to emulate the slowloris DoS attack on Tomcat v9.0.71 Despite much deliberation, I failed to achieve this. Since this CVE is a pretty old one(circa 2012) my guess is that the same has been taken care of in the subsequent Tomcat releases. I could not find any documented evidence that

Re: Any successful SSL Implementation on Tomcat 9.0.69, Java 11, and Oracle ORDS 22.2?

2023-02-23 Thread Mark Thomas
On 22/02/2023 19:59, James Boggs wrote: Has anyone been able to complete a successful SSL Implementation on Tomcat 9.0.69, Java 11, and Oracle ORDS 22.2? We had SSL working with Tomcat 9.0.65, Java 8, and ORDS 21, on an Oracle 19c database with Oracle APEX 21 (on Windows Server 2012). Now

[ANN] Apache Tomcat 9.0.72 available

2023-02-23 Thread Rémy Maucherat
The Apache Tomcat team announces the immediate availability of Apache Tomcat 9.0.72. Apache Tomcat 9 is an open source software implementation of the Java Servlet, JavaServer Pages, Java Unified Expression Language, Java WebSocket and JASPIC technologies. Apache Tomcat 9.0.72 is a bugfix and

[ANN] Apache Tomcat 11.0.0-M3 (alpha) available

2023-02-23 Thread Mark Thomas
The Apache Tomcat team announces the immediate availability of Apache Tomcat 11.0.0-M3 (alpha). Apache Tomcat 11 is an open source software implementation of the Jakarta Servlet, Jakarta Server Pages, Jakarta Expression Language, Jakarta WebSocket, Jakarta Authentication and Jakarta Annotations

Re: Got a customer who's paranoid about Manager

2023-02-23 Thread James H. H. Lampert
On 2/22/23 9:23 AM, Mark Thomas wrote: Alternatively, you can use denyStatus="404" on the RemoteAddrValve. That attribute should be available in all versions of all currently supported Tomcat releases (it was added back in 2011). You can set it to any value valid for use with

Re: Got a customer who's paranoid about Manager

2023-02-23 Thread Mark Thomas
On 23/02/2023 16:49, James H. H. Lampert wrote: On 2/22/23 9:23 AM, Mark Thomas wrote: Alternatively, you can use denyStatus="404" on the RemoteAddrValve. That attribute should be available in all versions of all currently supported Tomcat releases (it was added back in 2011). You can set it

Re: Got a customer who's paranoid about Manager

2023-02-23 Thread James H. H. Lampert
On 2/23/23 9:17 AM, Mark Thomas wrote: You need to remove the error page entry for 404 errors from WEB-INF/web.xml rather than / as well as renaming / removing 404.jsp Delete (or comment out) these lines:       404     /WEB-INF/jsp/404.jsp   Thanks. I really wish certain other