i just want to know if this is a normal behavior. I have roughly two times a second a new context instantiated with no one accessing the server 24/7 ..
13:17:27,217 INFO [Contexts] starting up: org.jboss.seam.security.ruleBasedPermissionResolver
13:17:27,218 INFO [Contexts] starting up: org.jboss.seam.security.identity
13:17:27,218 INFO [Contexts] starting up: org.jboss.seam.web.session
13:17:27,713 INFO [Contexts] starting up: org.jboss.seam.security.ruleBasedPermissionResolver
13:17:27,713 INFO [Contexts] starting up: org.jboss.seam.security.identity
13:17:27,713 INFO [Contexts] starting up: org.jboss.seam.web.session
So should i adjust the log to warn for seam or is there something wrong?
thx
Contexts.startup(ScopeType.SESSION). AFAIK Seam calls it inSeamListener.sessionCreated(HttpSessionEvent), in other words, normally it happens only when there is http activity -- users creating sessions. Are you sure there is no activity? – tair Jul 18 '11 at 17:23