Re: [E] Global Error Handling

2019-12-03 Thread Bauer, Margaret M (Peggy)
I think you can add your customized jsp page within your web.xml by modifying path and file name 401 /WEB-INF/jsp/401.jsp 403 /WEB-INF/jsp/403.jsp 404 /WEB-INF/jsp/404.jsp On Tue, Dec 3, 2019 at 8:11 AM Sumit Bhardwaj wrote: > Hi Experts, > > We have a

Re: [E] Re: Official documentation for running an embedded Tomcat server

2019-11-25 Thread Bauer, Margaret M (Peggy)
Ease of deployment and build in the AWS world. On Mon, Nov 25, 2019 at 3:56 PM Behrang Saeedzadeh wrote: > For an example use case, see Spring Boot. It can use an embedded Tomcat and > build an executable Uber Jar. Then you can start your Web app by running > java -jar app.jar. > > On Tue, 26

tomcat with SiteMinder

2019-10-10 Thread Bauer, Margaret M (Peggy)
Has anyone used tomcat with SiteMinder without having a webserver in front of it? If so, where can I find the how to? thank you, *Peggy *

Re: [E] Binding a non root user to port 443

2018-03-13 Thread Bauer, Margaret M (Peggy)
Change your 443 port to something above 443. like 1443 or 8443. Root owns ports below 1024. Root owner will have to stop/start. and processes using ports under 1024. Only root user can use. Peggy On Tue, Mar 13, 2018 at 1:26 PM, Cheltenham, Chris < ccheltenham-...@philasd.org> wrote: >

Re: [E] RE: Tomcat 8.5.23

2018-02-18 Thread Bauer, Margaret M (Peggy)
I was just suggesting that you check to make sure it's set, since it would not deploy. On Fri, Feb 16, 2018 at 2:32 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Margaret, > > On 2/15/18 10:46 PM,

Re: [E] RE: Tomcat 8.5.23

2018-02-15 Thread Bauer, Margaret M (Peggy)
I am not using 8.5, but in older tomcat you must set the below in the server.xml On Thu, Feb 15, 2018 at 1:25 PM, Lawrence Lim wrote: > Red Hat Enterprise Linux Server release 6.9 (Santiago) > > Yes. I did check the logs. It does not log anything when I deploy.

Re: [E] Re: Cannot get a connection, pool error Timeout waiting for ideal object

2018-02-15 Thread Bauer, Margaret M (Peggy)
Verify your max connection is set high enough for the amount of traffic you see in your access logs that would be making a call to the DB. Possible code is not properly closing DB connections. Remove abandoned connections. add to your data source config On Thu, Feb 15, 2018 at 6:03 AM,

Re: [E] error creating connection pool

2018-02-13 Thread Bauer, Margaret M (Peggy)
Make sure the backend DB has enough connections. DB connections total should be the sum of all your datasurces maxActive connections plus a couple for good luck. To me, it appears DB is not permitting enough connections or your maxActive in your datasource config is set to high. On Tue, Feb