Re: Servlet Mapping w/ Error Page

2012-01-11 Thread George Sexton
On 12/31/11 2:04 PM, Konstantin Kolinko wrote: 2011/12/31 George Sexton: I have a servlet mapping for a page named /403.html I can invoke that URL and get a page as expected. In my deployment descriptor, I have an error mapping: 403 /403.html in my code I have if (someCondition) {

Re: Servlet Mapping w/ Error Page

2012-01-02 Thread Terence M. Bandoian
On 1:59 PM, George Sexton wrote: On 12/31/11 2:04 PM, Konstantin Kolinko wrote: 2011/12/31 George Sexton: I have a servlet mapping for a page named /403.html I can invoke that URL and get a page as expected. In my deployment descriptor, I have an error mapping: 403 /403.html in my cod

Re: Servlet Mapping w/ Error Page

2011-12-31 Thread George Sexton
On 12/31/11 2:04 PM, Konstantin Kolinko wrote: 2011/12/31 George Sexton: I have a servlet mapping for a page named /403.html I can invoke that URL and get a page as expected. In my deployment descriptor, I have an error mapping: 403 /403.html in my code I have if (someCondition) {

Re: Servlet Mapping w/ Error Page

2011-12-31 Thread Konstantin Kolinko
2011/12/31 George Sexton : > I have a servlet mapping for a page named > > /403.html > > I can invoke that URL and get a page as expected. > > In my deployment descriptor, I have an error mapping: > > > 403 > /403.html > > > in my code I have > > if (someCondition) { >    res.sendError(HttpServle