Re: Global Error Handling

2019-12-03 Thread Sumit Bhardwaj
Thanks Guys. I will check out the options and get back. Best Sumit On Wed, Dec 4, 2019 at 4:18 AM Mark Thomas wrote: > On 03/12/2019 17:15, Peter Kreuser wrote: > > Am 03.12.2019 um 14:31 schrieb Mark Thomas : > > > >> 1. Deploy a ROOT web application with appropriate error page > >>

Re: Global Error Handling

2019-12-03 Thread Mark Thomas
On 03/12/2019 17:15, Peter Kreuser wrote: > Am 03.12.2019 um 14:31 schrieb Mark Thomas : >> 1. Deploy a ROOT web application with appropriate error page >> configuration. This will catch all URLs that aren't mapped to any other >> deployed applications. > > Wouldn’t the global web.xml provide

Re: Global Error Handling

2019-12-03 Thread Peter Kreuser
 Mark, Peter Kreuser >>> Am 03.12.2019 um 14:31 schrieb Mark Thomas : >> On 03/12/2019 12:50, logo wrote: >> Sumit, >> Am 2019-12-03 13:11, schrieb Sumit Bhardwaj: >>> Hi Experts, >>> We have a requirement from a customer, where in case of 404, where >>> someone >>> is putting an invalid

Re: Global Error Handling

2019-12-03 Thread Mark Thomas
On 03/12/2019 12:50, logo wrote: > Sumit, > > > Am 2019-12-03 13:11, schrieb Sumit Bhardwaj: >> Hi Experts, >> >> We have a requirement from a customer, where in case of 404, where >> someone >> is putting an invalid url, instead of showing the default error, we >> should >> be showing a custom

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: Global Error Handling

2019-12-03 Thread logo
Sumit, Am 2019-12-03 13:11, schrieb Sumit Bhardwaj: Hi Experts, We have a requirement from a customer, where in case of 404, where someone is putting an invalid url, instead of showing the default error, we should be showing a custom message. Is this possible? I have searched and found

Global Error Handling

2019-12-03 Thread Sumit Bhardwaj
Hi Experts, We have a requirement from a customer, where in case of 404, where someone is putting an invalid url, instead of showing the default error, we should be showing a custom message. Is this possible? I have searched and found couple of solutions similar to