Spring Security 3: Setting up tomcat 6 for SSL -
Spring Security 3: Setting up tomcat 6 for SSL -
i trying setup spring security 3 running on tomcat 6 ssl.
i need test secure-connection https
configured ssl on tomcat , exported certificate out of generated keystore still application doesn't run. redirects me https on port 8443 , says "this webpage not available".
<intercept-url pattern="/login" access="isanonymous()" requires-channel="https"/>
could tell me else need test secure connection login page?
is 8443 proper https port tomcat instance? if not, you'll need port-mapping within http element in spring security:
<http> ... <port-mappings> <port-mapping http="9080" https="9443"/> </port-mappings> </http>
ssl spring-mvc spring-security certificate tomcat6
Comments
Post a Comment