[JBoss Seam] - Bug? Outjected boolean changes value mid-template
by tomstrummer
I am seeing very odd behavior where the value of an outjected boolean changes in the middle of a template, but no assignment was done. I think it has to do with how it is scoped.
Expected/ Intended Behavior:
The value, newPortfolioForm is toggled based on whether or not a form should be displayed on a page. It is triggered when the user clicks the "add" button. The field is EVENT scoped, such that if the user clicks "add" and then decides to do something other than submit the form, the form will be hidden again (i.e. the action is cancelled). However, on subsequent requests (i.e. any page refresh), it appears that the outjected value for newPortfolioForm is null and then changes back to true after a DataModel from the same SLSB is rendered.
Here is my (simplified) template:
| <html xmlns="http://www.w3.org/1999/xhtml"
| xmlns:s="http://jboss.com/products/seam/taglib"
| xmlns:f="http://java.sun.com/jsf/core"
| xmlns:h="http://java.sun.com/jsf/html">
|
| <body>
| <s:button value='Add' title='create a new profile'
| action='#{portfolioHandler.addPortfolio}'
| rendered='#{!showPortfolioForm}' />
|
| <s:div rendered='#{showPortfolioForm == null}'>showPortfolioForm is null</s:div>
| <s:div rendered='#{showPortfolioForm}'>showPortfolioForm is true</s:div>
| #{portfolios} <br />
| <s:div rendered='#{showPortfolioForm == true}'>showPortfolioForm is TRUE!!!</s:div>
| <s:div rendered='#{showPortfolioForm == null}'>showPortfolioForm is null</s:div>
| <s:div rendered='#{showPortfolioForm == false}'>showPortfolioForm is false</s:div>
| </body>
| </html>
|
And my SLSB:
| @Stateless @Name("portfolioHandler")
| public class PortfolioHandlerImpl implements PortfolioHandler {
|
| @DataModelSelection("portfolios")
| @In(required=false) @Out(required=false)
| private Portfolio portfolio;
|
| @Out private boolean showPortfolioForm = false;
|
| @DataModel List<Portfolio> portfolios;
|
| public void addPortfolio() {
| showPortfolioForm = true; // display the form
| }
|
| public void updatePortfolio() {
| // save method...
| }
|
| // factory and other CRUD methods here...
| }
|
Output after initial page load (OK):
| showPortfolioForm is null
| org.jboss.seam.jsf.ListDataModel@c74f8c4
| showPortfolioForm is false
|
Output after button click (OK - consistent state):
| showPortfolioForm is true
| org.jboss.seam.jsf.ListDataModel@1f65c446
| showPortfolioForm is TRUE!!!
|
Output after page reload (BAD - it changed!!):
| showPortfolioForm is null
| org.jboss.seam.jsf.ListDataModel@35efd6ed
| showPortfolioForm is TRUE!!!
|
Now, I'm not surprised that showPortfolioForm was boxed to a Boolean and is null. However -- why does the value change after #{portfolios} is referenced?!? Null and false are close enough as far as boolean logic is concerned that I didn't notice this is actually happening on the first page load too -- the value is null and then false.
I would submit that this is a bug -- the state within the template is not consistent, even though none of my code has changed it. There is a similar effect if the scope is set to PAGE. If the value was re-initialized to false it would be OK, but why is it picking up the old value even though it is clearly out of scope?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4126347#4126347
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4126347
18 years, 2 months
[JBoss Seam] - Re: Need Form to Work Without
by neilac333
Naturally, the log got cut off, but these lines caught my eye:
| 04 Feb 2008 14:37:00,377: DEBUG org.ajax4jsf.application.AjaxViewHandler - Create instance of Ajax V
| iewHandler
| 04 Feb 2008 14:37:00,457: DEBUG org.ajax4jsf.application.AjaxStateManager - Can't restore view state
| : no saved view states in session
| 04 Feb 2008 14:37:00,457: DEBUG org.ajax4jsf.application.AjaxViewHandler - Detect session expiration
| in AJAX request - view don't restored for a viewId /myappSearch.html
| 04 Feb 2008 14:37:00,457: DEBUG org.ajax4jsf.application.AjaxViewHandler - Detect session expiration
| in AJAX request - view don't restored for a viewId /myappSearch.html
|
Also, please let me know if there is a particular hierarchy you would like to see in DEBUG level (like say org.jboss.seam) while keeping others out just to keep things less noisy.
Thanks.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4126341#4126341
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4126341
18 years, 2 months
[JBoss Seam] - Re: Need Form to Work Without
by neilac333
Ask and you shall receive. But I guess you need to be careful what you wish for:
| 04 Feb 2008 14:36:57,764: DEBUG org.ajax4jsf.webapp.BaseFilter - Finished request processing total time 40ms for uri: /myapp/a4j_3_1_3.GAorg.ajax4jsf.javascript.PrototypeScript
| 04 Feb 2008 14:37:00,167: DEBUG org.ajax4jsf.webapp.BaseFilter - Filter start request processing at 2/4/08 2:37 PM for uri: /myapp/myappSearch.html
| 04 Feb 2008 14:37:00,167: DEBUG org.ajax4jsf.webapp.BaseFilter - Incoming request has Content-Type header without character encoding: application/x-www-form-urlencoded
| 04 Feb 2008 14:37:00,167: DEBUG org.ajax4jsf.webapp.BaseFilter - Filter request output to XML
| 04 Feb 2008 14:37:00,187: DEBUG org.ajax4jsf.webapp.BaseXMLFilter - XML filter service start processing request
| 04 Feb 2008 14:37:00,297: DEBUG org.jboss.seam.contexts.FacesLifecycle - >>> Begin JSF request
| 04 Feb 2008 14:37:00,307: DEBUG org.jboss.seam.contexts.Lifecycle - Session started
| 04 Feb 2008 14:37:00,327: INFO org.jboss.seam.contexts.Contexts - starting up: org.jboss.seam.web.session
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.web.session
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.web.session
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.web.session
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.web.session
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.web.session
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postCreate.org.jboss.seam.web.session
| 04 Feb 2008 14:37:00,327: INFO org.jboss.seam.contexts.Contexts - starting up: org.jboss.seam.security.identity
| 04 Feb 2008 14:37:00,327: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.security.identity
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.security.identity
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.security.identity
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.security.identity
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,337: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.security.identity
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postCreate.org.jboss.seam.security.identity
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preDestroyContext.CONVERSATION
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,347: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postDestroyContext.CONVERSATION
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.transaction.transaction
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.transaction.transaction
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.transaction.transaction
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.transaction.transaction
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.transaction.transaction
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postCreate.org.jboss.seam.transaction.transaction
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.util.Naming - JNDI InitialContext properties:{}
| 04 Feb 2008 14:37:00,367: DEBUG org.jboss.seam.util.Naming - JNDI InitialContext properties:{}
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.jsf.SeamPhaseListener - beginning transaction prior to phase: RESTORE_VIEW 1
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.util.Naming - JNDI InitialContext properties:{}
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.transaction.UTTransaction - beginning JTA transaction
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.transaction.synchronizations
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.transaction.synchronizations
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.transaction.synchronizations
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.transaction.synchronizations
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.transaction.synchronizations
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postCreate.org.jboss.seam.transaction.synchronizations
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,377: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.beforePhase
| 04 Feb 2008 14:37:00,377: DEBUG org.ajax4jsf.event.AjaxPhaseListener - Process before phase RESTORE_VIEW 1
| 04 Feb 2008 14:37:00,377: DEBUG org.ajax4jsf.event.InitPhaseListener - Perform additional framework initialization on first request
| 04 Feb 2008 14:37:00,377: DEBUG org.ajax4jsf.event.InitPhaseListener - Set AjaxViewHandler on top of chain
| 04 Feb 2008 14:37:00,377: DEBUG org.ajax4jsf.application.AjaxViewHandler - Create instance of Ajax ViewHandler
| 04 Feb 2008 14:37:00,457: DEBUG org.ajax4jsf.application.AjaxStateManager - Can't restore view state : no saved view states in session
| 04 Feb 2008 14:37:00,457: DEBUG org.ajax4jsf.application.AjaxViewHandler - Detect session expiration in AJAX request - view don't restored for a viewId /myappSearch.html
| 04 Feb 2008 14:37:00,457: DEBUG org.ajax4jsf.application.AjaxViewHandler - Detect session expiration in AJAX request - view don't restored for a viewId /myappSearch.html
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.international.localeSelector
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.international.localeSelector
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.international.localeSelector
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.international.localeSelector
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.international.localeSelector
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:00,548: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postCreate.org.jboss.seam.international.localeSelector
| 04 Feb 2008 14:37:01,609: DEBUG org.ajax4jsf.event.InitPhaseListener - Remove init phase listener from factories
| 04 Feb 2008 14:37:01,619: DEBUG org.ajax4jsf.event.AjaxPhaseListener - Process after phase RESTORE_VIEW 1
| 04 Feb 2008 14:37:01,629: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,629: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,629: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,629: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.afterPhase
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.conversationPropagation
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.conversationPropagation
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.conversationPropagation
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.conversationPropagation
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.conversationPropagation
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,639: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.conversationPropagation
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.navigation.pages
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.navigation.pages
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.navigation.pages
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.navigation.pages
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.navigation.pages
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.resourceLoader
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.resourceLoader
| 04 Feb 2008 14:37:01,649: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.resourceLoader
| 04 Feb 2008 14:37:01,659: DEBUG org.jboss.seam.navigation.Pages - reading pages.xml file: /WEB-INF/pages.xml
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.expressions
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.expressions
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.expressions
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.expressions
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.expressions
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.expressions
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postCreate.org.jboss.seam.navigation.pages
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.manager
| 04 Feb 2008 14:37:01,699: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.manager
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.manager
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.manager
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.manager
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.manager
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.faces.facesPage
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.faces.facesPage
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.faces.facesPage
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.faces.facesPage
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.faces.facesPage
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,709: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postCreate.org.jboss.seam.faces.facesPage
| 04 Feb 2008 14:37:01,719: DEBUG org.jboss.seam.core.Manager - No stored conversation, or concurrent call to the stored conversation
| 04 Feb 2008 14:37:01,749: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.web.parameters
| 04 Feb 2008 14:37:01,749: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.web.parameters
| 04 Feb 2008 14:37:01,749: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.web.parameters
| 04 Feb 2008 14:37:01,769: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.faces.facesMessages
| 04 Feb 2008 14:37:01,769: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.faces.facesMessages
| 04 Feb 2008 14:37:01,769: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.faces.facesMessages
| 04 Feb 2008 14:37:01,769: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.faces.facesMessages
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.faces.facesMessages
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postCreate.org.jboss.seam.faces.facesMessages
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.util.Naming - JNDI InitialContext properties:{}
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.jsf.SeamPhaseListener - committing transaction after phase: RESTORE_VIEW 1
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.util.Naming - JNDI InitialContext properties:{}
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.transaction.UTTransaction - committing JTA transaction
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.beforeTransactionCompletion
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,779: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.afterTransactionCompletion
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.util.Naming - JNDI InitialContext properties:{}
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.jsf.SeamPhaseListener - beginning transaction prior to phase: RENDER_RESPONSE 6
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.util.Naming - JNDI InitialContext properties:{}
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.transaction.UTTransaction - beginning JTA transaction
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preRemoveVariable.org.jboss.seam.faces.switcher
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postRemoveVariable.org.jboss.seam.faces.switcher
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preRemoveVariable.org.jboss.seam.core.conversationList
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postRemoveVariable.org.jboss.seam.core.conversationList
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preRemoveVariable.org.jboss.seam.core.conversationStack
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,789: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postRemoveVariable.org.jboss.seam.core.conversationStack
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.conversation
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.conversation
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.conversation
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.conversation
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.conversation
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,809: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.conversation
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.persistence.persistenceContexts
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.persistence.persistenceContexts
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.persistence.persistenceContexts
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.persistence.persistenceContexts
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.persistence.persistenceContexts
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postCreate.org.jboss.seam.persistence.persistenceContexts
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:01,829: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.beforePhase
| 04 Feb 2008 14:37:01,829: DEBUG org.ajax4jsf.event.AjaxPhaseListener - Process before phase RENDER_RESPONSE 6
| 04 Feb 2008 14:37:01,829: DEBUG org.ajax4jsf.event.AjaxPhaseListener - PhaseListener enter Before RenderView Phase with ViewId /myappSearch.jspx and RenderKitId HTML_BASIC
| 04 Feb 2008 14:37:01,839: DEBUG org.richfaces.skin.SkinFactory - Class name for SkinFactory set to org.richfaces.skin.SkinFactoryImpl by META-INF/services
| 04 Feb 2008 14:37:01,849: DEBUG org.richfaces.skin.SkinFactoryImpl - Create new Skin instance for name classic
| 04 Feb 2008 14:37:05,635: DEBUG org.ajax4jsf.webapp.FilterServletResponseWrapper - Create StringWriter for buffer servlet output
| 04 Feb 2008 14:37:05,645: DEBUG org.ajax4jsf.renderkit.RendererBase - Start encoding of component _viewRoot with class org.ajax4jsf.component.AjaxViewRoot
| 04 Feb 2008 14:37:05,785: DEBUG org.jboss.seam.Component - instantiating Seam component: myappSearchAction
| 04 Feb 2008 14:37:05,875: DEBUG org.jboss.seam.Component - initializing new instance of: myappSearchAction
| 04 Feb 2008 14:37:05,885: DEBUG org.jboss.seam.Component - done initializing: myappSearchAction
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.myappSearchAction
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.myappSearchAction
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,905: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postCreate.myappSearchAction
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.myappSearchAction
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.myappSearchAction
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.this
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.this
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.method
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.method
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.parameters
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.parameters
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.component
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.component
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.contexts.Contexts - found in conversation context: org.jboss.seam.persistence.persistenceContexts
| 04 Feb 2008 14:37:05,915: DEBUG org.jboss.seam.Component - trying to inject with hierarchical context search: myappSearch
| 04 Feb 2008 14:37:05,925: DEBUG org.jboss.seam.Component - instantiating Seam component: myappSearch
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - initializing new instance of: myappSearch
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - done initializing: myappSearch
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.preSetVariable.myappSearch
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.core.Events - Processing event:org.jboss.seam.postSetVariable.myappSearch
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - done initializing: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - instantiating Seam component: org.jboss.seam.core.events
| 04 Feb 2008 14:37:06,005: DEBUG org.jboss.seam.Component - initializing new instance of: org.jboss.seam.core.events
| 04 Feb
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4126336#4126336
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4126336
18 years, 2 months