To resolve problems with Remote API/Acegi creating many http sessions, you need to
- edit /webapps/luntbuild/WEB-INF/applicationContext.xml
- find <bean id=”httpSessionContextIntegrationFilter” …. line
- add following property to the bean:
<property name=”allowSessionCreation”>
<value>false</value>
</property>
Note, that you can do that on any existing Luntbuild installation ( 1.2.x and higher). If you are using Luntclipse or remote API, I strongly recommend making the change. You will need to restart your servlet container (Tomcat, …).