java - If I make my login page use 'https' in Spring, how do I avoid Error 102 (net::ERR_CONNECTION_REFUSED)? -
the homepage spring mvc 3.0 app is:
http://localhost:8080/
if make login page use https:
https://localhost:8443/login
i error when try navigate login page:
error 102 (net::err_connection_refused): unknown error.
what's correct way configure spring app doesn't happen?
are sure server listening port 8443? check wit following command
netstat
what results in list of active connections
proto local adres externnal adres status
tcp pc04566:1040 localhost:1041 established
Comments
Post a Comment