[JBoss Seam] - question on passing org.jboss.seam.jsf.ListDataModel
by asookazian
I need to check values of the @DataModel annotated List after values have been set by the user via the UI/browser for radio buttons. When I call the submit method passing the ListDataModel as an argument, the debugger shows that the values for the newly entered radio buttons are null.
How can I access these newly entered values in my SFSB when user submits the form? Do I have to pass them as 3 separate params to the method? If so, how shall I do this? thx.
passing ListDataModel:
<a4j:commandButton value="submit" action="#{noteAction.submit(myAuditList)}" oncomplete="clickDataTableSubmit();Richfaces.hideModalPanel('mpEmployeeSubmit')"/>
new attempt (messy, mix of EL and javascript/DOM referring to the radiobutton id):
<a4j:commandButton value="submit" action="#{noteAction.submit(}mainform:dataTable1:#{myAuditList.getRowIndex()}:securityLevelApprovedRB)}" onclick="Richfaces.hideModalPanel('mpNote')"/>
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4108665#4108665
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4108665
18 years, 5 months
[JBoss Seam] - Seam 2.0.0.GA + Maven2 (s:validateAll doesn't work)
by leandro3.marinho
Excuse my very bad english but it isn't my native languange.
I'm trying integrate Maven2 and Seam 2.0.0.GA to run in JBoss AS 4.2.2.GA It's working fine, but s:validateAll don't work. Below is my form.xhtml.
|
| <s:validateAll>
| <f:facet name="afterInvalidField">
| <s:span styleClass="error">
| <s:message showDetail="true" showSummary="false" />
| </s:span>
| </f:facet>
|
| <div>Name:
| <s:decorate>
| <h:inputText value="#{person.name}" />
| </s:decorate>
| </div>
|
| <h:commandButton actionListener="#{person.save}"/>
| </s:validateAll>
|
|
and in my java code I annoted the property.
| @Length(min=3)
| public String getName()
|
When I submit the form, Seam update the model with no validate it, and the DAO throws InvalidStateException.
It's dificult for me because I'm a new Seam user.
Anybody can help me?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4108664#4108664
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4108664
18 years, 5 months
[JBoss Seam] - Re: Cache problem with Seam EntityQuery
by trouby
well, if EntityQuery is a pojo then yes, I didn't change the scope,
If I'm in a conversation, then the persistence context is in conversation scope although my class inherited from EntityQuery is in event scope? this is confusing :-)
Well, back to the question, sometimes it's hard to truck if I'm in a conversation or not,
Client sometimes not using the buttons which handles conversation ending correctly, so it might be, well, how can I make sure anytime a page is getting refreshed I get the most updated data from the DB?
I tried to override the 'getResultList' method of EntityQuery and set some hints to hibernate to get the most updated data, but it seems not to be working,
Anyway, probably this problem can be solved by Seam levels as I said and since logoff/logon shows the most updated data then I guess I'm in a conversation,
So what is the correct way to solve this issue?
Many thanks,
Asaf
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4108661#4108661
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4108661
18 years, 5 months
[JBoss Seam] - Re: Activation of SFSB and removal of it by Seam question
by asookazian
Why am I seeing this in the Eclipse console? I added code to the callback handlers (yes) but why is this happening in this order for this conversation scoped SFSB?? I don't have @Begin and @End conversation annotations/demarcations so it seems to me the passivation should not occur for this SFSB... The ejb container (JBoss) seems to be behaving inconsistently??
11:19:52,549 INFO [SecurityAuditAction] in preDestroy
| 11:24:52,422 INFO [SecurityAuditAction] in prePassivate
| 11:24:53,047 INFO [SecurityAuditAction] in prePassivate
full stack trace:
2007-11-28 11:19:52,549 INFO [com.cox.beans.session.SecurityAuditAction] in preDestroy
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preRemoveVariable.securityAuditAction
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postRemoveVariable.securityAuditAction
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.ejb.RemoveInterceptor] Stateful component was removed: securityAuditAction
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.persistence.persistenceContexts
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.persistence.persistenceContexts
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: myAuditList
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.conversation
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.core.conversation
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.faces.facesMessages
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.faces.facesMessages
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postDestroyContext.CONVERSATION
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] flushing server-side conversation context
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] flushing session context
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.user
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.user
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying event context
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroyContext.EVENT
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.ajax4jsf.framework.HEADER_PROCESSED
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: com.sun.faces.ComponentForValue
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.manager
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.core.manager
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.transaction.synchronizations
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.transaction.synchronizations
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.ajax4jsf.VIEW_STATE_SAVED
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.ajax4jsf.skin.HASH_CODE
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.conversationPropagation
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.core.conversationPropagation
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.faces.validation
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.faces.validation
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: com.sun.faces.renderKitImplForRequest
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.ajax4jsf.framework.HEADER_SCRIPTS
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.transaction.transaction
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.transaction.transaction
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: com.sun.faces.INVOCATION_PATH
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.ajax4jsf.VIEW_ID
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: com.sun.faces.FORM_HAS_COMMAND_LINK_ATTR
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: com.exade.vcp.Filter.done
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: com.sun.faces.ExternalContextImpl
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: ajaxContext
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.ajax4jsf.framework.HEADER_STYLES
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: com.sun.faces.managedBeanStack
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: com.exade.vcp.Filter.ResponseWrapper
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: com.sun.faces.FacesContextImpl
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: facelets.Encoding
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.ajax4jsf.application.AjaxStateManager.VIEW_SEQUENCE
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postDestroyContext.EVENT
| 2007-11-28 11:19:52,549 DEBUG [org.jboss.seam.contexts.FacesLifecycle] <<< End JSF request
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.event.AjaxPhaseListener] Process after phase RENDER_RESPONSE 6
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.webapp.BaseXMLFilter] create HTML/XML parser for content type: text/html; charset=UTF-8
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.LT
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.EXCLAM
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPESTART
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPESTART
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPESTART
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPESTART
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPESTART
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPESTART
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPESTART
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,549 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPE
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCTYPEEND
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCUMENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.LT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.H
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.HTML
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.HTML
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.HTML
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.INELEMENTCONTENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.ENDELEMENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Found <html> element
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCUMENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.LT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.H
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.HEAD
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.HEAD
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.HEAD
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.ENDELEMENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Found <head> element
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCUMENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCUMENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCUMENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCUMENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCUMENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCUMENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCUMENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCUMENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.DOCUMENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.LT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.io.parser.FastHtmlParser] Parser reached state is StateManager.ELEMENT
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.webapp.BaseXMLFilter] Parsing html total time 15ms
| 2007-11-28 11:19:52,564 DEBUG [org.ajax4jsf.webapp.BaseFilter] Finished request processing total time 3168ms for uri: /securityAudit/adminSecurityAudit.seam
| 2007-11-28 11:19:52,829 DEBUG [org.ajax4jsf.webapp.BaseFilter] Filter start request processing at 11/28/07 11:19 AM for uri: /securityAudit/stylesheet/theme.css
| 2007-11-28 11:19:52,829 DEBUG [org.ajax4jsf.webapp.BaseFilter] Filter request output to XML
| 2007-11-28 11:19:52,829 DEBUG [org.ajax4jsf.webapp.BaseXMLFilter] XML filter service start processing request
| 2007-11-28 11:19:52,829 DEBUG [org.ajax4jsf.webapp.BaseXMLFilter] create HTML/XML parser for content type: null
| 2007-11-28 11:19:52,829 DEBUG [org.ajax4jsf.webapp.BaseXMLFilter] Parser not have support for the such content type, send response as-is
| 2007-11-28 11:19:52,829 DEBUG [org.ajax4jsf.webapp.BaseFilter] Finished request processing total time 0ms for uri: /securityAudit/stylesheet/theme.css
| 2007-11-28 11:19:52,845 DEBUG [org.ajax4jsf.webapp.BaseFilter] Filter start request processing at 11/28/07 11:19 AM for uri: /securityAudit/seam/resource/remoting/resource/remote.js
| 2007-11-28 11:19:52,845 DEBUG [org.ajax4jsf.webapp.BaseFilter] Filter request output to XML
| 2007-11-28 11:19:52,845 DEBUG [org.ajax4jsf.webapp.BaseXMLFilter] XML filter service start processing request
| 2007-11-28 11:19:52,845 DEBUG [org.ajax4jsf.webapp.FilterServletResponseWrapper] Create ByteArrayServletOutputStream for buffer servlet output
| 2007-11-28 11:19:52,845 DEBUG [org.ajax4jsf.webapp.FilterServletResponseWrapper] Create ByteArrayServletOutputStream for buffer servlet output
| 2007-11-28 11:19:52,845 DEBUG [org.ajax4jsf.webapp.FilterServletResponseWrapper] Create ByteArrayServletOutputStream for buffer servlet output
| 2007-11-28 11:19:52,845 DEBUG [org.ajax4jsf.webapp.BaseXMLFilter] create HTML/XML parser for content type: null
| 2007-11-28 11:19:52,845 DEBUG [org.ajax4jsf.webapp.BaseXMLFilter] Parser not have support for the such content type, send response as-is
| 2007-11-28 11:19:52,845 DEBUG [org.ajax4jsf.webapp.BaseFilter] Finished request processing total time 0ms for uri: /securityAudit/seam/resource/remoting/resource/remote.js
| 2007-11-28 11:19:52,876 DEBUG [org.ajax4jsf.webapp.BaseFilter] Filter start request processing at 11/28/07 11:19 AM for uri: /securityAudit/seam/resource/remoting/interface.js
| 2007-11-28 11:19:52,876 DEBUG [org.ajax4jsf.webapp.BaseFilter] Filter request output to XML
| 2007-11-28 11:19:52,876 DEBUG [org.ajax4jsf.webapp.BaseXMLFilter] XML filter service start processing request
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.servlet.ContextualHttpServletRequest] beginning request
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.contexts.ServletLifecycle] >>> Begin web request
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.web.servletContexts
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.web.servletContexts
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.web.servletContexts
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.web.servletContexts
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.web.servletContexts
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.web.servletContexts
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.conversationPropagation
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.conversationPropagation
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.conversationPropagation
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.conversationPropagation
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.conversationPropagation
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.conversationPropagation
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.manager
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.manager
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.manager
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.core.manager
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.core.manager
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.core.manager
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.ConversationPropagation] Found conversation id in request parameter: null
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Manager] No stored conversation, or concurrent call to the stored conversation
| 2007-11-28 11:19:52,876 DEBUG [org.ajax4jsf.webapp.FilterServletResponseWrapper] Create ByteArrayServletOutputStream for buffer servlet output
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Manager] Discarding conversation state: 21
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.contexts.ServletLifecycle] After request, destroying contexts
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.transaction.transaction
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.transaction.transaction
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.transaction.transaction
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.org.jboss.seam.transaction.transaction
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.org.jboss.seam.transaction.transaction
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postCreate.org.jboss.seam.transaction.transaction
| 2007-11-28 11:19:52,876 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}
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.contexts.Contexts] destroying business process context
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroyContext.BUSINESS_PROCESS
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postDestroyContext.BUSINESS_PROCESS
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.contexts.Contexts] destroying conversation context
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroyContext.CONVERSATION
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postDestroyContext.CONVERSATION
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.contexts.Contexts] flushing server-side conversation context
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.contexts.Contexts] flushing session context
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,876 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preSetVariable.user
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postSetVariable.user
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.contexts.Contexts] destroying event context
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroyContext.EVENT
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.contexts.Contexts] destroying: com.exade.vcp.Filter.done
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.manager
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.core.manager
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.contexts.Contexts] destroying: com.exade.vcp.Filter.ResponseWrapper
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.conversationPropagation
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.core.conversationPropagation
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.web.servletContexts
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.web.servletContexts
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.transaction.transaction
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.preDestroy.org.jboss.seam.transaction.transaction
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.core.events
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.postDestroyContext.EVENT
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.contexts.ServletLifecycle] <<< End web request
| 2007-11-28 11:19:52,892 DEBUG [org.jboss.seam.servlet.ContextualHttpServletRequest] ended request
| 2007-11-28 11:19:52,892 DEBUG [org.ajax4jsf.webapp.BaseXMLFilter] create HTML/XML parser for content type: null
| 2007-11-28 11:19:52,892 DEBUG [org.ajax4jsf.webapp.BaseXMLFilter] Parser not have support for the such content type, send response as-is
| 2007-11-28 11:19:52,892 DEBUG [org.ajax4jsf.webapp.BaseFilter] Finished request processing total time 16ms for uri: /securityAudit/seam/resource/remoting/interface.js
| 2007-11-28 11:19:52,908 DEBUG [org.ajax4jsf.webapp.BaseFilter] Filter start request processing at 11/28/07 11:19 AM for uri: /securityAudit/seam/resource/remoting/interface.js
| 2007-11-28 11:19:52,908 DEBUG [org.ajax4jsf.webapp.BaseFilter] Filter request output to XML
| 2007-11-28 11:19:52,908 DEBUG [org.ajax4jsf.webapp.BaseXMLFilter] XML filter service start processing request
| 2007-11-28 11:19:52,908 DEBUG [org.jboss.seam.servlet.ContextualHttpServletRequest] beginning request
| 2007-11-28 11:19:52,908 DEBUG [org.jboss.seam.contexts.ServletLifecycle] >>> Begin web request
| 2007-11-28 11:19:52,908 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.web.servletContexts
| 2007-11-28 11:19:52,908 DEBUG [org.jboss.seam.Component] initializing new instance of: org.jboss.seam.web.servletContexts
| 2007-11-28 11:19:52,908 DEBUG [org.jboss.seam.Component] done initializing: org.jboss.seam.web.servletContexts
| 2007-11-28 11:19:52,908 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.events
| 2007-11-28 11:19:52,908 DEBUG [org.jboss.seam.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4108659#4108659
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4108659
18 years, 5 months
[JNDI/Naming/Network] - Configuring persistence unit and accessing EntityManager via
by jsolderitsch
I posted a related query to the Netbeans sub-forum but I see very little activity there. And maybe I should be using the persistence sub-forum.
I have a project, originally developed in Netbeans 6 and deployed to Glassfish. I would like to deploy to JBoss 4.2.2 with as much of the code and configuration files as un-modified as possible.
I am using JAX-WS annotations for the Web Service declarations and also am using the Java Persistence API (JPA).
But I am not writing a EJB app -- just a web app, deploying with a .war file.
I am using MySQL and I believe I have the mysql-ds.xml file as it should be. There I declare the JNDI name:
<local-tx-datasource>
<jndi-name>mysql_remote</jndi-name>
My code relies on an EntityManager obtained via dependency injection like this:
@WebService()
@PersistenceContext(name = "persistence/LogicalName", unitName = "MissionStatusProjectPU2")
public class MissionStatusService {
EntityManager em;
public MissionStatusService() {
try {
Context ctx = (Context) new javax.naming.InitialContext().lookup("java:comp/env");
em = (EntityManager) ctx.lookup("persistence/LogicalName");
} catch (NamingException ex) {
ex.printStackTrace();
}
}
...
My persistence properties are declared in a very simple persistence.xml file like:
<persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
<persistence-unit name="MissionStatusProjectPU2" transaction-type="JTA">
<jta-data-source>mysql_remote</jta-data-source>
</persistence-unit>
But in JBoss, I don't see how to further relate the MySQL data source (called mysql_remote) to an EntityManager.
The code above leads to a run-time error for JBoss:
17:44:54,134 ERROR [STDERR] javax.naming.NameNotFoundException: persistence not bound
17:44:54,134 ERROR [STDERR] at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
17:44:54,134 ERROR [STDERR] at org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
17:44:54,134 ERROR [STDERR] at org.jnp.server.NamingServer.getObject(NamingServer.java:543)
17:44:54,135 ERROR [STDERR] at org.jnp.server.NamingServer.lookup(NamingServer.java:267)
17:44:54,135 ERROR [STDERR] at org.jnp.server.NamingServer.lookup(NamingServer.java:270)
17:44:54,135 ERROR [STDERR] at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:667)
17:44:54,135 ERROR [STDERR] at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:627)
17:44:54,135 ERROR [STDERR] at com.gestalt.afmstt.modernization.MissionStatusService.(MissionStatusService.java:35)
Line 35 is the ctx initialization line in the code fragment.
This suggests to me that I need some additional resource properties defined somewhere (jboss-web.xml or web.xml perhaps) to link the EntityManager to the datasource.
I confess I was spoiled by the config file automation that netbeans provides when dealing with glassfish.
Can anyone suggest whether my approach is even possible for JBoss 4.2.2 or if there are known issues preventing this?
If it is possible, what adjustments are needed in persistence.xml, jboss-web.xml and/or web.xml to allow me to overcome my current failure?
I can provide further code details upon request.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4108657#4108657
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4108657
18 years, 5 months
[JBossWS] - endPoint and SOAP headers, how to work this?
by camateusno
Hi all, Im have a problem with SOAP headers, because i dont know how see it in endpoint. Explain:
first im consume de webservice, and i see this and more:
a class SEI: QMWISeSoap
a class that provide constructors: ObjectFactory
The server requires two soap headers, these are build by ObjectFactory, and return a object JAXBElement:
/**
* Create an instance of {@link JAXBElement }{@code <}{@link TrustHeader }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://questionmark.com/QMWISe/", name = "Trust")
public JAXBElement createTrust(TrustHeader value) {
return new JAXBElement(_Trust_QNAME, TrustHeader.class, null, value);
}
Now, in a class QMWISeWebService is the call to SEI:
protected QMWISeWebService() {
try {
if (endPoint == null){
endPoint = new QMWISe().getQMWISeSoap();
}
} catch (Exception ex) {
ex.printStackTrace();
}
And by example i have a class that inherit from QMWISeWebService :
public class ParticipantData extends QMWISeWebService {
/**
* This method processes a Participant Name and a Password and checks
* whether there is a participant with the Participant Name, and if so
* whether the Password is theirs.
*
* @param participantID
* @param password
* @param status
* @param participantName
*/
public void checkParticipant(String participantName, String password,
Holder status, Holder participantID) {
endPoint.checkParticipant(participantName, password, status,
participantID);
}
The problem is that i dont know how connect the JAXBElement returned by ObjectFactory with the SEI class.
Part of SEI class is:
@WebService(name = "QMWISeSoap", targetNamespace = "http://questionmark.com/QMWISe/")
public interface QMWISeSoap {
/**
* This method provides information about the QMWISe software that is installed, including the version of the software that is installed, which build of the software is installed and a statement of Question Mark's rights under the license agreement.
*
* @return
* returns com.questionmark.qmwise.Version
*/
@WebMethod(operationName = "GetAbout", action = "http://questionmark.com/QMWISe/GetAbout")
@WebResult(name = "GetAboutResult", targetNamespace = "http://questionmark.com/QMWISe/")
@RequestWrapper(localName = "GetAbout", targetNamespace = "http://questionmark.com/QMWISe/", className = "com.questionmark.qmwise.GetAbout")
@ResponseWrapper(localName = "GetAboutResponse", targetNamespace = "http://questionmark.com/QMWISe/", className = "com.questionmark.qmwise.GetAboutResponse")
public Version getAbout();
And none method of SEI have a parameter that contain data for the SOAP header.
perhaps this is a trivial problem, but im need help. thanks.
What is the mechanism?, the objectFactory provide the JAXBElement, and what to do with that?, What can I do so that the information finally reaches the envelope of soap?, thanks in advance.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4108655#4108655
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4108655
18 years, 5 months
[JBoss Seam] - Commiting after each statement (mysql)
by pettersonfp
Hi,
I noticed that my app is commiting after each statement.
Eg:
| tx.begin();
| //some persistent modification
| tx.rollback();
| tx.commit();
|
The rollback does nothing.
| <Context
| debug="5"
| reloadable="true" crossContext="false">
| <Resource
| name="jdbc/myDB"
| auth="Container"
| type="javax.sql.DataSource"
| driverClassName="com.mysql.jdbc.Driver"
| defaulAutoCommit="false"
| factory="org.apache.tomcat.dbcp.dbcp.BasicDataSourceFactory"
| url="jdbc:mysql://localhos:3306/mydb?autoReconnect=true&autoCommit=false"
| validationQuery="select current_date"
| removeAbandoned="true"
| removeAbandonedTimeout="30"
| useNaming="true"
| logAbandoned="true"
| maxActive="5"
| maxIdle="5"
| maxWait="15000"
| username="xxxxxx"
| password="xxxxx"/>
| </Context>
|
persistence.xml
| <?xml version="1.0" encoding="UTF-8"?>
| <persistence xmlns="http://java.sun.com/xml/ns/persistence"
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
| xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
| version="1.0">
| <persistence-unit name="myDatabase" transaction-type="RESOURCE_LOCAL">
| <provider>org.hibernate.ejb.HibernatePersistence</provider>
| <jta-data-source>java:comp/env/jdbc/myDB</jta-data-source>
| <properties>
|
| <property name="hibernate.hbm2ddl.auto" value="update"/>
| <property name="hibernate.show_sql" value="true"/>
| <property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/>
| <property name="hibernate.connection.autocommit" value="false"/>
| <!-- <property name="hibernate.datasource" value="java:comp/env/jdbc/myDB"/> -->
| <property name="hibernate.cache.provider_class" value="org.hibernate.cache.HashtableCacheProvider"/>
| <property name="transaction.flush_before_completion" value="true"/>
| <property name="transaction.factory_class" value="org.hibernate.transaction.JDBCTransactionFactory"/>
| <!-- RESOURCE_LOCAL
| <property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.JBossTransactionManagerLookup"/>
| -->
| <!-- alternative
| <property name="jboss.entity.manager.factory.jndi.name"
| value="java:/coollectBookingEntityManagerFactory"/>
| -->
| </properties>
| </persistence-unit>
| </persistence>
|
Any ideas?
Thanks,
Petterson
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4108654#4108654
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4108654
18 years, 5 months