Hi,

in my web application I use Spring 3.0 (Spring security, Spring MVC, DI, AOP). In my springSecurity.xml I have the following xml- fragment:

Code:
<bean id="authenticationEntryPoint" class="org.springframework.security.ui.webapp.AuthenticationProcessingFilterEntryPoint">
        <property name="loginFormUrl" value="/index.htm" />
        <property name="forceHttps" value="false" />
    </bean>
but forceHttps has no effect if I start my application, it starts with https://.... If I change to http://... it doesn't work.
Does anybody know what I can do that my application works only with http.

Thanks a lot!
Generic1