Re: Pi Based Java Work

2021-05-28 Thread John Dale
I use ant. And git hooks (sometimes). I don't have many dependencies .. pdfbox, some commons http stuff, mail, jax, jdbc, gson. Dev build builds local expanded directory deployment, touch web.xml to reload the app. Prod build builds the jar/war. DB2DOM provides persistence, vws, security, and

Re: Pi Based Java Work

2021-05-28 Thread Rob Sargent
On 5/28/21 6:21 PM, John Dale wrote: Tried sending another email .. doesn't appear to have worked. Internet hicupped. It's working just like Ubuntu in the cloud. Pi 4 is very fast, but I'm also running DB2DOM (middleware microkernel miniaturized O/R M, Html5 IDE, and Virtual Web Server).

Pi Based Java Work

2021-05-28 Thread John Dale
Tried sending another email .. doesn't appear to have worked. Internet hicupped. It's working just like Ubuntu in the cloud. Pi 4 is very fast, but I'm also running DB2DOM (middleware microkernel miniaturized O/R M, Html5 IDE, and Virtual Web Server). MariaDB has a sorting/limit problem that I

Re: [OT] Problem posting to Tomcat ssl connector ..

2021-05-28 Thread John Dale
ran apt-get install tomcat9 and it upgraded these packages: libtomcat9-java tomcat9 tomcat9-common Still did not resolve the issue, however. Looking for a guide to manually upgrade a package installed with apt-get. Suggestions? On 5/28/21, Christopher Schultz wrote: > John, > > On 5/28/21

Re: [OT] Problem posting to Tomcat ssl connector ..

2021-05-28 Thread John Dale
The thick plottens. When I do apt-cache show tomcat9: Package: tomcat9 Version: 9.0.31-1~deb10u4 ... S .. simple and good way to upgrade this via apt-get? Or will I have to manually be overwriting stuff (yuck). John On 5/28/21, Christopher Schultz wrote: > John, > > On 5/28/21 15:32,

Re: [OT] Problem posting to Tomcat ssl connector ..

2021-05-28 Thread John Dale
definitely related to the post size .. smaller images work, larger images do not work, but the larger images are only 500k, so it's not a maxpostsize issue. I'm running apache-tomcat-9.0.41, so this shouldn't apply: https://stackoverflow.com/questions/63050276/tomcat-9-long-https-request John

Re: [OT] Problem posting to Tomcat ssl connector ..

2021-05-28 Thread Christopher Schultz
John, On 5/28/21 15:32, John Dale wrote: I debugged the server and it's not reaching my component. > > Request post is around 300K. Tomcat 9 on a raspberry pi 4 (w00t!). Maybe you are still just waiting around for that tiny CPU to run all that bytecode. /snark Seriously, though, I'd

Re: Enhancement: Additional user attributes queried by (some) realms

2021-05-28 Thread Christopher Schultz
Mark, On 5/28/21 04:13, Mark Thomas wrote: On 28/05/2021 07:22, Carsten Klein wrote: Chris, Mark, On 27/05/2021 22:11, Christopher Schultz wrote: After re-reading this, you mentioned reflection while asking how much we trust in Collections.unmodifiableMap(). I didn't get that right, my

Re: Enhancement: Additional user attributes queried by (some) realms

2021-05-28 Thread Christopher Schultz
Carsten, On 5/28/21 01:48, Carsten Klein wrote: Chris, Mark, On 27/05/2021 22:11, Christopher Schultz wrote: What's the primary use-case for these kinds of attributes? This has been described in detail here:

Problem posting to Tomcat ssl connector ..

2021-05-28 Thread John Dale
Page loads fine. Other pages load fine. SSL handshakes are working until .. An Ajax post with a base64 encoded image in the data. I debugged up to the request and it's fine. I debugged the server and it's not reaching my component. Tomcat is killing the connection for some reason. Thought

RE: [OT] web app big memory usage?

2021-05-28 Thread Berneburg, Cris J. - US
Hi John :-) cb> 1. Is there a way to analyze uncollected garbage? cb> 2. Is that a reasonable way to identify potential memory usage problems? jeg> MAT has an option to "Keep unreachable options." It's under preferences. Thanks for the suggestion! I did not know about that option. jeg> It

RE: [OT] web app big memory usage?

2021-05-28 Thread Berneburg, Cris J. - US
Hi Amit :-) cb> 1. Is there a way to analyze uncollected garbage? cb> 2. Is that a reasonable way to identify potential memory usage problems? ap> Have you enabled the " Enable 'keep unreachable objects'" setting of MAT? ap> https://blog.gceasy.io/2015/12/11/eclipse-mat-titbits/ No, I had not

Re: Encoding of LocalStrings_xy.properties files

2021-05-28 Thread Carsten Klein
Mark, On 28/05/2021 10:35, Mark Thomas wrote: No doubt that UTF-8 is the better encoding for messages and language files. And yes, my Eclipse actually does not use the version built by Ant. I use the start-tomcat.launch configuration file for starting Tomcat. Actually it only takes a

Re: Encoding of LocalStrings_xy.properties files

2021-05-28 Thread Mark Thomas
On 28/05/2021 08:14, Carsten Klein wrote: Hi there, I'm facing character set encoding problems in quite a recent Tomcat 10 setup. I noticed that with the http://localhost:8080/manager/html application in a browser (my browser) set to German language. My Tomcat runs from within Eclipse,

Re: Enhancement: Additional user attributes queried by (some) realms

2021-05-28 Thread Mark Thomas
On 28/05/2021 07:22, Carsten Klein wrote: Chris, Mark, On 27/05/2021 22:11, Christopher Schultz wrote: After re-reading this, you mentioned reflection while asking how much we trust in Collections.unmodifiableMap(). I didn't get that right, my bad. However, I thought of reflection in

Encoding of LocalStrings_xy.properties files

2021-05-28 Thread Carsten Klein
Hi there, I'm facing character set encoding problems in quite a recent Tomcat 10 setup. I noticed that with the http://localhost:8080/manager/html application in a browser (my browser) set to German language. My Tomcat runs from within Eclipse, built with the official build.xml file. I'm

Re: Enhancement: Additional user attributes queried by (some) realms

2021-05-28 Thread Carsten Klein
Chris, Mark, On 27/05/2021 22:11, Christopher Schultz wrote: After re-reading this, you mentioned reflection while asking how much we trust in Collections.unmodifiableMap(). I didn't get that right, my bad. However, I thought of reflection in order to implement a deep copy mechanism.