Angela,
On 11/22/22 13:49, Cantor, Angela T. wrote:
Problem solved - the answer was embarrassingly easy.
I chowned /etc/pki/nssdb and its contents to tomcat, and everything worked. The
"read_only" part of CKR_SESSION_READ_ONLY was a clue.
I'm not sure what changed with the newer OpenJDK, as
The Apache Tomcat team announces the immediate availability of Apache
Tomcat 8.5.84.
Apache Tomcat 8 is an open source software implementation of the Java
Servlet, JavaServer Pages, Java Unified Expression Language, Java
WebSocket and JASPIC technologies.
Apache Tomcat 8.5.84 is a bugfix and fea
Problem solved - the answer was embarrassingly easy.
I chowned /etc/pki/nssdb and its contents to tomcat, and everything worked.
The "read_only" part of CKR_SESSION_READ_ONLY was a clue.
I'm not sure what changed with the newer OpenJDK, as tomcat had run fine for
months with root owning /etc/p
Take a look at how the ManagerServlet lists resources:
https://github.com/apache/tomcat/blob/main/java/org/apache/catalina/manager/ManagerServlet.java#L1193
Hopefully that will give you some pointers.
Mark
On 22/11/2022 14:56, Rob Sargent wrote:
I trying to get the list of available db resour
I trying to get the list of available db resources to send to a web
page. My context.xml file below is generated at startup since the
user(s) and dbs change regularly and I would like to see "who's on
first" from my monitor servlet. I tried context.getEnvironment() but
that's empty. Is ther