Hi there,
I have one load balance + 2 web servers(appche)+2 app servers(tomcat)
and install SSL cert on the load balance.
using spring security version 2.0.4.
http access is working fine. but when I try to use https//ab.com/login.jsp and login successfully, the target page changed back http.(e.g. http//ab.com/index.jsp)
if I change the configuration for target index.jsp in the http tag as blow will encounter another error [Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects.]
<intercept-url pattern="/indux.jsp" access="ROLE_ANONYMOUS" requires-channel="https"/>
it looks like because of http connection between web server and app server, so spring security try to redirect to https.
don't know how to solve this issue.
Any advise/ideas. thanks in advance.
Regards
ZX


Reply With Quote
