[JBoss JIRA] (WFLY-5444) Lost data on session
by Paul Ferraro (JIRA)
[ https://issues.jboss.org/browse/WFLY-5444?page=com.atlassian.jira.plugin.... ]
Paul Ferraro closed WFLY-5444.
------------------------------
Resolution: Rejected
Your application appears to lose session data because your cache configuration allows for this. When using ASYNC replication, a subsequent request for the same session isn't guaranteed to see the result of the previous transaction unless your cache configuration uses PESSIMISTIC locking with REPEATABLE_READ isolation (which is the default configuration). For what reason did you change this?
> Lost data on session
> --------------------
>
> Key: WFLY-5444
> URL: https://issues.jboss.org/browse/WFLY-5444
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 9.0.1.Final
> Reporter: Petr Sígl
> Assignee: Paul Ferraro
> Priority: Critical
>
> Configuration - standalone-ha.xml:
> {noformat}
> <cache-container name="web" default-cache="repl" module="org.wildfly.clustering.web.infinispan">
> <transport lock-timeout="60000"/>
> <replicated-cache name="repl" mode="ASYNC">
> <locking isolation="READ_COMMITTED"/>
> <transaction locking="OPTIMISTIC"/>
> <file-store/>
> </replicated-cache>
> </cache-container>
> {noformat}
> Sometimes server "loose" data stored in session - after redirect. It happens when 2 (or more?) node are running. With 1 node we are not able to reproduce the error.
> Steps:
> First request
> - in login action we create new session
> - store security key in it
> - redirect to home-page
> Second request
> - check security key
> - process home-page
> -...
> From logs below (we are doing the same) you can see, that in "error" state there is no session activation and than there are no attributes on session.
> Working
> {noformat}
> 2015-10-01 14:44:47,611 DEBUG [cz.cmhb.portal.app.informatorium.web.login.actions.DoLoginAction] (default task-4) Login action -> create new session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:47,614 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-4) Attribute added : SecurityContext : cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@482909ad
> 2015-10-01 14:44:47,615 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-4) Attribute added : MujTestovaciAttribut : JakozeMusiBytNaTeSessionPorad!!! session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@482909ad
> 2015-10-01 14:44:47,620 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-4) Attribute added : DebugSessionBindingListener : cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@482909ad
> 2015-10-01 14:44:47,621 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener] (default task-4) Value bound : DebugSessionBindingListener : cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@482909ad
> 2015-10-01 14:44:47,621 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-4) Attribute added : DebugSessionActivationListener : cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@482909ad
> 2015-10-01 14:44:47,622 DEBUG [cz.cmhb.portal.app.informatorium.web.login.actions.DoLoginAction] (default task-4) PUT: Session id = 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:47,625 DEBUG [cz.cmhb.portal.app.informatorium.web.login.actions.DoLoginAction] (default task-4) Attr: DebugSessionBindingListener cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:47,627 DEBUG [cz.cmhb.portal.app.informatorium.web.login.actions.DoLoginAction] (default task-4) Attr: DebugSessionActivationListener cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:47,630 DEBUG [cz.cmhb.portal.app.informatorium.web.login.actions.DoLoginAction] (default task-4) Attr: SecurityContext cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:47,631 DEBUG [cz.cmhb.portal.app.informatorium.web.login.actions.DoLoginAction] (default task-4) Attr: MujTestovaciAttribut JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:47,645 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-4) Attribute added : SESSION_AFTER_LOGIN_ACTION : /home-page session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@482909ad
> 2015-10-01 14:44:47,663 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-4) Attribute removed : SESSION_AFTER_LOGIN_ACTION : /home-page session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@482909ad
> 2015-10-01 14:44:47,669 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-4) Passivate session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: org.wildfly.clustering.web.session.ImmutableHttpSessionAdapter@53c97140
> 2015-10-01 14:44:47,670 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-4) Attr: DebugSessionBindingListener cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:47,673 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-4) Attr: DebugSessionActivationListener cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:47,673 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-4) Attr: SecurityContext cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:47,674 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-4) Attr: MujTestovaciAttribut JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:47,681 TRACE [org.wildfly.clustering.web.infinispan] (default task-4) Session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 will expire in 120000 ms
> 2015-10-01 14:44:47,685 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-4) Attribute added : __MessageStoreInterceptor_ActionErrors_SessionKey : [] session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@482909ad
> 2015-10-01 14:44:47,686 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-4) Attribute added : __MessageStoreInterceptor_ActionMessages_SessionKey : [] session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@482909ad
> 2015-10-01 14:44:47,686 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-4) Attribute added : __MessageStoreInterceptor_FieldErrors_SessionKey : {} session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@482909ad
> 2015-10-01 14:44:47,813 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Activate session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: org.wildfly.clustering.web.session.ImmutableHttpSessionAdapter@584a0879
> 2015-10-01 14:44:47,821 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: __MessageStoreInterceptor_ActionErrors_SessionKey []
> 2015-10-01 14:44:47,827 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: __MessageStoreInterceptor_FieldErrors_SessionKey {}
> 2015-10-01 14:44:47,835 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: DebugSessionBindingListener cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:47,839 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: DebugSessionActivationListener cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:47,852 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: SecurityContext cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:47,855 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: __MessageStoreInterceptor_ActionMessages_SessionKey []
> 2015-10-01 14:44:47,856 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: MujTestovaciAttribut JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:47,858 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-5) Process URI /home-page(isUriSecure=false)
> 2015-10-01 14:44:47,858 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-5) GET: Session id = 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:47,862 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-5) Attr: __MessageStoreInterceptor_ActionErrors_SessionKey - []
> 2015-10-01 14:44:47,866 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-5) Attr: __MessageStoreInterceptor_FieldErrors_SessionKey - {}
> 2015-10-01 14:44:47,869 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-5) Attr: DebugSessionBindingListener - cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:47,872 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-5) Attr: DebugSessionActivationListener - cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:47,876 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-5) Attr: SecurityContext - cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:47,879 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-5) Attr: __MessageStoreInterceptor_ActionMessages_SessionKey - []
> 2015-10-01 14:44:47,880 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-5) Attr: MujTestovaciAttribut - JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:47,889 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-5) securityContext is NOT null, session id = 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:47,890 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-5) isURIOk = true
> 2015-10-01 14:44:47,890 INFO [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) #REQUEST #BEGIN https://portaltst.hypotecnibanka.cz/informatorium/home-page
> 2015-10-01 14:44:47,939 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attribute added : org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.rights : org.springframework.web.context.request.DestructionCallbackBindingListener@132f2f64 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@4f4e5791
> 2015-10-01 14:44:47,942 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attribute added : scopedTarget.rights : cz.cmhb.portal.app.informatorium.web.Rights@5ad5ce79 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@4f4e5791
> 2015-10-01 14:44:47,958 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending HTTP invoker request for service at [http://phspa1tst/informatorium-remote/remote/informatoriumAuthorizationSe...], with size 595
> 2015-10-01 14:44:47,963 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending securityContext of externalContractId=1410 for session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:48,104 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attribute removed : __MessageStoreInterceptor_ActionErrors_SessionKey : [] session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@4f4e5791
> 2015-10-01 14:44:48,122 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attribute removed : __MessageStoreInterceptor_ActionMessages_SessionKey : [] session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@4f4e5791
> 2015-10-01 14:44:48,126 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attribute removed : __MessageStoreInterceptor_FieldErrors_SessionKey : {} session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@4f4e5791
> 2015-10-01 14:44:48,127 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending HTTP invoker request for service at [http://phspa1tst/informatorium-remote/remote/informatoriumDocumentService], with size 310
> 2015-10-01 14:44:48,128 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending securityContext of externalContractId=1410 for session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:48,187 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending HTTP invoker request for service at [http://phspa1tst/informatorium-remote/remote/informatoriumDocumentService], with size 449
> 2015-10-01 14:44:48,190 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending securityContext of externalContractId=1410 for session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:48,287 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attribute added : org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.idPreviewModel : org.springframework.web.context.request.DestructionCallbackBindingListener@6b04e322 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@4f4e5791
> 2015-10-01 14:44:48,292 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attribute added : scopedTarget.idPreviewModel : cz.cmhb.portal.app.informatorium.web.preview.IdPreviewModel@a2201d4 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@4f4e5791
> 2015-10-01 14:44:48,320 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending HTTP invoker request for service at [http://phspa1tst/informatorium-remote/remote/informatoriumDocumentService], with size 502
> 2015-10-01 14:44:48,327 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending securityContext of externalContractId=1410 for session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:48,640 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending HTTP invoker request for service at [http://phspa1tst/informatorium-remote/remote/informatoriumDocumentService], with size 497
> 2015-10-01 14:44:48,642 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending securityContext of externalContractId=1410 for session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:48,718 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending HTTP invoker request for service at [http://phspa1tst/informatorium-remote/remote/informatoriumDocumentService], with size 453
> 2015-10-01 14:44:48,720 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending securityContext of externalContractId=1410 for session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:48,770 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending HTTP invoker request for service at [http://phspa1tst/informatorium-remote/remote/informatoriumDocumentService], with size 501
> 2015-10-01 14:44:48,771 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending securityContext of externalContractId=1410 for session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:48,994 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending HTTP invoker request for service at [http://phspa1tst/informatorium-remote/remote/informatoriumSelectBrandService], with size 315
> 2015-10-01 14:44:48,996 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending securityContext of externalContractId=1410 for session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:49,073 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attribute added : org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.homePageModel : org.springframework.web.context.request.DestructionCallbackBindingListener@1250ad83 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@4f4e5791
> 2015-10-01 14:44:49,087 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attribute added : scopedTarget.homePageModel : cz.cmhb.portal.app.informatorium.web.homepage.HomePageModel@78932822 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@4f4e5791
> 2015-10-01 14:44:49,141 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending HTTP invoker request for service at [http://phspa1tst/informatorium-remote/remote/informatoriumProfilService], with size 305
> 2015-10-01 14:44:49,151 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending securityContext of externalContractId=1410 for session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:49,291 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending HTTP invoker request for service at [http://phspa1tst/informatorium-remote/remote/informatoriumProfilService], with size 302
> 2015-10-01 14:44:49,292 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending securityContext of externalContractId=1410 for session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:49,338 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending HTTP invoker request for service at [http://phspa1tst/informatorium-remote/remote/informatoriumProfilService], with size 316
> 2015-10-01 14:44:49,339 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending securityContext of externalContractId=1410 for session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:49,534 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending HTTP invoker request for service at [http://phspa1tst/informatorium-remote/remote/informatoriumProfilService], with size 310
> 2015-10-01 14:44:49,535 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending securityContext of externalContractId=1410 for session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:49,954 INFO [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) #REQUEST #END:2096 https://portaltst.hypotecnibanka.cz/informatorium/home-page
> 2015-10-01 14:44:49,989 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Passivate session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: org.wildfly.clustering.web.session.ImmutableHttpSessionAdapter@652bc07e
> 2015-10-01 14:44:49,991 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: scopedTarget.idPreviewModel cz.cmhb.portal.app.informatorium.web.preview.IdPreviewModel@a2201d4
> 2015-10-01 14:44:49,994 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: DebugSessionBindingListener cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:49,997 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.rights org.springframework.web.context.request.DestructionCallbackBindingListener@132f2f64
> 2015-10-01 14:44:50,002 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: scopedTarget.homePageModel cz.cmhb.portal.app.informatorium.web.homepage.HomePageModel@78932822
> 2015-10-01 14:44:50,004 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: DebugSessionActivationListener cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:50,008 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: SecurityContext cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:50,010 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.homePageModel org.springframework.web.context.request.DestructionCallbackBindingListener@1250ad83
> 2015-10-01 14:44:50,010 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: MujTestovaciAttribut JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:50,014 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: scopedTarget.rights cz.cmhb.portal.app.informatorium.web.Rights@5ad5ce79
> 2015-10-01 14:44:50,016 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-5) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.idPreviewModel org.springframework.web.context.request.DestructionCallbackBindingListener@6b04e322
> 2015-10-01 14:44:50,017 TRACE [org.wildfly.clustering.web.infinispan] (default task-5) Session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 will expire in 120000 ms
> 2015-10-01 14:44:50,720 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Activate session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: org.wildfly.clustering.web.session.ImmutableHttpSessionAdapter@19bf94c0
> 2015-10-01 14:44:50,731 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: scopedTarget.idPreviewModel cz.cmhb.portal.app.informatorium.web.preview.IdPreviewModel@a2201d4
> 2015-10-01 14:44:50,742 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: DebugSessionBindingListener cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:50,754 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.rights org.springframework.web.context.request.DestructionCallbackBindingListener@132f2f64
> 2015-10-01 14:44:50,768 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: scopedTarget.homePageModel cz.cmhb.portal.app.informatorium.web.homepage.HomePageModel@78932822
> 2015-10-01 14:44:50,772 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: DebugSessionActivationListener cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:50,775 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: SecurityContext cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:50,793 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.homePageModel org.springframework.web.context.request.DestructionCallbackBindingListener@1250ad83
> 2015-10-01 14:44:50,794 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: MujTestovaciAttribut JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:50,798 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: scopedTarget.rights cz.cmhb.portal.app.informatorium.web.Rights@5ad5ce79
> 2015-10-01 14:44:50,826 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.idPreviewModel org.springframework.web.context.request.DestructionCallbackBindingListener@6b04e322
> 2015-10-01 14:44:50,828 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-6) Process URI /banner(isUriSecure=false)
> 2015-10-01 14:44:50,829 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-6) GET: Session id = 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:50,832 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-6) Attr: scopedTarget.idPreviewModel - cz.cmhb.portal.app.informatorium.web.preview.IdPreviewModel@a2201d4
> 2015-10-01 14:44:50,835 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-6) Attr: DebugSessionBindingListener - cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:50,842 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-6) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.rights - org.springframework.web.context.request.DestructionCallbackBindingListener@132f2f64
> 2015-10-01 14:44:50,856 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-6) Attr: scopedTarget.homePageModel - cz.cmhb.portal.app.informatorium.web.homepage.HomePageModel@78932822
> 2015-10-01 14:44:50,850 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Activate session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: org.wildfly.clustering.web.session.ImmutableHttpSessionAdapter@736c4cfd
> 2015-10-01 14:44:50,871 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Activate session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: org.wildfly.clustering.web.session.ImmutableHttpSessionAdapter@3bb68e8f
> 2015-10-01 14:44:50,874 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-6) Attr: DebugSessionActivationListener - cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:50,876 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-6) Attr: SecurityContext - cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:50,880 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-6) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.homePageModel - org.springframework.web.context.request.DestructionCallbackBindingListener@1250ad83
> 2015-10-01 14:44:50,881 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-6) Attr: MujTestovaciAttribut - JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:50,890 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: scopedTarget.idPreviewModel cz.cmhb.portal.app.informatorium.web.preview.IdPreviewModel@a2201d4
> 2015-10-01 14:44:50,891 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: DebugSessionBindingListener cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:50,892 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.rights org.springframework.web.context.request.DestructionCallbackBindingListener@132f2f64
> 2015-10-01 14:44:50,893 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: scopedTarget.homePageModel cz.cmhb.portal.app.informatorium.web.homepage.HomePageModel@78932822
> 2015-10-01 14:44:50,896 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: DebugSessionActivationListener cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:50,896 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-6) Attr: scopedTarget.rights - cz.cmhb.portal.app.informatorium.web.Rights@5ad5ce79
> 2015-10-01 14:44:50,897 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-6) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.idPreviewModel - org.springframework.web.context.request.DestructionCallbackBindingListener@6b04e322
> 2015-10-01 14:44:50,898 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-6) securityContext is NOT null, session id = 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:50,898 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: scopedTarget.idPreviewModel cz.cmhb.portal.app.informatorium.web.preview.IdPreviewModel@a2201d4
> 2015-10-01 14:44:50,898 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-6) isURIOk = true
> 2015-10-01 14:44:50,899 INFO [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) #REQUEST #BEGIN https://portaltst.hypotecnibanka.cz/informatorium/banner
> 2015-10-01 14:44:50,899 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: DebugSessionBindingListener cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:50,900 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.rights org.springframework.web.context.request.DestructionCallbackBindingListener@132f2f64
> 2015-10-01 14:44:50,901 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: scopedTarget.homePageModel cz.cmhb.portal.app.informatorium.web.homepage.HomePageModel@78932822
> 2015-10-01 14:44:50,902 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: DebugSessionActivationListener cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:50,919 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: SecurityContext cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:50,920 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.homePageModel org.springframework.web.context.request.DestructionCallbackBindingListener@1250ad83
> 2015-10-01 14:44:50,920 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: MujTestovaciAttribut JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:50,921 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: scopedTarget.rights cz.cmhb.portal.app.informatorium.web.Rights@5ad5ce79
> 2015-10-01 14:44:50,922 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.idPreviewModel org.springframework.web.context.request.DestructionCallbackBindingListener@6b04e322
> 2015-10-01 14:44:50,922 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-7) Process URI /aktuality(isUriSecure=false)
> 2015-10-01 14:44:50,922 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-7) GET: Session id = 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:50,936 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: SecurityContext cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:50,938 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.homePageModel org.springframework.web.context.request.DestructionCallbackBindingListener@1250ad83
> 2015-10-01 14:44:50,938 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: MujTestovaciAttribut JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:50,939 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: scopedTarget.rights cz.cmhb.portal.app.informatorium.web.Rights@5ad5ce79
> 2015-10-01 14:44:50,940 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.idPreviewModel org.springframework.web.context.request.DestructionCallbackBindingListener@6b04e322
> 2015-10-01 14:44:50,940 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-8) Process URI /ping.html(isUriSecure=false)
> 2015-10-01 14:44:50,940 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-8) GET: Session id = 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:50,941 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-8) Attr: scopedTarget.idPreviewModel - cz.cmhb.portal.app.informatorium.web.preview.IdPreviewModel@a2201d4
> 2015-10-01 14:44:50,942 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-7) Attr: scopedTarget.idPreviewModel - cz.cmhb.portal.app.informatorium.web.preview.IdPreviewModel@a2201d4
> 2015-10-01 14:44:50,943 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-8) Attr: DebugSessionBindingListener - cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:50,944 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-8) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.rights - org.springframework.web.context.request.DestructionCallbackBindingListener@132f2f64
> 2015-10-01 14:44:50,946 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-8) Attr: scopedTarget.homePageModel - cz.cmhb.portal.app.informatorium.web.homepage.HomePageModel@78932822
> 2015-10-01 14:44:50,947 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-8) Attr: DebugSessionActivationListener - cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:50,949 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-8) Attr: SecurityContext - cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:50,953 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending HTTP invoker request for service at [http://phspa1tst/informatorium-remote/remote/informatoriumDocumentService], with size 490
> 2015-10-01 14:44:50,954 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending securityContext of externalContractId=1410 for session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:50,956 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-7) Attr: DebugSessionBindingListener - cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:50,957 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-7) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.rights - org.springframework.web.context.request.DestructionCallbackBindingListener@132f2f64
> 2015-10-01 14:44:50,958 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-7) Attr: scopedTarget.homePageModel - cz.cmhb.portal.app.informatorium.web.homepage.HomePageModel@78932822
> 2015-10-01 14:44:50,959 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-7) Attr: DebugSessionActivationListener - cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:50,960 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-7) Attr: SecurityContext - cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:50,961 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-7) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.homePageModel - org.springframework.web.context.request.DestructionCallbackBindingListener@1250ad83
> 2015-10-01 14:44:50,962 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-7) Attr: MujTestovaciAttribut - JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:50,963 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-7) Attr: scopedTarget.rights - cz.cmhb.portal.app.informatorium.web.Rights@5ad5ce79
> 2015-10-01 14:44:50,964 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-7) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.idPreviewModel - org.springframework.web.context.request.DestructionCallbackBindingListener@6b04e322
> 2015-10-01 14:44:50,966 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-7) securityContext is NOT null, session id = 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:50,966 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-7) isURIOk = true
> 2015-10-01 14:44:50,966 INFO [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) #REQUEST #BEGIN https://portaltst.hypotecnibanka.cz/informatorium/aktuality
> 2015-10-01 14:44:50,969 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-8) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.homePageModel - org.springframework.web.context.request.DestructionCallbackBindingListener@1250ad83
> 2015-10-01 14:44:50,969 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-8) Attr: MujTestovaciAttribut - JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:50,970 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-8) Attr: scopedTarget.rights - cz.cmhb.portal.app.informatorium.web.Rights@5ad5ce79
> 2015-10-01 14:44:50,971 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-8) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.idPreviewModel - org.springframework.web.context.request.DestructionCallbackBindingListener@6b04e322
> 2015-10-01 14:44:50,972 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-8) securityContext is NOT null, session id = 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:50,973 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-8) isURIOk = true
> 2015-10-01 14:44:50,973 INFO [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) #REQUEST #BEGIN https://portaltst.hypotecnibanka.cz/informatorium/ping.html
> 2015-10-01 14:44:50,996 INFO [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) #REQUEST #END:56 https://portaltst.hypotecnibanka.cz/informatorium/ping.html
> 2015-10-01 14:44:51,013 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Passivate session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: org.wildfly.clustering.web.session.ImmutableHttpSessionAdapter@6f270cb6
> 2015-10-01 14:44:51,014 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: scopedTarget.idPreviewModel cz.cmhb.portal.app.informatorium.web.preview.IdPreviewModel@a2201d4
> 2015-10-01 14:44:51,015 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: DebugSessionBindingListener cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:51,017 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.rights org.springframework.web.context.request.DestructionCallbackBindingListener@132f2f64
> 2015-10-01 14:44:51,018 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: scopedTarget.homePageModel cz.cmhb.portal.app.informatorium.web.homepage.HomePageModel@78932822
> 2015-10-01 14:44:51,027 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: DebugSessionActivationListener cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:51,029 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: SecurityContext cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:51,030 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.homePageModel org.springframework.web.context.request.DestructionCallbackBindingListener@1250ad83
> 2015-10-01 14:44:51,030 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: MujTestovaciAttribut JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:51,031 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: scopedTarget.rights cz.cmhb.portal.app.informatorium.web.Rights@5ad5ce79
> 2015-10-01 14:44:51,032 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-8) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.idPreviewModel org.springframework.web.context.request.DestructionCallbackBindingListener@6b04e322
> 2015-10-01 14:44:51,042 TRACE [org.wildfly.clustering.web.infinispan] (default task-8) Session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 will expire in 120000 ms
> 2015-10-01 14:44:51,056 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending HTTP invoker request for service at [http://phspa1tst/informatorium-remote/remote/informatoriumDocumentService], with size 490
> 2015-10-01 14:44:51,057 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending securityContext of externalContractId=1410 for session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:51,215 INFO [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) #REQUEST #END:387 https://portaltst.hypotecnibanka.cz/informatorium/banner
> 2015-10-01 14:44:51,244 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Passivate session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: org.wildfly.clustering.web.session.ImmutableHttpSessionAdapter@66a855cc
> 2015-10-01 14:44:51,245 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: scopedTarget.idPreviewModel cz.cmhb.portal.app.informatorium.web.preview.IdPreviewModel@a2201d4
> 2015-10-01 14:44:51,246 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: DebugSessionBindingListener cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:51,247 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.rights org.springframework.web.context.request.DestructionCallbackBindingListener@132f2f64
> 2015-10-01 14:44:51,248 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: scopedTarget.homePageModel cz.cmhb.portal.app.informatorium.web.homepage.HomePageModel@78932822
> 2015-10-01 14:44:51,249 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: DebugSessionActivationListener cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:51,250 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: SecurityContext cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:51,259 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.homePageModel org.springframework.web.context.request.DestructionCallbackBindingListener@1250ad83
> 2015-10-01 14:44:51,259 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: MujTestovaciAttribut JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:51,260 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: scopedTarget.rights cz.cmhb.portal.app.informatorium.web.Rights@5ad5ce79
> 2015-10-01 14:44:51,278 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-6) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.idPreviewModel org.springframework.web.context.request.DestructionCallbackBindingListener@6b04e322
> 2015-10-01 14:44:51,279 TRACE [org.wildfly.clustering.web.infinispan] (default task-6) Session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 will expire in 120000 ms
> 2015-10-01 14:44:51,405 INFO [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) #REQUEST #END:483 https://portaltst.hypotecnibanka.cz/informatorium/aktuality
> 2015-10-01 14:44:51,438 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Passivate session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: org.wildfly.clustering.web.session.ImmutableHttpSessionAdapter@47a970b2
> 2015-10-01 14:44:51,440 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: scopedTarget.idPreviewModel cz.cmhb.portal.app.informatorium.web.preview.IdPreviewModel@a2201d4
> 2015-10-01 14:44:51,441 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: DebugSessionBindingListener cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:51,442 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.rights org.springframework.web.context.request.DestructionCallbackBindingListener@132f2f64
> 2015-10-01 14:44:51,443 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: scopedTarget.homePageModel cz.cmhb.portal.app.informatorium.web.homepage.HomePageModel@78932822
> 2015-10-01 14:44:51,444 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: DebugSessionActivationListener cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:51,445 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: SecurityContext cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:51,454 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.homePageModel org.springframework.web.context.request.DestructionCallbackBindingListener@1250ad83
> 2015-10-01 14:44:51,455 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: MujTestovaciAttribut JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:51,456 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: scopedTarget.rights cz.cmhb.portal.app.informatorium.web.Rights@5ad5ce79
> 2015-10-01 14:44:51,457 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-7) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.idPreviewModel org.springframework.web.context.request.DestructionCallbackBindingListener@6b04e322
> 2015-10-01 14:44:51,458 TRACE [org.wildfly.clustering.web.infinispan] (default task-7) Session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 will expire in 120000 ms
> 2015-10-01 14:44:52,429 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-9) Activate session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: org.wildfly.clustering.web.session.ImmutableHttpSessionAdapter@4cbaac8c
> 2015-10-01 14:44:52,440 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-9) Attr: scopedTarget.idPreviewModel cz.cmhb.portal.app.informatorium.web.preview.IdPreviewModel@a2201d4
> 2015-10-01 14:44:52,444 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-9) Attr: DebugSessionBindingListener cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:52,450 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-9) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.rights org.springframework.web.context.request.DestructionCallbackBindingListener@132f2f64
> 2015-10-01 14:44:52,453 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-9) Attr: scopedTarget.homePageModel cz.cmhb.portal.app.informatorium.web.homepage.HomePageModel@78932822
> 2015-10-01 14:44:52,459 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-9) Attr: DebugSessionActivationListener cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:52,467 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-9) Attr: SecurityContext cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:52,478 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-9) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.homePageModel org.springframework.web.context.request.DestructionCallbackBindingListener@1250ad83
> 2015-10-01 14:44:52,479 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-9) Attr: MujTestovaciAttribut JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:52,482 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-9) Attr: scopedTarget.rights cz.cmhb.portal.app.informatorium.web.Rights@5ad5ce79
> 2015-10-01 14:44:52,485 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-9) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.idPreviewModel org.springframework.web.context.request.DestructionCallbackBindingListener@6b04e322
> 2015-10-01 14:44:52,497 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-9) Process URI /doLogout(isUriSecure=true)
> 2015-10-01 14:44:52,497 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-9) GET: Session id = 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:52,505 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-9) Attr: scopedTarget.idPreviewModel - cz.cmhb.portal.app.informatorium.web.preview.IdPreviewModel@a2201d4
> 2015-10-01 14:44:52,508 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-9) Attr: DebugSessionBindingListener - cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:52,511 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-9) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.rights - org.springframework.web.context.request.DestructionCallbackBindingListener@132f2f64
> 2015-10-01 14:44:52,514 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-9) Attr: scopedTarget.homePageModel - cz.cmhb.portal.app.informatorium.web.homepage.HomePageModel@78932822
> 2015-10-01 14:44:52,518 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-9) Attr: DebugSessionActivationListener - cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:52,521 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-9) Attr: SecurityContext - cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75
> 2015-10-01 14:44:52,524 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-9) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.homePageModel - org.springframework.web.context.request.DestructionCallbackBindingListener@1250ad83
> 2015-10-01 14:44:52,525 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-9) Attr: MujTestovaciAttribut - JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:52,529 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-9) Attr: scopedTarget.rights - cz.cmhb.portal.app.informatorium.web.Rights@5ad5ce79
> 2015-10-01 14:44:52,541 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-9) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.idPreviewModel - org.springframework.web.context.request.DestructionCallbackBindingListener@6b04e322
> 2015-10-01 14:44:52,544 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-9) securityContext is NOT null, session id = 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:52,544 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-9) isURIOk = true
> 2015-10-01 14:44:52,545 INFO [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) #REQUEST #BEGIN https://portaltst.hypotecnibanka.cz/informatorium/doLogout
> 2015-10-01 14:44:52,629 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attribute removed : SecurityContext : cz.cmhb.portal.service.security.to.AuthenticationDetail@7d5aee75 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,630 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending HTTP invoker request for service at [http://phspa1tst/informatorium-remote/remote/informatoriumAuthenticationS...], with size 300
> 2015-10-01 14:44:52,640 DEBUG [cz.cmhb.portal.service.security.remoting.AuthenticationSimpleHttpInvokerRequestExecutor] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Sending securityContext of externalContractId=1410 for session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3
> 2015-10-01 14:44:52,715 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Passivate session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: org.wildfly.clustering.web.session.ImmutableHttpSessionAdapter@2ccc6a4c
> 2015-10-01 14:44:52,717 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attr: scopedTarget.idPreviewModel cz.cmhb.portal.app.informatorium.web.preview.IdPreviewModel@a2201d4
> 2015-10-01 14:44:52,718 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attr: DebugSessionBindingListener cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a
> 2015-10-01 14:44:52,720 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.rights org.springframework.web.context.request.DestructionCallbackBindingListener@132f2f64
> 2015-10-01 14:44:52,721 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attr: scopedTarget.homePageModel cz.cmhb.portal.app.informatorium.web.homepage.HomePageModel@78932822
> 2015-10-01 14:44:52,722 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attr: DebugSessionActivationListener cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4
> 2015-10-01 14:44:52,723 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.homePageModel org.springframework.web.context.request.DestructionCallbackBindingListener@1250ad83
> 2015-10-01 14:44:52,723 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attr: MujTestovaciAttribut JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:52,726 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attr: scopedTarget.rights cz.cmhb.portal.app.informatorium.web.Rights@5ad5ce79
> 2015-10-01 14:44:52,732 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attr: org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.idPreviewModel org.springframework.web.context.request.DestructionCallbackBindingListener@6b04e322
> 2015-10-01 14:44:52,732 TRACE [org.wildfly.clustering.web.infinispan] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 will expire in 120000 ms
> 2015-10-01 14:44:52,734 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attribute added : __MessageStoreInterceptor_ActionErrors_SessionKey : [] session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,735 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attribute added : __MessageStoreInterceptor_ActionMessages_SessionKey : [] session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,736 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) Attribute added : __MessageStoreInterceptor_FieldErrors_SessionKey : {} session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,742 INFO [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (pospisilikovahana:0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3) #REQUEST #END:245 https://portaltst.hypotecnibanka.cz/informatorium/doLogout
> 2015-10-01 14:44:52,743 DEBUG [cz.cmhb.portal.app.informatorium.filter.InformatoriumDoLogoutFilter] (default task-9) Logout action and valid session -> invalidate session.
> 2015-10-01 14:44:52,744 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-9) Attribute removed : __MessageStoreInterceptor_ActionErrors_SessionKey : [] session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,745 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-9) Attribute removed : org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.rights : org.springframework.web.context.request.DestructionCallbackBindingListener@132f2f64 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,745 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-9) Attribute removed : __MessageStoreInterceptor_ActionMessages_SessionKey : [] session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,746 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-9) Attribute removed : scopedTarget.idPreviewModel : cz.cmhb.portal.app.informatorium.web.preview.IdPreviewModel@a2201d4 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,747 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-9) Attribute removed : __MessageStoreInterceptor_FieldErrors_SessionKey : {} session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,748 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-9) Attribute removed : DebugSessionBindingListener : cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,751 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener] (default task-9) Value unbound : DebugSessionBindingListener : cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@2662064a session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,752 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-9) Attribute removed : scopedTarget.homePageModel : cz.cmhb.portal.app.informatorium.web.homepage.HomePageModel@78932822 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,753 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-9) Attribute removed : DebugSessionActivationListener : cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@629b89a4 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,754 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-9) Attribute removed : org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.homePageModel : org.springframework.web.context.request.DestructionCallbackBindingListener@1250ad83 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,757 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-9) Attribute removed : MujTestovaciAttribut : JakozeMusiBytNaTeSessionPorad!!! session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,759 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-9) Attribute removed : scopedTarget.rights : cz.cmhb.portal.app.informatorium.web.Rights@5ad5ce79 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,759 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-9) Attribute removed : org.springframework.web.context.request.ServletRequestAttributes.DESTRUCTION_CALLBACK.scopedTarget.idPreviewModel : org.springframework.web.context.request.DestructionCallbackBindingListener@6b04e322 session: 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 source: io.undertow.servlet.spec.HttpSessionImpl@2bd40b1f
> 2015-10-01 14:44:52,760 TRACE [org.wildfly.clustering.web.infinispan] (default task-9) Session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 will be removed
> 2015-10-01 14:44:52,811 TRACE [org.wildfly.clustering.web.infinispan] (default task-10) Session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 not found
> 2015-10-01 14:44:52,812 TRACE [org.wildfly.clustering.web.infinispan] (default task-10) Session 0LbLrPIhBPXlzqXn1aqVS_-38E33YeFW-Nf-wnD3 not found
> {noformat}
> NOT Working
> {noformat}
> 2015-10-01 14:44:57,506 DEBUG [cz.cmhb.portal.app.informatorium.web.login.actions.DoLoginAction] (default task-11) Login action -> create new session: UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_
> 2015-10-01 14:44:57,508 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-11) Attribute added : SecurityContext : cz.cmhb.portal.service.security.to.AuthenticationDetail@42854171 session: UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_ source: io.undertow.servlet.spec.HttpSessionImpl@348126fd
> 2015-10-01 14:44:57,509 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-11) Attribute added : MujTestovaciAttribut : JakozeMusiBytNaTeSessionPorad!!! session: UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_ source: io.undertow.servlet.spec.HttpSessionImpl@348126fd
> 2015-10-01 14:44:57,510 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-11) Attribute added : DebugSessionBindingListener : cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@30106cdc session: UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_ source: io.undertow.servlet.spec.HttpSessionImpl@348126fd
> 2015-10-01 14:44:57,511 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener] (default task-11) Value bound : DebugSessionBindingListener : cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@30106cdc session: UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_ source: io.undertow.servlet.spec.HttpSessionImpl@348126fd
> 2015-10-01 14:44:57,511 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-11) Attribute added : DebugSessionActivationListener : cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@55c05af0 session: UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_ source: io.undertow.servlet.spec.HttpSessionImpl@348126fd
> 2015-10-01 14:44:57,511 DEBUG [cz.cmhb.portal.app.informatorium.web.login.actions.DoLoginAction] (default task-11) PUT: Session id = UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_
> 2015-10-01 14:44:57,512 DEBUG [cz.cmhb.portal.app.informatorium.web.login.actions.DoLoginAction] (default task-11) Attr: DebugSessionBindingListener cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@30106cdc
> 2015-10-01 14:44:57,512 DEBUG [cz.cmhb.portal.app.informatorium.web.login.actions.DoLoginAction] (default task-11) Attr: DebugSessionActivationListener cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@55c05af0
> 2015-10-01 14:44:57,512 DEBUG [cz.cmhb.portal.app.informatorium.web.login.actions.DoLoginAction] (default task-11) Attr: SecurityContext cz.cmhb.portal.service.security.to.AuthenticationDetail@42854171
> 2015-10-01 14:44:57,513 DEBUG [cz.cmhb.portal.app.informatorium.web.login.actions.DoLoginAction] (default task-11) Attr: MujTestovaciAttribut JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:57,517 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-11) Passivate session: UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_ source: org.wildfly.clustering.web.session.ImmutableHttpSessionAdapter@3da617f0
> 2015-10-01 14:44:57,517 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-11) Attr: DebugSessionBindingListener cz.cmhb.portal.app.informatorium.listener.DebugSessionBindingListener@30106cdc
> 2015-10-01 14:44:57,518 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-11) Attr: DebugSessionActivationListener cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener@55c05af0
> 2015-10-01 14:44:57,518 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-11) Attr: SecurityContext cz.cmhb.portal.service.security.to.AuthenticationDetail@42854171
> 2015-10-01 14:44:57,518 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionActivationListener] (default task-11) Attr: MujTestovaciAttribut JakozeMusiBytNaTeSessionPorad!!!
> 2015-10-01 14:44:57,519 TRACE [org.wildfly.clustering.web.infinispan] (default task-11) Session UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_ will expire in 120000 ms
> 2015-10-01 14:44:57,527 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-11) Attribute added : __MessageStoreInterceptor_ActionErrors_SessionKey : [] session: UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_ source: io.undertow.servlet.spec.HttpSessionImpl@348126fd
> 2015-10-01 14:44:57,527 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-11) Attribute added : __MessageStoreInterceptor_ActionMessages_SessionKey : [] session: UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_ source: io.undertow.servlet.spec.HttpSessionImpl@348126fd
> 2015-10-01 14:44:57,528 DEBUG [cz.cmhb.portal.app.informatorium.listener.DebugSessionAttributteListener] (default task-11) Attribute added : __MessageStoreInterceptor_FieldErrors_SessionKey : {} session: UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_ source: io.undertow.servlet.spec.HttpSessionImpl@348126fd
> 2015-10-01 14:44:57,736 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-12) Process URI /home-page(isUriSecure=false)
> 2015-10-01 14:44:57,737 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-12) GET: Session id = UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_
> 2015-10-01 14:44:57,737 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-12) securityContext is NULL, session id = UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_
> 2015-10-01 14:44:57,738 ERROR [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-12) Unauthorized access, you must login before
> 2015-10-01 14:44:57,739 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-12) Sending redirect = /informatorium/login?backUrl=/informatorium/home-page
> 2015-10-01 14:44:57,743 TRACE [org.wildfly.clustering.web.infinispan] (default task-12) Session UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_ will expire in 120000 ms
> 2015-10-01 14:44:57,867 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-13) Process URI /login(isUriSecure=true)
> 2015-10-01 14:44:57,868 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-13) GET: Session id = UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_
> 2015-10-01 14:44:57,868 DEBUG [cz.cmhb.portal.service.security.remoting.SessionSecurityContextHolderSetterFilter] (default task-13) securityContext is NULL, session id = UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_
> 2015-10-01 14:44:58,128 TRACE [org.wildfly.clustering.web.infinispan] (default task-13) Session UcZtmad7hG2alDsqlrb2OykXULT4AJBv7UAzmWz_ will expire in 120000 ms
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years
[JBoss JIRA] (WFLY-5449) Custom socket factory for JGroups subsystem not set correctly
by Paul Ferraro (JIRA)
[ https://issues.jboss.org/browse/WFLY-5449?page=com.atlassian.jira.plugin.... ]
Paul Ferraro updated WFLY-5449:
-------------------------------
Fix Version/s: 11.0.0.Alpha1
> Custom socket factory for JGroups subsystem not set correctly
> -------------------------------------------------------------
>
> Key: WFLY-5449
> URL: https://issues.jboss.org/browse/WFLY-5449
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 10.0.0.CR2
> Reporter: Dennis Reed
> Assignee: Paul Ferraro
>
> Wildfly's JChannelFactory tries to set a custom socket factory on the JGroups transport.
> This is not the correct API to use, and it gets overwritten when the JGroups channel starts.
> A custom socket factory should be set on the JChannel.
> The only time the custom socket factory is currently used is if there's a race condition where two channels are started at the same time, and the custom factory is set just before the other channel uses it.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years
[JBoss JIRA] (WFLY-5449) Custom socket factory for JGroups subsystem not set correctly
by Paul Ferraro (JIRA)
[ https://issues.jboss.org/browse/WFLY-5449?page=com.atlassian.jira.plugin.... ]
Paul Ferraro updated WFLY-5449:
-------------------------------
Fix Version/s: (was: 11.0.0.Alpha1)
> Custom socket factory for JGroups subsystem not set correctly
> -------------------------------------------------------------
>
> Key: WFLY-5449
> URL: https://issues.jboss.org/browse/WFLY-5449
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 10.0.0.CR2
> Reporter: Dennis Reed
> Assignee: Paul Ferraro
>
> Wildfly's JChannelFactory tries to set a custom socket factory on the JGroups transport.
> This is not the correct API to use, and it gets overwritten when the JGroups channel starts.
> A custom socket factory should be set on the JChannel.
> The only time the custom socket factory is currently used is if there's a race condition where two channels are started at the same time, and the custom factory is set just before the other channel uses it.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years
[JBoss JIRA] (WFLY-5460) Deprecate JGroups shared transport
by Paul Ferraro (JIRA)
Paul Ferraro created WFLY-5460:
----------------------------------
Summary: Deprecate JGroups shared transport
Key: WFLY-5460
URL: https://issues.jboss.org/browse/WFLY-5460
Project: WildFly
Issue Type: Task
Components: Clustering
Affects Versions: 10.0.0.CR2
Reporter: Paul Ferraro
Assignee: Paul Ferraro
Shared transport is effectively deprecated (in favor of fork channels) and will be removed in the next JGroups release. We should anticipate this by deprecating the "shared" attribute.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years
[JBoss JIRA] (WFLY-5459) Rename JGroups-related attributes
by Jeff Mesnil (JIRA)
[ https://issues.jboss.org/browse/WFLY-5459?page=com.atlassian.jira.plugin.... ]
Jeff Mesnil commented on WFLY-5459:
-----------------------------------
Once WFLY-5189 is fixed, these jgroups-stack and jgroups-channel attributes should be renamed to reflect their correct semantics.
> Rename JGroups-related attributes
> ---------------------------------
>
> Key: WFLY-5459
> URL: https://issues.jboss.org/browse/WFLY-5459
> Project: WildFly
> Issue Type: Bug
> Components: JMS
> Affects Versions: 10.0.0.CR2
> Reporter: Jeff Mesnil
> Assignee: Jeff Mesnil
>
> Based on Paul feedback in https://github.com/wildfly/wildfly/pull/8221#issuecomment-145013596:
> {quote}You may want to consider renaming these attributes, however, since the names are now a little confusing. For example, jgroups-stack is perhaps better described as jgroups-channel-factory, since it can specify either a stack name or a channel name. jgroups-channel is also confusing in this context, since this specifies either the cluster name, in the case where jgroups-stack specifies a stack; or the fork name, in the case where the jgroups-stack specifies a channel name. Perhaps jgroups-cluster-name is a better choice?{quote}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years
[JBoss JIRA] (WFLY-4678) IllegalStateException when accessing DistributableCache
by Michal Vinkler (JIRA)
[ https://issues.jboss.org/browse/WFLY-4678?page=com.atlassian.jira.plugin.... ]
Michal Vinkler edited comment on WFLY-4678 at 10/2/15 9:18 AM:
---------------------------------------------------------------
This issue is still present in EAP 7.0.0.DR11:
scenario ejb-ejbservlet-shutdown-repl-sync, during server shutdown
{code}
[JBossINF] [0m[0m18:34:22,014 INFO [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0211: Suspending server with 300000ms timeout.
[JBossINF] [0m[0m18:34:22,019 INFO [org.jboss.as.server] (Thread-2) WFLYSRV0220: Server shutdown has been requested.
2015/09/29 18:34:22:050 EDT [DEBUG][RMI TCP Connection(20)-10.16.90.52] HOST perf17.mw.lab.eng.bos.redhat.com:rootProcess:c - [SHUTDOWN] JBossShutdown command executed successfully.
2015/09/29 18:34:22:050 EDT [DEBUG][RMI TCP Connection(20)-10.16.90.52] HOST perf17.mw.lab.eng.bos.redhat.com:rootProcess:c - Waiting for server to shutdown.
[JBossINF] [0m[0m18:34:22,099 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 77) WFLYUT0022: Unregistered web context: /clusterbench
[JBossINF] [0m[0m18:34:22,099 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 76) WFLYUT0022: Unregistered web context: /clusterbench-passivating
[JBossINF] [0m[0m18:34:22,127 INFO [org.infinispan.eviction.impl.PassivationManagerImpl] (ServerService Thread Pool -- 80) ISPN000029: Passivating all entries to disk
[JBossINF] [0m[0m18:34:22,148 INFO [org.infinispan.eviction.impl.PassivationManagerImpl] (ServerService Thread Pool -- 83) ISPN000029: Passivating all entries to disk
[JBossINF] [0m[0m18:34:22,150 INFO [org.infinispan.eviction.impl.PassivationManagerImpl] (ServerService Thread Pool -- 83) ISPN000030: Passivated 0 entries in 1 milliseconds
[JBossINF] [0m[0m18:34:22,160 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 83) WFLYCLINF0003: Stopped clusterbench-ee7.ear.clusterbench-ee7-web-passivating.war cache from web container
[JBossINF] [0m[0m18:34:22,302 INFO [org.infinispan.eviction.impl.PassivationManagerImpl] (ServerService Thread Pool -- 80) ISPN000030: Passivated 4018 entries in 175 milliseconds
[JBossINF] [0m[31m18:34:28,126 ERROR [org.infinispan.interceptors.InvocationContextInterceptor] (default task-88) ISPN000136: Execution error: java.lang.IllegalStateException: Transaction DummyTransaction{xid=DummyXid{id=80620}, status=1} is not in a valid state to be invoking cache operations on.
[JBossINF] at org.infinispan.interceptors.TxInterceptor.enlist(TxInterceptor.java:388)
[JBossINF] at org.infinispan.interceptors.TxInterceptor.enlistWriteAndInvokeNext(TxInterceptor.java:357)
[JBossINF] at org.infinispan.interceptors.TxInterceptor.visitRemoveCommand(TxInterceptor.java:230)
[JBossINF] at org.infinispan.commands.write.RemoveCommand.acceptVisitor(RemoveCommand.java:59)
[JBossINF] at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:99)
[JBossINF] at org.infinispan.interceptors.base.CommandInterceptor.handleDefault(CommandInterceptor.java:113)
[JBossINF] at org.infinispan.commands.AbstractVisitor.visitRemoveCommand(AbstractVisitor.java:48)
[JBossINF] at org.infinispan.commands.write.RemoveCommand.acceptVisitor(RemoveCommand.java:59)
[JBossINF] at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:99)
[JBossINF] at org.infinispan.statetransfer.StateTransferInterceptor.handleTxWriteCommand(StateTransferInterceptor.java:304)
[JBossINF] at org.infinispan.statetransfer.StateTransferInterceptor.handleWriteCommand(StateTransferInterceptor.java:286)
[JBossINF] at org.infinispan.statetransfer.StateTransferInterceptor.visitRemoveCommand(StateTransferInterceptor.java:123)
[JBossINF] at org.infinispan.commands.write.RemoveCommand.acceptVisitor(RemoveCommand.java:59)
[JBossINF] at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:99)
[JBossINF] at org.infinispan.interceptors.CacheMgmtInterceptor.visitRemoveCommand(CacheMgmtInterceptor.java:209)
[JBossINF] at org.infinispan.commands.write.RemoveCommand.acceptVisitor(RemoveCommand.java:59)
[JBossINF] at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:99)
[JBossINF] at org.infinispan.interceptors.InvocationContextInterceptor.handleAll(InvocationContextInterceptor.java:102)
[JBossINF] at org.infinispan.interceptors.InvocationContextInterceptor.handleDefault(InvocationContextInterceptor.java:71)
[JBossINF] at org.infinispan.commands.AbstractVisitor.visitRemoveCommand(AbstractVisitor.java:48)
[JBossINF] at org.infinispan.commands.write.RemoveCommand.acceptVisitor(RemoveCommand.java:59)
[JBossINF] at org.infinispan.interceptors.InterceptorChain.invoke(InterceptorChain.java:336)
[JBossINF] at org.infinispan.cache.impl.CacheImpl.executeCommandAndCommitIfNeeded(CacheImpl.java:1634)
[JBossINF] at org.infinispan.cache.impl.CacheImpl.removeInternal(CacheImpl.java:558)
[JBossINF] at org.infinispan.cache.impl.CacheImpl.remove(CacheImpl.java:549)
[JBossINF] at org.infinispan.cache.impl.DecoratedCache.remove(DecoratedCache.java:452)
[JBossINF] at org.infinispan.cache.impl.AbstractDelegatingCache.remove(AbstractDelegatingCache.java:296)
[JBossINF] at org.wildfly.clustering.web.infinispan.session.coarse.CoarseSessionFactory.remove(CoarseSessionFactory.java:197)
[JBossINF] at org.wildfly.clustering.web.infinispan.session.coarse.CoarseSessionFactory.remove(CoarseSessionFactory.java:66)
[JBossINF] at org.wildfly.clustering.web.infinispan.session.InfinispanSession.invalidate(InfinispanSession.java:68)
[JBossINF] at org.wildfly.clustering.web.infinispan.session.InfinispanSessionManager.findSession(InfinispanSessionManager.java:238)
[JBossINF] at org.wildfly.clustering.web.undertow.session.DistributableSessionManager.getSession(DistributableSessionManager.java:124)
[JBossINF] at io.undertow.servlet.spec.ServletContextImpl.getSession(ServletContextImpl.java:725)
[JBossINF] at io.undertow.servlet.spec.ServletContextImpl.getSession(ServletContextImpl.java:755)
[JBossINF] at io.undertow.servlet.spec.ServletContextImpl.updateSessionAccessTime(ServletContextImpl.java:759)
[JBossINF] at io.undertow.servlet.spec.HttpServletResponseImpl.responseDone(HttpServletResponseImpl.java:554)
[JBossINF] at io.undertow.servlet.spec.HttpServletResponseImpl.doErrorDispatch(HttpServletResponseImpl.java:165)
[JBossINF] at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:319)
[JBossINF] at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:263)
[JBossINF] at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:81)
[JBossINF] at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:174)
[JBossINF] at io.undertow.server.Connectors.executeRootHandler(Connectors.java:198)
[JBossINF] at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:784)
[JBossINF] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
[JBossINF] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
[JBossINF] at java.lang.Thread.run(Thread.java:745)
{code}
Server log:
http://jenkins.mw.lab.eng.bos.redhat.com/hudson/job/eap-7x-failover-ejb-e...
was (Author: mvinkler):
This issue is still present in EAP 7.0.0.DR11:
scenario ejb-ejbservlet-shutdown-repl-sync, during server shutdown
{code}
[JBossINF] [0m[0m18:34:22,014 INFO [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0211: Suspending server with 300000ms timeout.
[JBossINF] [0m[0m18:34:22,019 INFO [org.jboss.as.server] (Thread-2) WFLYSRV0220: Server shutdown has been requested.
2015/09/29 18:34:22:050 EDT [DEBUG][RMI TCP Connection(20)-10.16.90.52] HOST perf17.mw.lab.eng.bos.redhat.com:rootProcess:c - [SHUTDOWN] JBossShutdown command executed successfully.
2015/09/29 18:34:22:050 EDT [DEBUG][RMI TCP Connection(20)-10.16.90.52] HOST perf17.mw.lab.eng.bos.redhat.com:rootProcess:c - Waiting for server to shutdown.
[JBossINF] [0m[0m18:34:22,099 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 77) WFLYUT0022: Unregistered web context: /clusterbench
[JBossINF] [0m[0m18:34:22,099 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 76) WFLYUT0022: Unregistered web context: /clusterbench-passivating
[JBossINF] [0m[0m18:34:22,127 INFO [org.infinispan.eviction.impl.PassivationManagerImpl] (ServerService Thread Pool -- 80) ISPN000029: Passivating all entries to disk
[JBossINF] [0m[0m18:34:22,148 INFO [org.infinispan.eviction.impl.PassivationManagerImpl] (ServerService Thread Pool -- 83) ISPN000029: Passivating all entries to disk
[JBossINF] [0m[0m18:34:22,150 INFO [org.infinispan.eviction.impl.PassivationManagerImpl] (ServerService Thread Pool -- 83) ISPN000030: Passivated 0 entries in 1 milliseconds
[JBossINF] [0m[0m18:34:22,160 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 83) WFLYCLINF0003: Stopped clusterbench-ee7.ear.clusterbench-ee7-web-passivating.war cache from web container
[JBossINF] [0m[0m18:34:22,302 INFO [org.infinispan.eviction.impl.PassivationManagerImpl] (ServerService Thread Pool -- 80) ISPN000030: Passivated 4018 entries in 175 milliseconds
[JBossINF] [0m[31m18:34:28,126 ERROR [org.infinispan.interceptors.InvocationContextInterceptor] (default task-88) ISPN000136: Execution error: java.lang.IllegalStateException: Transaction DummyTransaction{xid=DummyXid{id=80620}, status=1} is not in a valid state to be invoking cache operations on.
[JBossINF] at org.infinispan.interceptors.TxInterceptor.enlist(TxInterceptor.java:388)
[JBossINF] at org.infinispan.interceptors.TxInterceptor.enlistWriteAndInvokeNext(TxInterceptor.java:357)
[JBossINF] at org.infinispan.interceptors.TxInterceptor.visitRemoveCommand(TxInterceptor.java:230)
[JBossINF] at org.infinispan.commands.write.RemoveCommand.acceptVisitor(RemoveCommand.java:59)
[JBossINF] at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:99)
[JBossINF] at org.infinispan.interceptors.base.CommandInterceptor.handleDefault(CommandInterceptor.java:113)
[JBossINF] at org.infinispan.commands.AbstractVisitor.visitRemoveCommand(AbstractVisitor.java:48)
[JBossINF] at org.infinispan.commands.write.RemoveCommand.acceptVisitor(RemoveCommand.java:59)
[JBossINF] at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:99)
[JBossINF] at org.infinispan.statetransfer.StateTransferInterceptor.handleTxWriteCommand(StateTransferInterceptor.java:304)
[JBossINF] at org.infinispan.statetransfer.StateTransferInterceptor.handleWriteCommand(StateTransferInterceptor.java:286)
[JBossINF] at org.infinispan.statetransfer.StateTransferInterceptor.visitRemoveCommand(StateTransferInterceptor.java:123)
[JBossINF] at org.infinispan.commands.write.RemoveCommand.acceptVisitor(RemoveCommand.java:59)
[JBossINF] at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:99)
[JBossINF] at org.infinispan.interceptors.CacheMgmtInterceptor.visitRemoveCommand(CacheMgmtInterceptor.java:209)
[JBossINF] at org.infinispan.commands.write.RemoveCommand.acceptVisitor(RemoveCommand.java:59)
[JBossINF] at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:99)
[JBossINF] at org.infinispan.interceptors.InvocationContextInterceptor.handleAll(InvocationContextInterceptor.java:102)
[JBossINF] at org.infinispan.interceptors.InvocationContextInterceptor.handleDefault(InvocationContextInterceptor.java:71)
[JBossINF] at org.infinispan.commands.AbstractVisitor.visitRemoveCommand(AbstractVisitor.java:48)
[JBossINF] at org.infinispan.commands.write.RemoveCommand.acceptVisitor(RemoveCommand.java:59)
[JBossINF] at org.infinispan.interceptors.InterceptorChain.invoke(InterceptorChain.java:336)
[JBossINF] at org.infinispan.cache.impl.CacheImpl.executeCommandAndCommitIfNeeded(CacheImpl.java:1634)
[JBossINF] at org.infinispan.cache.impl.CacheImpl.removeInternal(CacheImpl.java:558)
[JBossINF] at org.infinispan.cache.impl.CacheImpl.remove(CacheImpl.java:549)
[JBossINF] at org.infinispan.cache.impl.DecoratedCache.remove(DecoratedCache.java:452)
[JBossINF] at org.infinispan.cache.impl.AbstractDelegatingCache.remove(AbstractDelegatingCache.java:296)
[JBossINF] at org.wildfly.clustering.web.infinispan.session.coarse.CoarseSessionFactory.remove(CoarseSessionFactory.java:197)
[JBossINF] at org.wildfly.clustering.web.infinispan.session.coarse.CoarseSessionFactory.remove(CoarseSessionFactory.java:66)
[JBossINF] at org.wildfly.clustering.web.infinispan.session.InfinispanSession.invalidate(InfinispanSession.java:68)
[JBossINF] at org.wildfly.clustering.web.infinispan.session.InfinispanSessionManager.findSession(InfinispanSessionManager.java:238)
[JBossINF] at org.wildfly.clustering.web.undertow.session.DistributableSessionManager.getSession(DistributableSessionManager.java:124)
[JBossINF] at io.undertow.servlet.spec.ServletContextImpl.getSession(ServletContextImpl.java:725)
[JBossINF] at io.undertow.servlet.spec.ServletContextImpl.getSession(ServletContextImpl.java:755)
[JBossINF] at io.undertow.servlet.spec.ServletContextImpl.updateSessionAccessTime(ServletContextImpl.java:759)
[JBossINF] at io.undertow.servlet.spec.HttpServletResponseImpl.responseDone(HttpServletResponseImpl.java:554)
[JBossINF] at io.undertow.servlet.spec.HttpServletResponseImpl.doErrorDispatch(HttpServletResponseImpl.java:165)
[JBossINF] at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:319)
[JBossINF] at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:263)
[JBossINF] at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:81)
[JBossINF] at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:174)
[JBossINF] at io.undertow.server.Connectors.executeRootHandler(Connectors.java:198)
[JBossINF] at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:784)
[JBossINF] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
[JBossINF] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
[JBossINF] at java.lang.Thread.run(Thread.java:745)
{code}
> IllegalStateException when accessing DistributableCache
> -------------------------------------------------------
>
> Key: WFLY-4678
> URL: https://issues.jboss.org/browse/WFLY-4678
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 9.0.0.CR1, 10.0.0.Alpha1, 10.0.0.CR2
> Reporter: Richard Achmatowicz
> Assignee: Paul Ferraro
> Fix For: 9.0.0.CR2, 10.0.0.Alpha2
>
>
> When making invocations on SFSBs in a cluster, the following exception arises:
> {noformat}
> [0m[31m17:58:44,853 ERROR [org.infinispan.interceptors.InvocationContextInterceptor] (EJB default - 2) ISPN000136: Execution error: java.lang.IllegalStateException: Transaction DummyTransaction{xid=DummyXid{id=5}, status=3} is not in a valid state to be invoking cache operations on.
> at org.infinispan.interceptors.TxInterceptor.enlist(TxInterceptor.java:389)
> at org.infinispan.interceptors.TxInterceptor.enlistIfNeeded(TxInterceptor.java:351)
> at org.infinispan.interceptors.TxInterceptor.enlistReadAndInvokeNext(TxInterceptor.java:345)
> at org.infinispan.interceptors.TxInterceptor.visitGetKeyValueCommand(TxInterceptor.java:318)
> at org.infinispan.commands.read.GetKeyValueCommand.acceptVisitor(GetKeyValueCommand.java:40)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:97)
> at org.infinispan.interceptors.base.CommandInterceptor.handleDefault(CommandInterceptor.java:111)
> at org.infinispan.commands.AbstractVisitor.visitGetKeyValueCommand(AbstractVisitor.java:86)
> at org.infinispan.commands.read.GetKeyValueCommand.acceptVisitor(GetKeyValueCommand.java:40)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:97)
> at org.infinispan.statetransfer.StateTransferInterceptor.handleTopologyAffectedCommand(StateTransferInterceptor.java:369)
> at org.infinispan.statetransfer.StateTransferInterceptor.handleDefault(StateTransferInterceptor.java:354)
> at org.infinispan.commands.AbstractVisitor.visitGetKeyValueCommand(AbstractVisitor.java:86)
> at org.infinispan.commands.read.GetKeyValueCommand.acceptVisitor(GetKeyValueCommand.java:40)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:97)
> at org.infinispan.interceptors.CacheMgmtInterceptor.visitDataReadCommand(CacheMgmtInterceptor.java:103)
> at org.infinispan.interceptors.CacheMgmtInterceptor.visitGetKeyValueCommand(CacheMgmtInterceptor.java:91)
> at org.infinispan.commands.read.GetKeyValueCommand.acceptVisitor(GetKeyValueCommand.java:40)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:97)
> at org.infinispan.interceptors.InvocationContextInterceptor.handleAll(InvocationContextInterceptor.java:102)
> at org.infinispan.interceptors.InvocationContextInterceptor.handleDefault(InvocationContextInterceptor.java:71)
> at org.infinispan.commands.AbstractVisitor.visitGetKeyValueCommand(AbstractVisitor.java:86)
> at org.infinispan.commands.read.GetKeyValueCommand.acceptVisitor(GetKeyValueCommand.java:40)
> at org.infinispan.interceptors.InterceptorChain.invoke(InterceptorChain.java:336)
> at org.infinispan.cache.impl.CacheImpl.get(CacheImpl.java:430)
> at org.infinispan.cache.impl.DecoratedCache.get(DecoratedCache.java:427)
> at org.infinispan.cache.impl.AbstractDelegatingCache.get(AbstractDelegatingCache.java:287)
> at org.wildfly.clustering.ejb.infinispan.bean.InfinispanBeanFactory.findValue(InfinispanBeanFactory.java:88)
> at org.wildfly.clustering.ejb.infinispan.bean.InfinispanBeanFactory.findValue(InfinispanBeanFactory.java:51)
> at org.wildfly.clustering.ejb.infinispan.InfinispanBeanManager.findBean(InfinispanBeanManager.java:261)
> at org.jboss.as.ejb3.cache.distributable.DistributableCache.get(DistributableCache.java:115)
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years
[JBoss JIRA] (WFLY-5459) Rename JGroups-related attributes
by Jeff Mesnil (JIRA)
Jeff Mesnil created WFLY-5459:
---------------------------------
Summary: Rename JGroups-related attributes
Key: WFLY-5459
URL: https://issues.jboss.org/browse/WFLY-5459
Project: WildFly
Issue Type: Bug
Components: JMS
Affects Versions: 10.0.0.CR2
Reporter: Jeff Mesnil
Assignee: Jeff Mesnil
Based on Paul feedback in https://github.com/wildfly/wildfly/pull/8221#issuecomment-145013596:
{quote}You may want to consider renaming these attributes, however, since the names are now a little confusing. For example, jgroups-stack is perhaps better described as jgroups-channel-factory, since it can specify either a stack name or a channel name. jgroups-channel is also confusing in this context, since this specifies either the cluster name, in the case where jgroups-stack specifies a stack; or the fork name, in the case where the jgroups-stack specifies a channel name. Perhaps jgroups-cluster-name is a better choice?{quote}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years
[JBoss JIRA] (WFLY-4678) IllegalStateException when accessing DistributableCache
by Michal Vinkler (JIRA)
[ https://issues.jboss.org/browse/WFLY-4678?page=com.atlassian.jira.plugin.... ]
Michal Vinkler updated WFLY-4678:
---------------------------------
Affects Version/s: 10.0.0.CR2
> IllegalStateException when accessing DistributableCache
> -------------------------------------------------------
>
> Key: WFLY-4678
> URL: https://issues.jboss.org/browse/WFLY-4678
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 9.0.0.CR1, 10.0.0.Alpha1, 10.0.0.CR2
> Reporter: Richard Achmatowicz
> Assignee: Paul Ferraro
> Fix For: 9.0.0.CR2, 10.0.0.Alpha2
>
>
> When making invocations on SFSBs in a cluster, the following exception arises:
> {noformat}
> [0m[31m17:58:44,853 ERROR [org.infinispan.interceptors.InvocationContextInterceptor] (EJB default - 2) ISPN000136: Execution error: java.lang.IllegalStateException: Transaction DummyTransaction{xid=DummyXid{id=5}, status=3} is not in a valid state to be invoking cache operations on.
> at org.infinispan.interceptors.TxInterceptor.enlist(TxInterceptor.java:389)
> at org.infinispan.interceptors.TxInterceptor.enlistIfNeeded(TxInterceptor.java:351)
> at org.infinispan.interceptors.TxInterceptor.enlistReadAndInvokeNext(TxInterceptor.java:345)
> at org.infinispan.interceptors.TxInterceptor.visitGetKeyValueCommand(TxInterceptor.java:318)
> at org.infinispan.commands.read.GetKeyValueCommand.acceptVisitor(GetKeyValueCommand.java:40)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:97)
> at org.infinispan.interceptors.base.CommandInterceptor.handleDefault(CommandInterceptor.java:111)
> at org.infinispan.commands.AbstractVisitor.visitGetKeyValueCommand(AbstractVisitor.java:86)
> at org.infinispan.commands.read.GetKeyValueCommand.acceptVisitor(GetKeyValueCommand.java:40)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:97)
> at org.infinispan.statetransfer.StateTransferInterceptor.handleTopologyAffectedCommand(StateTransferInterceptor.java:369)
> at org.infinispan.statetransfer.StateTransferInterceptor.handleDefault(StateTransferInterceptor.java:354)
> at org.infinispan.commands.AbstractVisitor.visitGetKeyValueCommand(AbstractVisitor.java:86)
> at org.infinispan.commands.read.GetKeyValueCommand.acceptVisitor(GetKeyValueCommand.java:40)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:97)
> at org.infinispan.interceptors.CacheMgmtInterceptor.visitDataReadCommand(CacheMgmtInterceptor.java:103)
> at org.infinispan.interceptors.CacheMgmtInterceptor.visitGetKeyValueCommand(CacheMgmtInterceptor.java:91)
> at org.infinispan.commands.read.GetKeyValueCommand.acceptVisitor(GetKeyValueCommand.java:40)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:97)
> at org.infinispan.interceptors.InvocationContextInterceptor.handleAll(InvocationContextInterceptor.java:102)
> at org.infinispan.interceptors.InvocationContextInterceptor.handleDefault(InvocationContextInterceptor.java:71)
> at org.infinispan.commands.AbstractVisitor.visitGetKeyValueCommand(AbstractVisitor.java:86)
> at org.infinispan.commands.read.GetKeyValueCommand.acceptVisitor(GetKeyValueCommand.java:40)
> at org.infinispan.interceptors.InterceptorChain.invoke(InterceptorChain.java:336)
> at org.infinispan.cache.impl.CacheImpl.get(CacheImpl.java:430)
> at org.infinispan.cache.impl.DecoratedCache.get(DecoratedCache.java:427)
> at org.infinispan.cache.impl.AbstractDelegatingCache.get(AbstractDelegatingCache.java:287)
> at org.wildfly.clustering.ejb.infinispan.bean.InfinispanBeanFactory.findValue(InfinispanBeanFactory.java:88)
> at org.wildfly.clustering.ejb.infinispan.bean.InfinispanBeanFactory.findValue(InfinispanBeanFactory.java:51)
> at org.wildfly.clustering.ejb.infinispan.InfinispanBeanManager.findBean(InfinispanBeanManager.java:261)
> at org.jboss.as.ejb3.cache.distributable.DistributableCache.get(DistributableCache.java:115)
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years
[JBoss JIRA] (WFLY-4678) IllegalStateException when accessing DistributableCache
by Michal Vinkler (JIRA)
[ https://issues.jboss.org/browse/WFLY-4678?page=com.atlassian.jira.plugin.... ]
Michal Vinkler reopened WFLY-4678:
----------------------------------
This issue is still present in EAP 7.0.0.DR11:
scenario ejb-ejbservlet-shutdown-repl-sync, during server shutdown
{code}
[JBossINF] [0m[0m18:34:22,014 INFO [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0211: Suspending server with 300000ms timeout.
[JBossINF] [0m[0m18:34:22,019 INFO [org.jboss.as.server] (Thread-2) WFLYSRV0220: Server shutdown has been requested.
2015/09/29 18:34:22:050 EDT [DEBUG][RMI TCP Connection(20)-10.16.90.52] HOST perf17.mw.lab.eng.bos.redhat.com:rootProcess:c - [SHUTDOWN] JBossShutdown command executed successfully.
2015/09/29 18:34:22:050 EDT [DEBUG][RMI TCP Connection(20)-10.16.90.52] HOST perf17.mw.lab.eng.bos.redhat.com:rootProcess:c - Waiting for server to shutdown.
[JBossINF] [0m[0m18:34:22,099 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 77) WFLYUT0022: Unregistered web context: /clusterbench
[JBossINF] [0m[0m18:34:22,099 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 76) WFLYUT0022: Unregistered web context: /clusterbench-passivating
[JBossINF] [0m[0m18:34:22,127 INFO [org.infinispan.eviction.impl.PassivationManagerImpl] (ServerService Thread Pool -- 80) ISPN000029: Passivating all entries to disk
[JBossINF] [0m[0m18:34:22,148 INFO [org.infinispan.eviction.impl.PassivationManagerImpl] (ServerService Thread Pool -- 83) ISPN000029: Passivating all entries to disk
[JBossINF] [0m[0m18:34:22,150 INFO [org.infinispan.eviction.impl.PassivationManagerImpl] (ServerService Thread Pool -- 83) ISPN000030: Passivated 0 entries in 1 milliseconds
[JBossINF] [0m[0m18:34:22,160 INFO [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 83) WFLYCLINF0003: Stopped clusterbench-ee7.ear.clusterbench-ee7-web-passivating.war cache from web container
[JBossINF] [0m[0m18:34:22,302 INFO [org.infinispan.eviction.impl.PassivationManagerImpl] (ServerService Thread Pool -- 80) ISPN000030: Passivated 4018 entries in 175 milliseconds
[JBossINF] [0m[31m18:34:28,126 ERROR [org.infinispan.interceptors.InvocationContextInterceptor] (default task-88) ISPN000136: Execution error: java.lang.IllegalStateException: Transaction DummyTransaction{xid=DummyXid{id=80620}, status=1} is not in a valid state to be invoking cache operations on.
[JBossINF] at org.infinispan.interceptors.TxInterceptor.enlist(TxInterceptor.java:388)
[JBossINF] at org.infinispan.interceptors.TxInterceptor.enlistWriteAndInvokeNext(TxInterceptor.java:357)
[JBossINF] at org.infinispan.interceptors.TxInterceptor.visitRemoveCommand(TxInterceptor.java:230)
[JBossINF] at org.infinispan.commands.write.RemoveCommand.acceptVisitor(RemoveCommand.java:59)
[JBossINF] at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:99)
[JBossINF] at org.infinispan.interceptors.base.CommandInterceptor.handleDefault(CommandInterceptor.java:113)
[JBossINF] at org.infinispan.commands.AbstractVisitor.visitRemoveCommand(AbstractVisitor.java:48)
[JBossINF] at org.infinispan.commands.write.RemoveCommand.acceptVisitor(RemoveCommand.java:59)
[JBossINF] at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:99)
[JBossINF] at org.infinispan.statetransfer.StateTransferInterceptor.handleTxWriteCommand(StateTransferInterceptor.java:304)
[JBossINF] at org.infinispan.statetransfer.StateTransferInterceptor.handleWriteCommand(StateTransferInterceptor.java:286)
[JBossINF] at org.infinispan.statetransfer.StateTransferInterceptor.visitRemoveCommand(StateTransferInterceptor.java:123)
[JBossINF] at org.infinispan.commands.write.RemoveCommand.acceptVisitor(RemoveCommand.java:59)
[JBossINF] at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:99)
[JBossINF] at org.infinispan.interceptors.CacheMgmtInterceptor.visitRemoveCommand(CacheMgmtInterceptor.java:209)
[JBossINF] at org.infinispan.commands.write.RemoveCommand.acceptVisitor(RemoveCommand.java:59)
[JBossINF] at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:99)
[JBossINF] at org.infinispan.interceptors.InvocationContextInterceptor.handleAll(InvocationContextInterceptor.java:102)
[JBossINF] at org.infinispan.interceptors.InvocationContextInterceptor.handleDefault(InvocationContextInterceptor.java:71)
[JBossINF] at org.infinispan.commands.AbstractVisitor.visitRemoveCommand(AbstractVisitor.java:48)
[JBossINF] at org.infinispan.commands.write.RemoveCommand.acceptVisitor(RemoveCommand.java:59)
[JBossINF] at org.infinispan.interceptors.InterceptorChain.invoke(InterceptorChain.java:336)
[JBossINF] at org.infinispan.cache.impl.CacheImpl.executeCommandAndCommitIfNeeded(CacheImpl.java:1634)
[JBossINF] at org.infinispan.cache.impl.CacheImpl.removeInternal(CacheImpl.java:558)
[JBossINF] at org.infinispan.cache.impl.CacheImpl.remove(CacheImpl.java:549)
[JBossINF] at org.infinispan.cache.impl.DecoratedCache.remove(DecoratedCache.java:452)
[JBossINF] at org.infinispan.cache.impl.AbstractDelegatingCache.remove(AbstractDelegatingCache.java:296)
[JBossINF] at org.wildfly.clustering.web.infinispan.session.coarse.CoarseSessionFactory.remove(CoarseSessionFactory.java:197)
[JBossINF] at org.wildfly.clustering.web.infinispan.session.coarse.CoarseSessionFactory.remove(CoarseSessionFactory.java:66)
[JBossINF] at org.wildfly.clustering.web.infinispan.session.InfinispanSession.invalidate(InfinispanSession.java:68)
[JBossINF] at org.wildfly.clustering.web.infinispan.session.InfinispanSessionManager.findSession(InfinispanSessionManager.java:238)
[JBossINF] at org.wildfly.clustering.web.undertow.session.DistributableSessionManager.getSession(DistributableSessionManager.java:124)
[JBossINF] at io.undertow.servlet.spec.ServletContextImpl.getSession(ServletContextImpl.java:725)
[JBossINF] at io.undertow.servlet.spec.ServletContextImpl.getSession(ServletContextImpl.java:755)
[JBossINF] at io.undertow.servlet.spec.ServletContextImpl.updateSessionAccessTime(ServletContextImpl.java:759)
[JBossINF] at io.undertow.servlet.spec.HttpServletResponseImpl.responseDone(HttpServletResponseImpl.java:554)
[JBossINF] at io.undertow.servlet.spec.HttpServletResponseImpl.doErrorDispatch(HttpServletResponseImpl.java:165)
[JBossINF] at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:319)
[JBossINF] at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:263)
[JBossINF] at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:81)
[JBossINF] at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:174)
[JBossINF] at io.undertow.server.Connectors.executeRootHandler(Connectors.java:198)
[JBossINF] at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:784)
[JBossINF] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
[JBossINF] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
[JBossINF] at java.lang.Thread.run(Thread.java:745)
{code}
> IllegalStateException when accessing DistributableCache
> -------------------------------------------------------
>
> Key: WFLY-4678
> URL: https://issues.jboss.org/browse/WFLY-4678
> Project: WildFly
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 9.0.0.CR1, 10.0.0.Alpha1
> Reporter: Richard Achmatowicz
> Assignee: Paul Ferraro
> Fix For: 9.0.0.CR2, 10.0.0.Alpha2
>
>
> When making invocations on SFSBs in a cluster, the following exception arises:
> {noformat}
> [0m[31m17:58:44,853 ERROR [org.infinispan.interceptors.InvocationContextInterceptor] (EJB default - 2) ISPN000136: Execution error: java.lang.IllegalStateException: Transaction DummyTransaction{xid=DummyXid{id=5}, status=3} is not in a valid state to be invoking cache operations on.
> at org.infinispan.interceptors.TxInterceptor.enlist(TxInterceptor.java:389)
> at org.infinispan.interceptors.TxInterceptor.enlistIfNeeded(TxInterceptor.java:351)
> at org.infinispan.interceptors.TxInterceptor.enlistReadAndInvokeNext(TxInterceptor.java:345)
> at org.infinispan.interceptors.TxInterceptor.visitGetKeyValueCommand(TxInterceptor.java:318)
> at org.infinispan.commands.read.GetKeyValueCommand.acceptVisitor(GetKeyValueCommand.java:40)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:97)
> at org.infinispan.interceptors.base.CommandInterceptor.handleDefault(CommandInterceptor.java:111)
> at org.infinispan.commands.AbstractVisitor.visitGetKeyValueCommand(AbstractVisitor.java:86)
> at org.infinispan.commands.read.GetKeyValueCommand.acceptVisitor(GetKeyValueCommand.java:40)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:97)
> at org.infinispan.statetransfer.StateTransferInterceptor.handleTopologyAffectedCommand(StateTransferInterceptor.java:369)
> at org.infinispan.statetransfer.StateTransferInterceptor.handleDefault(StateTransferInterceptor.java:354)
> at org.infinispan.commands.AbstractVisitor.visitGetKeyValueCommand(AbstractVisitor.java:86)
> at org.infinispan.commands.read.GetKeyValueCommand.acceptVisitor(GetKeyValueCommand.java:40)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:97)
> at org.infinispan.interceptors.CacheMgmtInterceptor.visitDataReadCommand(CacheMgmtInterceptor.java:103)
> at org.infinispan.interceptors.CacheMgmtInterceptor.visitGetKeyValueCommand(CacheMgmtInterceptor.java:91)
> at org.infinispan.commands.read.GetKeyValueCommand.acceptVisitor(GetKeyValueCommand.java:40)
> at org.infinispan.interceptors.base.CommandInterceptor.invokeNextInterceptor(CommandInterceptor.java:97)
> at org.infinispan.interceptors.InvocationContextInterceptor.handleAll(InvocationContextInterceptor.java:102)
> at org.infinispan.interceptors.InvocationContextInterceptor.handleDefault(InvocationContextInterceptor.java:71)
> at org.infinispan.commands.AbstractVisitor.visitGetKeyValueCommand(AbstractVisitor.java:86)
> at org.infinispan.commands.read.GetKeyValueCommand.acceptVisitor(GetKeyValueCommand.java:40)
> at org.infinispan.interceptors.InterceptorChain.invoke(InterceptorChain.java:336)
> at org.infinispan.cache.impl.CacheImpl.get(CacheImpl.java:430)
> at org.infinispan.cache.impl.DecoratedCache.get(DecoratedCache.java:427)
> at org.infinispan.cache.impl.AbstractDelegatingCache.get(AbstractDelegatingCache.java:287)
> at org.wildfly.clustering.ejb.infinispan.bean.InfinispanBeanFactory.findValue(InfinispanBeanFactory.java:88)
> at org.wildfly.clustering.ejb.infinispan.bean.InfinispanBeanFactory.findValue(InfinispanBeanFactory.java:51)
> at org.wildfly.clustering.ejb.infinispan.InfinispanBeanManager.findBean(InfinispanBeanManager.java:261)
> at org.jboss.as.ejb3.cache.distributable.DistributableCache.get(DistributableCache.java:115)
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years