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

Popular posts from this blog

How do I check if an insert was successful with MySQLdb in Python? -

delphi - blogger via idHTTP : error 400 bad request -

postgresql - ERROR: operator is not unique: unknown + unknown -