01-30-06 02:47 AM
No - this is not what I meant. If you open the Deployment Descriptor, with s
ay Websphere Studio App Developer, you should see four sections: Welcome pag
es, Login, Error pages, Exceptions.
What you were referring to was the second one, which is dealing specifically
with the Login process. I was referring to the third one, which really hand
les the HTML error codes.
It should be within a block like the following:
<error-page id="ErrorCodeErrorPage_1133453892160">
<error-code>403</error-code>
<location>/my403ErrorPage.jsp</location>
</error-page>
Depending on your application, you could specify /logon.jsp in the <location
/> tag. This way when error 403 is thrown, the user gets presented with the
logon page.
[ Post a follow-up to this message ]
|