Custom SSL certificate error page
Hi
I donīt know this is the proper place to make this question..., any way there is.
I configured my app to use SSL whit my welcome action, so the user has to use his certificate to authenticate.
Code:
<intercept-url pattern="/SecWelcome*" requires-hannel="https"/>
<port-mappings>
<port-mapping http="7001" https="7002"/>
</port-mappings>
Every thing works fine when the user do has a certificate, but in other case a error page is shown. For example, in firefox you get a ssl_error_handshake_failure_alert error.
Is there any way to show a custom page in this case?
I tried to use web.xml
Code:
<error-page>
<error-code>xxx</error-code>
<location>/pages/comun/error/xxx.jsp</location>
</error-page>
but it seems this error has not a valid error-code.
Merry christmas