10 Replies Latest reply on Mar 24, 2009 11:00 AM by rudi1

    number of seam component limited?

    markeger

      Hi,


      today i ran in a strange issue. I built a lot of REST-resources as seam-components for my Webapplication. I found that there is no way to reach them if they are too many.


      The problem begins with a number of 180 components. 179 and all is fine. If I add one more, no matter if this is a REST-resource (with @Name Annotation) or just a 'normal' component, I can't reach even one of my resources. The Webapplication self is working correctly (so far I could see), even the as last initialized component. Only the webservice resources are not accessible.


      Anybody knows something about this issue?


      I found ::this:: thread, but is old and not exact the same problem I think.


      So, .. this is bug? I can't figure out why the components should be limited!


      I use:
      Seam 2.1.0.Beta (with the cool RESTeasy extension)
      JBoss AS 4.2.3GA

        • 1. Re: number of seam component limited?

          Does it throw an exception of some kind? (is there some stacktrace you could share here?) have you enabled log4j logging to see what is Seam doing when you try to access the component?

          • 2. Re: number of seam component limited?
            markeger

            No, there is no kind of exception or some other special output. Everything looks normal from outside. I have not use log4jlogging, so I don't know what is happend inside. I will see what I can find with log4j when I'am back at work tomorrow. Thanks so far for your reply.

            • 3. Re: number of seam component limited?
              markeger

              Hi,


              today I did a lot of tests and loggings but could not find some helpful information.


              I did the following test:
              - generating some components/classes
              - generating a fresh seam-gen project
              - put my generated components into the src folder, until a sum of 179 will be initialized by seam (in the fresh seam-gen projcet with icefaces-support I found 103 components already there, so at first I add 76 of my own components)


              The result: Everything works as expected (a call to call http://localhost:8080/myproject/seam/resource/rest/resource0 give me a correct response)


              - I add one more component to a totally sum of 180 in the environment and the response for same call is a HTTP Status 404


              The server-log said nothing about this call, maybe he isn't verbosely enough.


              So, at the moment, I dont know what could be a good next step to come closer to the root of this problem.


              Some suggestions?

              • 4. Re: number of seam component limited?
                markeger

                After some more tests i'am sure, that this issue has something to do with the RESTeasy integration. I've generated a lot of normal seam-components (over 250) as SLSBs with a xhtml-view (like 'seam-gen new-action' is doing) and perform random checks. As I could see, all tested components works fine.
                Then I added a really simple REST-resource:


                @Path("/hello/")
                @Name("aResource")
                public class AResource {
                
                    @GET
                    @ProduceMime("text/plain")
                    public String get( ) {
                        return "Hello World";
                    }
                }



                After calling this, there is only the 404 error until I reduce the number of components again to 179.


                I would like to know if somebody can reproduce this. Thx.

                • 5. Re: number of seam component limited?
                  christian.bauer

                  Post a DEBUG-level log of the org.jboss.seam category for the request that fails.


                  • 6. Re: number of seam component limited?
                    markeger

                    at first I post the output of the working example, then the one where is only one more component. the different I found at last:



                    179


                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.ui.resource.webResource
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.ui.resource.webResource
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.ui.resource.webResource
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.ui.graphicImage.graphicImageResource
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.ui.graphicImage.graphicImageResource
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.ui.graphicImage.graphicImageResource
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.captcha.captchaImage
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.captcha.captchaImage
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.captcha.captchaImage
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.resteasy.resourceAdapter
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.resteasy.resourceAdapter
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.resteasy.resourceAdapter
                    DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.resteasy.applicationConfig
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.remoting.remoting
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.remoting.remoting
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.remoting.remoting
                    DEBUG [org.jboss.seam.contexts.Lifecycle] Session started
                    INFO  [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.security.ruleBasedPermissionResolver
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.security.ruleBasedPermissionResolver
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.events
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.events
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.security.ruleBasedPermissionResolver
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.security.ruleBasedPermissionResolver
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.security.ruleBasedPermissionResolver
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@2720f6{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@e50f2c{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@473f4c{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@18caa36{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1fac733{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@12c1472{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@7e8bd9{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@f5e12{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@2cd301{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@d1223d{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1ee8c1{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@142db11{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@3c4c33{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: securityRules
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.securityRules
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.securityRules
                    DEBUG [org.jboss.seam.Component] initializing new instance of: securityRules
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1898b92{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.seam.Component] done initializing: securityRules
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@15c693a{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@112e9e6{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@ba3b30{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@680525{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@147480e{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@cbbdf3{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@fbca58{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@cd32e5{ url=null ,addedOrder=0}
                    INFO  [org.jboss.seam.drools.RuleBase] parsing rules: /security.drl
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.resourceLoader
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.resourceLoader
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.resourceLoader
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1b4fe4d{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@b2e9be{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@fe256{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@7fc620{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1ddcb{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.securityRules
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.security.ruleBasedPermissionResolver
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1f39cb2{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@3f348a{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.security.ruleBasedPermissionResolver
                    INFO  [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.security.identity
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.security.identity
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.security.identity
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.security.identity
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.security.identity
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.security.identity
                    DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.security.permissionMapper
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.security.rememberMe
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.security.rememberMe
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.security.rememberMe
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.security.rememberMe
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.security.rememberMe
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.security.rememberMe
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.security.credentials
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.security.credentials
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.security.credentials
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.security.credentials
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.security.credentials
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.security.credentials
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.security.identity
                    INFO  [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.web.session
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.web.session
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.web.session
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.web.session
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.web.session
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.web.session
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.web.session
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroyContext.CONVERSATION
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postDestroyContext.CONVERSATION
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroyContext.EVENT
                    DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.events
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.core.events
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postDestroyContext.EVENT
                    DEBUG [com.icesoft.faces.util.event.servlet.ContextEventRepeater] session Created event: 171EF7BC93D1A23809ABFC761CA02872
                    DEBUG [org.jboss.seam.navigation.Pages] reading pages.xml file: /WEB-INF/pages.xml
                    DEBUG [org.jboss.seam.resteasy.ResteasyResourceAdapter] processing REST request
                    DEBUG [org.jboss.seam.servlet.ContextualHttpServletRequest] beginning request
                    DEBUG [org.jboss.seam.contexts.ServletLifecycle] >>> Begin web request
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.web.servletContexts
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.events
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.events
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.web.servletContexts
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.web.servletContexts
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.web.servletContexts
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.web.servletContexts
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.web.servletContexts
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.conversationPropagation
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.conversationPropagation
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.conversationPropagation
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.conversationPropagation
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.conversationPropagation
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.conversationPropagation
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.manager
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.manager
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.manager
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.manager
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.manager
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.manager
                    DEBUG [org.jboss.seam.core.ConversationPropagation] Found conversation id in request parameter: null
                    DEBUG [org.jboss.seam.core.Manager] No stored conversation, or concurrent call to the stored conversation
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.ConversationIdGenerator
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.ConversationIdGenerator
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.ConversationIdGenerator
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.ConversationIdGenerator
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.ConversationIdGenerator
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.ConversationIdGenerator
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.ConversationIdGenerator
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.ConversationIdGenerator
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
                    DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.resteasy.applicationConfig
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.resteasy.applicationConfig
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.resteasy.applicationConfig
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.interpolator
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.interpolator
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.interpolator
                    DEBUG [org.jboss.seam.resteasy.ResteasyResourceAdapter] removing SeamResourceServlet url-pattern and dispatcher prefix from request path
                    DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.resteasy.applicationConfig
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.resteasy.applicationConfig
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.resteasy.applicationConfig
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
                    DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.resteasy.applicationConfig
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.resteasy.applicationConfig
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.resteasy.applicationConfig
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.interpolator
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.interpolator
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.interpolator
                    DEBUG [org.jboss.seam.resteasy.ResteasyResourceAdapter] final request path: /resource1
                    DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.resteasy.dispatcher
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.resteasy.dispatcher
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.resteasy.dispatcher
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
                    DEBUG [org.jboss.seam.Component] trying to inject with hierarchical context search: applicationConfig
                    DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.resteasy.applicationConfig
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.web.parameters
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.web.parameters
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.web.parameters
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.resteasy.dispatcher
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.resteasy.dispatcher
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
                    DEBUG [org.jboss.seam.Component] trying to inject with hierarchical context search: applicationConfig
                    DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.resteasy.applicationConfig
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.web.parameters
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.web.parameters
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.web.parameters
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: myResource1
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.myResource1
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.myResource1
                    DEBUG [org.jboss.seam.Component] initializing new instance of: myResource1
                    DEBUG [org.jboss.seam.Component] done initializing: myResource1
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.myResource1
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.myResource1
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.myResource1
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
                    DEBUG [org.jboss.seam.core.Manager] Discarding conversation state: 1
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.conversationEntries
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.conversationEntries
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.conversationEntries
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.conversationEntries
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.conversationEntries
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.conversationEntries
                    DEBUG [org.jboss.seam.contexts.ServletLifecycle] After request, destroying contexts
                    DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.transaction.transaction
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.transaction.transaction
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.transaction.transaction
                    DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.transaction.transaction
                    DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.transaction.transaction
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.transaction.transaction
                    DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
                    DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@17af435, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@801919{ url=null ,addedOrder=0}
                    DEBUG [org.jboss.seam.contexts.Contexts] destroying business process context
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroyContext.BUSINESS_PROCESS
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postDestroyContext.BUSINESS_PROCESS
                    DEBUG [org.jboss.seam.contexts.Contexts] destroying conversation context
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroyContext.CONVERSATION
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postDestroyContext.CONVERSATION
                    DEBUG [org.jboss.seam.contexts.Contexts] flushing server-side conversation context
                    DEBUG [org.jboss.seam.contexts.Contexts] flushing session context
                    DEBUG [org.jboss.seam.contexts.Contexts] destroying event context
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroyContext.EVENT
                    DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.conversationPropagation
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.core.conversationPropagation
                    DEBUG [org.jboss.seam.contexts.Contexts] destroying: myResource1
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.myResource1
                    DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.transaction.transaction
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.transaction.transaction
                    DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.manager
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.core.manager
                    DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.web.servletContexts
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.web.servletContexts
                    DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.events
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.core.events
                    DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postDestroyContext.EVENT
                    DEBUG [org.jboss.seam.contexts.ServletLifecycle] <<< End web request
                    DEBUG [org.jboss.seam.servlet.ContextualHttpServletRequest] ended request
                    DEBUG [org.jboss.seam.resteasy.ResteasyResourceAdapter] completed processing of REST request



                    • 7. Re: number of seam component limited?
                      markeger

                      180


                      DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - first pass <Sa, 13 Sep 2008 10:22:46>
                      DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] StatusModule: first pass 
                      DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_3] - TORecoveryModule - first pass
                      DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.firstpass] Local XARecoveryModule - first pass
                      DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - second pass <Sa, 13 Sep 2008 10:22:56>
                      DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] AtomicActionRecoveryModule: Second pass 
                      DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_6] - TORecoveryModule - second pass
                      DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.secondpass] Local XARecoveryModule - second pass
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.ui.resource.webResource
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.ui.resource.webResource
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.ui.resource.webResource
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.ui.graphicImage.graphicImageResource
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.ui.graphicImage.graphicImageResource
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.ui.graphicImage.graphicImageResource
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.captcha.captchaImage
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.captcha.captchaImage
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.captcha.captchaImage
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.resteasy.resourceAdapter
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.resteasy.resourceAdapter
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.resteasy.resourceAdapter
                      DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.resteasy.applicationConfig
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.remoting.remoting
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.remoting.remoting
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.remoting.remoting
                      DEBUG [org.jboss.seam.contexts.Lifecycle] Session started
                      INFO  [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.security.ruleBasedPermissionResolver
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.security.ruleBasedPermissionResolver
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.events
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.events
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.security.ruleBasedPermissionResolver
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.security.ruleBasedPermissionResolver
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.security.ruleBasedPermissionResolver
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@9f5b19{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@15df3f{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1f3b8bc{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1e54e00{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1641957{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@bbaccd{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@14dec09{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@c34fd9{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@130e03a{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1d13f05{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@808512{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1a07791{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@9e5f0{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: securityRules
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.securityRules
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.securityRules
                      DEBUG [org.jboss.seam.Component] initializing new instance of: securityRules
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1d723e6{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.seam.Component] done initializing: securityRules
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@181a4ab{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@620789{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1dcd04a{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1eec0c5{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1bb0ff0{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@135779{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1d40164{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1a768de{ url=null ,addedOrder=0}
                      INFO  [org.jboss.seam.drools.RuleBase] parsing rules: /security.drl
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.resourceLoader
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.resourceLoader
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.resourceLoader
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@5bdbdc{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@bf591c{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@737611{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@4c8167{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@c3c6af{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.securityRules
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.security.ruleBasedPermissionResolver
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1cbc933{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@63430{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.security.ruleBasedPermissionResolver
                      INFO  [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.security.identity
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.security.identity
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.security.identity
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.security.identity
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.security.identity
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.security.identity
                      DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.security.permissionMapper
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.security.rememberMe
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.security.rememberMe
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.security.rememberMe
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.security.rememberMe
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.security.rememberMe
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.security.rememberMe
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.security.credentials
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.security.credentials
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.security.credentials
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.security.credentials
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.security.credentials
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.security.credentials
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.security.identity
                      INFO  [org.jboss.seam.contexts.Contexts] starting up: org.jboss.seam.web.session
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.web.session
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.web.session
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.web.session
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.web.session
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.web.session
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.web.session
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroyContext.CONVERSATION
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postDestroyContext.CONVERSATION
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroyContext.EVENT
                      DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.events
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.core.events
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postDestroyContext.EVENT
                      DEBUG [com.icesoft.faces.util.event.servlet.ContextEventRepeater] session Created event: 171EF7BC93D1A23809ABFC761CA02872
                      DEBUG [org.jboss.seam.navigation.Pages] reading pages.xml file: /WEB-INF/pages.xml
                      DEBUG [org.jboss.seam.resteasy.ResteasyResourceAdapter] processing REST request
                      DEBUG [org.jboss.seam.servlet.ContextualHttpServletRequest] beginning request
                      DEBUG [org.jboss.seam.contexts.ServletLifecycle] >>> Begin web request
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.web.servletContexts
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.events
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.events
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.web.servletContexts
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.web.servletContexts
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.web.servletContexts
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.web.servletContexts
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.web.servletContexts
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.conversationPropagation
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.conversationPropagation
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.conversationPropagation
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.conversationPropagation
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.conversationPropagation
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.conversationPropagation
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.manager
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.manager
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.manager
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.manager
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.manager
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.manager
                      DEBUG [org.jboss.seam.core.ConversationPropagation] Found conversation id in request parameter: null
                      DEBUG [org.jboss.seam.core.Manager] No stored conversation, or concurrent call to the stored conversation
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.ConversationIdGenerator
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.ConversationIdGenerator
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.ConversationIdGenerator
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.ConversationIdGenerator
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.ConversationIdGenerator
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.ConversationIdGenerator
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.ConversationIdGenerator
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.ConversationIdGenerator
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@bf47df{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.resteasy.applicationConfig
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.resteasy.applicationConfig
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.resteasy.applicationConfig
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.interpolator
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.interpolator
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.interpolator
                      DEBUG [org.jboss.seam.resteasy.ResteasyResourceAdapter] removing SeamResourceServlet url-pattern and dispatcher prefix from request path
                      DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.resteasy.applicationConfig
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.resteasy.applicationConfig
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.resteasy.applicationConfig
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
                      DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.resteasy.applicationConfig
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.resteasy.applicationConfig
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.resteasy.applicationConfig
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.interpolator
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.interpolator
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.interpolator
                      DEBUG [org.jboss.seam.resteasy.ResteasyResourceAdapter] final request path: /resource1
                      DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.resteasy.dispatcher
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.resteasy.dispatcher
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.resteasy.dispatcher
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
                      DEBUG [org.jboss.seam.Component] trying to inject with hierarchical context search: applicationConfig
                      DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.resteasy.applicationConfig
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.web.parameters
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.web.parameters
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.web.parameters
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.resteasy.dispatcher
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.resteasy.dispatcher
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
                      DEBUG [org.jboss.seam.Component] trying to inject with hierarchical context search: applicationConfig
                      DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.resteasy.applicationConfig
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.web.parameters
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.web.parameters
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.web.parameters
                      DEBUG [org.jboss.seam.core.Manager] Discarding conversation state: 1
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.conversationEntries
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.conversationEntries
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.conversationEntries
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.conversationEntries
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.conversationEntries
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.conversationEntries
                      DEBUG [org.jboss.seam.contexts.ServletLifecycle] After request, destroying contexts
                      DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.transaction.transaction
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.transaction.transaction
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.transaction.transaction
                      DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.transaction.transaction
                      DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.transaction.transaction
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.transaction.transaction
                      DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
                      DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@10098b, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@7965f{ url=null ,addedOrder=0}
                      DEBUG [org.jboss.seam.contexts.Contexts] destroying business process context
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroyContext.BUSINESS_PROCESS
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postDestroyContext.BUSINESS_PROCESS
                      DEBUG [org.jboss.seam.contexts.Contexts] destroying conversation context
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroyContext.CONVERSATION
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postDestroyContext.CONVERSATION
                      DEBUG [org.jboss.seam.contexts.Contexts] flushing server-side conversation context
                      DEBUG [org.jboss.seam.contexts.Contexts] flushing session context
                      DEBUG [org.jboss.seam.contexts.Contexts] destroying event context
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroyContext.EVENT
                      DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.conversationPropagation
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.core.conversationPropagation
                      DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.transaction.transaction
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.transaction.transaction
                      DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.manager
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.core.manager
                      DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.web.servletContexts
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.web.servletContexts
                      DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.events
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.core.events
                      DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postDestroyContext.EVENT
                      DEBUG [org.jboss.seam.contexts.ServletLifecycle] <<< End web request
                      DEBUG [org.jboss.seam.servlet.ContextualHttpServletRequest] ended request
                      DEBUG [org.jboss.seam.resteasy.ResteasyResourceAdapter] completed processing of REST request


                      • 8. Re: number of seam component limited?
                        markeger

                        the following output we can find only in the working example


                        diff


                        DEBUG [org.jboss.seam.Component] instantiating Seam component: myResource1
                        DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.myResource1
                        DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.myResource1
                        DEBUG [org.jboss.seam.Component] initializing new instance of: myResource1
                        DEBUG [org.jboss.seam.Component] done initializing: myResource1
                        DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.myResource1
                        DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.myResource1
                        DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.myResource1
                        DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
                        DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
                        DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
                        DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
                        DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
                        DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
                        DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
                        DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component



                        plus the destroying:


                        DEBUG [org.jboss.seam.contexts.Contexts] destroying: myResource1
                        DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.myResource1





                        Sorry for these tousends of lines, but I don't find the way to attach files. Anyway, if you like to test my example I can load it up somewhere else and post a link.

                        • 9. Re: number of seam component limited?
                          skoschnicke

                          Hello,


                          I have exactly the same problem in Seam 2.1.1GA with our app containing over 160 custom components (including the build in ones this exceeds the 180 limit). Every request to resteasy results in a 404 page. Removing components (commenting out every @Name annotation) makes the problem go away.


                          I couldn't find a jira entry about that. Does anyone have a seam app with over 180 components and working resteasy?

                          • 10. Re: number of seam component limited?
                            rudi1

                            Hi there,


                            I've got the same problem using jBoss 5.0.1GA and Seam 2.1.1GA. I don't know how many components I have, but for sure over 100. Did anybody figured out what the fix for that Problem is?