[JBoss jBPM] - Help... HibernateException
by bentins
I have a process running inside a trascation. (Running inside JBoss App Server)
this process is part of many other processes running inside the application and is not doing anything special. All the others are running fine. It is probably a problem somewhere in my code but I don't know where to look. Here is a short description of what i'm doing.
The process goes through 3 nodes and then ends. Within that process it adds variables and deletes variables from the contectInstance, and of course does some things in the application.
When it ends, it tries to perform a commit. There it fails on
| HibernateException: instance not of expected entity type: org.jbpm.context.exe.VariableInstance
|
at AbstractEntityPersister.getSubclassEntityPersister
I have looked at the context using debug and found some variables which I have left there, only the ones that were supposed to. They are all of type String and it seems the hibernate session sees them as String.
Help... I don't know where to look next. I need a direction
Thnx
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3987578#3987578
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3987578
19Â years, 5Â months
[JBoss Seam] - Local server is not initialized error when calling a method
by fmi2
Hi, I wonder if anyone can give me guidance with the error that I?m experiencing.
I basically have a search page with one input field which is bound to an attribute in a bean and a command button action which is bound to the performBasicSearch method in a stateless bean.
@Stateless
| @Name("search")
| public class SearchBean implements Search {
|
| @PersistenceContext(type=PersistenceContextType.TRANSACTION) EntityManager entityManager;
|
| @In
| private SearchCriteria criteria;
|
| @DataModel
| private List<DomainObject> results;
| @DataModelSelection
| private DomainObject dobj;
|
| ....
|
| public List<DomainObject> performAdvancedSearch() {
| results = new ArrayList<DomainObject>();
| results.add(createResearchCenter());
| results.add(createService());
|
| // Generate a query string the criteria object.
| return results;
| }
|
| }
I have an empty seams.properties file in the web-inf/classes directory, as I read from other postings that it was required even if it was empty(which fixed some other issues I was experiencing). I also have the seam-jndi.properties file with the following entry
java.naming.factory.initial org.jnp.interfaces.LocalOnlyContextFactory
| java.naming.factory.url.pkgs org.jboss.naming:org.jnp.interfaces
I'm not sure what this is suppose to do.
Well this error I'm getting once the button is clicked is this
2006-11-20 15:05:54,656 INFO [org.apache.myfaces.config.FacesConfigurator] Reading standard config org/apache/myfaces/resource/standard-faces-config.xml
| 2006-11-20 15:05:55,125 INFO [org.apache.myfaces.config.FacesConfigurator] Reading config jar:file:/C:/tomcat/webapps/caGridAdminPortal/WEB-INF/lib/apache-myfaces-tomahawk-1.1.3.jar!/META-INF/faces-config.xml
| 2006-11-20 15:05:55,187 INFO [org.apache.myfaces.config.FacesConfigurator] Reading config jar:file:/C:/tomcat/webapps/caGridAdminPortal/WEB-INF/lib/jboss-seam-10.1GA.jar!/META-INF/faces-config.xml
| 2006-11-20 15:05:55,218 INFO [org.apache.myfaces.config.FacesConfigurator] Reading config /WEB-INF/faces-config.xml
| 2006-11-20 15:05:55,343 WARN [org.apache.myfaces.shared_impl.util.LocaleUtils] Locale name in faces-config.xml null or empty, setting locale to default locale : en_US
| 2006-11-20 15:05:55,953 INFO [org.apache.myfaces.webapp.StartupServletContextListener] ServletContext 'C:\tomcat\webapps\caGridAdminPortal\' initialized.
| 2006-11-20 15:05:55,953 INFO [javax.servlet.ServletContextListener] Welcome to Seam 1.0.1.GA
| 2006-11-20 15:05:55,968 INFO [org.jboss.seam.init.Initialization] reading components.xml
| 2006-11-20 15:05:56,093 INFO [org.jboss.seam.init.Initialization] reading properties from: /seam.properties
| 2006-11-20 15:05:56,093 DEBUG [org.jboss.seam.init.Initialization] not found: /jndi.properties
| 2006-11-20 15:05:56,093 INFO [org.jboss.seam.init.Initialization] reading properties from: /seam-jndi.properties
| 2006-11-20 15:05:56,093 INFO [org.jboss.seam.init.Initialization] initializing Seam
| 2006-11-20 15:05:56,203 INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.init, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Init
| 2006-11-20 15:05:56,218 DEBUG [org.jboss.seam.Component] org.jboss.seam.core.init.myFacesLifecycleBug=false
| 2006-11-20 15:05:56,218 DEBUG [org.jboss.seam.Component] org.jboss.seam.core.init.debug=true
| 2006-11-20 15:05:56,218 DEBUG [org.jboss.seam.Component] org.jboss.seam.core.init.jndiPattern=#{ejbName}/local
| 2006-11-20 15:05:56,531 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.init
| 2006-11-20 15:05:56,546 INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.pages, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Pages
| 2006-11-20 15:05:56,562 INFO [org.jboss.seam.Component] Component: events, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Events
| 2006-11-20 15:05:56,578 INFO [org.jboss.seam.Component] Component: org.jboss.seam.core.manager, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.core.Manager
| 2006-11-20 15:05:56,609 INFO [org.jboss.seam.Component] Component: switcher, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.core.Switcher
| 2006-11-20 15:05:56,625 INFO [org.jboss.seam.Component] Component: redirect, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.Redirect
| 2006-11-20 15:05:56,625 INFO [org.jboss.seam.Component] Component: httpError, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.HttpError
| 2006-11-20 15:05:56,640 INFO [org.jboss.seam.Component] Component: userPrincipal, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.UserPrincipal
| 2006-11-20 15:05:56,656 INFO [org.jboss.seam.Component] Component: isUserInRole, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.IsUserInRole
| 2006-11-20 15:05:56,656 INFO [org.jboss.seam.Component] Component: conversation, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.Conversation
| 2006-11-20 15:05:56,687 INFO [org.jboss.seam.Component] Component: conversationList, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationList
| 2006-11-20 15:05:56,718 INFO [org.jboss.seam.Component] Component: conversationStack, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationStack
| 2006-11-20 15:05:56,734 INFO [org.jboss.seam.Component] Component: facesContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.FacesContext
| 2006-11-20 15:05:56,750 INFO [org.jboss.seam.Component] Component: pageContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.PageContext
| 2006-11-20 15:05:56,781 INFO [org.jboss.seam.Component] Component: eventContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.EventContext
| 2006-11-20 15:05:56,796 INFO [org.jboss.seam.Component] Component: sessionContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.SessionContext
| 2006-11-20 15:05:56,796 INFO [org.jboss.seam.Component] Component: statelessContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.StatelessContext
| 2006-11-20 15:05:56,812 INFO [org.jboss.seam.Component] Component: applicationContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.ApplicationContext
| 2006-11-20 15:05:56,828 INFO [org.jboss.seam.Component] Component: conversationContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationContext
| 2006-11-20 15:05:56,828 INFO [org.jboss.seam.Component] Component: businessProcessContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.BusinessProcessContext
| 2006-11-20 15:05:56,843 INFO [org.jboss.seam.Component] Component: locale, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Locale
| 2006-11-20 15:05:56,843 INFO [org.jboss.seam.Component] Component: messages, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.core.Messages
| 2006-11-20 15:05:56,859 INFO [org.jboss.seam.Component] Component: interpolator, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Interpolator
| 2006-11-20 15:05:56,859 INFO [org.jboss.seam.Component] Component: facesMessages, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.FacesMessages
| 2006-11-20 15:05:56,875 INFO [org.jboss.seam.Component] Component: resourceBundle, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.core.ResourceBundle
| 2006-11-20 15:05:56,890 INFO [org.jboss.seam.Component] Component: localeSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.core.LocaleSelector
| 2006-11-20 15:05:56,906 INFO [org.jboss.seam.Component] Component: uiComponent, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.UiComponent
| 2006-11-20 15:05:56,906 INFO [org.jboss.seam.Component] Component: org.jboss.seam.remoting.messaging.subscriptionRegistry, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.remoting.messaging.SubscriptionRegistry
| 2006-11-20 15:05:56,921 INFO [org.jboss.seam.Component] Component: pojoCache, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.PojoCache
| 2006-11-20 15:05:56,921 INFO [org.jboss.seam.Component] Component: org.jboss.seam.debug.introspector, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.debug.Introspector
| 2006-11-20 15:05:56,968 INFO [org.jboss.seam.Component] Component: org.jboss.seam.debug.contexts, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.debug.Contexts
| 2006-11-20 15:05:56,984 INFO [org.jboss.seam.deployment.Scanner] scanning: C:\tomcat\webapps\caGridAdminPortal\WEB-INF\classes
| 2006-11-20 15:05:56,984 DEBUG [org.jboss.seam.deployment.Scanner] directory: C:\tomcat\webapps\caGridAdminPortal\WEB-INF\classes
| 2006-11-20 15:05:56,984 DEBUG [org.jboss.seam.deployment.Scanner] directory: C:\tomcat\webapps\caGridAdminPortal\WEB-INF\classes\conf
| 2006-11-20 15:05:56,984 DEBUG [org.jboss.seam.deployment.Scanner] directory: C:\tomcat\webapps\caGridAdminPortal\WEB-INF\classes\gov
| 2006-11-20 15:05:56,984 DEBUG [org.jboss.seam.deployment.Scanner] directory: C:\tomcat\webapps\caGridAdminPortal\WEB-INF\classes\gov\nih
| 2006-11-20 15:05:56,984 DEBUG [org.jboss.seam.deployment.Scanner] directory: C:\tomcat\webapps\caGridAdminPortal\WEB-INF\classes\gov\nih\nci
| 2006-11-20 15:05:56,984 DEBUG [org.jboss.seam.deployment.Scanner] directory: C:\tomcat\webapps\caGridAdminPortal\WEB-INF\classes\gov\nih\nci\cagrid
| 2006-11-20 15:05:56,984 DEBUG [org.jboss.seam.deployment.Scanner] directory: C:\tomcat\webapps\caGridAdminPortal\WEB-INF\classes\gov\nih\nci\cagrid\portal
| 2006-11-20 15:05:56,984 DEBUG [org.jboss.seam.deployment.Scanner] directory: C:\tomcat\webapps\caGridAdminPortal\WEB-INF\classes\gov\nih\nci\cagrid\portal\command
| 2006-11-20 15:05:57,000 DEBUG [org.jboss.seam.deployment.Scanner] directory: C:\tomcat\webapps\caGridAdminPortal\WEB-INF\classes\gov\nih\nci\cagrid\portal\domain
| 2006-11-20 15:05:57,015 DEBUG [org.jboss.seam.deployment.Scanner] directory: C:\tomcat\webapps\caGridAdminPortal\WEB-INF\classes\gov\nih\nci\cagrid\portal\messages
| 2006-11-20 15:05:57,031 INFO [org.jboss.seam.Component] Component: searchCriteria, scope: SESSION, type: JAVA_BEAN, class: gov.nih.nci.cagrid.portal.command.SearchCriteria
| 2006-11-20 15:05:57,046 INFO [org.jboss.seam.Component] Component: search, scope: STATELESS, type: STATELESS_SESSION_BEAN, class: gov.nih.nci.cagrid.portal.command.SearchBean, JNDI: SearchBean/local
| 2006-11-20 15:05:57,093 DEBUG [org.jboss.seam.Component] instantiating Seam component: applicationContext
| 2006-11-20 15:05:57,093 DEBUG [org.jboss.seam.Component] instantiating Seam component: isUserInRole
| 2006-11-20 15:05:57,093 DEBUG [org.jboss.seam.Component] instantiating Seam component: statelessContext
| 2006-11-20 15:05:57,109 DEBUG [org.jboss.seam.Component] instantiating Seam component: userPrincipal
| 2006-11-20 15:05:57,109 DEBUG [org.jboss.seam.Component] instantiating Seam component: sessionContext
| 2006-11-20 15:05:57,109 DEBUG [org.jboss.seam.Component] instantiating Seam component: facesContext
| 2006-11-20 15:05:57,109 DEBUG [org.jboss.seam.Component] instantiating Seam component: businessProcessContext
| 2006-11-20 15:05:57,109 DEBUG [org.jboss.seam.Component] instantiating Seam component: eventContext
| 2006-11-20 15:05:57,109 DEBUG [org.jboss.seam.Component] instantiating Seam component: pageContext
| 2006-11-20 15:05:57,109 DEBUG [org.jboss.seam.Component] instantiating Seam component: conversationContext
| 2006-11-20 15:05:57,109 INFO [org.jboss.seam.init.Initialization] done initializing Seam
| 2006-11-20 15:06:29,984 DEBUG [org.jboss.seam.contexts.Lifecycle] Session started
| 2006-11-20 15:06:30,015 DEBUG [org.jboss.seam.contexts.Lifecycle] >>> Begin web request
| 2006-11-20 15:06:30,046 DEBUG [org.jboss.seam.Component] instantiating Seam component: localeSelector
| 2006-11-20 15:06:30,062 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.manager
| 2006-11-20 15:06:30,062 DEBUG [org.jboss.seam.core.Manager] No stored conversation
| 2006-11-20 15:06:30,062 DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.core.init
| 2006-11-20 15:06:30,062 DEBUG [org.jboss.seam.jsf.AbstractSeamPhaseListener] After restoring conversation context: ConversationContext(1)
| 2006-11-20 15:06:30,203 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.pages
| 2006-11-20 15:06:30,203 INFO [org.jboss.seam.core.Pages] no pages.xml file found
| 2006-11-20 15:06:30,203 DEBUG [org.jboss.seam.Component] instantiating Seam component: facesMessages
| 2006-11-20 15:06:30,328 INFO [org.apache.myfaces.shared_impl.config.MyfacesConfig] No context init parameter 'org.apache.myfaces.PRETTY_HTML' found, using default value true
| 2006-11-20 15:06:30,328 INFO [org.apache.myfaces.shared_impl.config.MyfacesConfig] No context init parameter 'org.apache.myfaces.ALLOW_JAVASCRIPT' found, using default value true
| 2006-11-20 15:06:30,328 INFO [org.apache.myfaces.shared_impl.config.MyfacesConfig] No context init parameter 'org.apache.myfaces.ADD_RESOURCE_CLASS' found, using default value org.apache.myfaces.renderkit.html.util.DefaultAddResource
| 2006-11-20 15:06:30,328 INFO [org.apache.myfaces.shared_impl.config.MyfacesConfig] No context init parameter 'org.apache.myfaces.CHECK_EXTENSIONS_FILTER' found, using default value true
| 2006-11-20 15:06:30,343 DEBUG [org.jboss.seam.core.Manager] Discarding conversation state: 1
| 2006-11-20 15:06:30,343 DEBUG [org.jboss.seam.contexts.Lifecycle] flushing page context
| 2006-11-20 15:06:30,359 DEBUG [org.jboss.seam.contexts.Lifecycle] After render response, destroying contexts
| 2006-11-20 15:06:30,359 DEBUG [org.jboss.seam.contexts.Lifecycle] destroying event context
| 2006-11-20 15:06:30,359 DEBUG [org.jboss.seam.contexts.Contexts] destroying: javax.servlet.forward.request_uri
| 2006-11-20 15:06:30,359 DEBUG [org.jboss.seam.contexts.Contexts] destroying: javax.servlet.forward.context_path
| 2006-11-20 15:06:30,359 DEBUG [org.jboss.seam.contexts.Contexts] destroying: javax.servlet.forward.servlet_path
| 2006-11-20 15:06:30,359 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.manager
| 2006-11-20 15:06:30,359 DEBUG [org.jboss.seam.contexts.Contexts] destroying: class org.apache.myfaces.shared_tomahawk.renderkit.html.util.JavascriptUtils.OLD_VIEW_ID
| 2006-11-20 15:06:30,359 DEBUG [org.jboss.seam.contexts.Contexts] destroying: javax.faces.webapp.UIComponentTag.UNIQUE_ID_COUNTER
| 2006-11-20 15:06:30,359 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.apache.myfaces.application.jsp.JspStateManagerImpl.SERIALIZED_VIEW
| 2006-11-20 15:06:30,359 DEBUG [org.jboss.seam.contexts.Lifecycle] destroying conversation context
| 2006-11-20 15:06:30,359 DEBUG [org.jboss.seam.contexts.Contexts] destroying: facesMessages
| 2006-11-20 15:06:30,359 DEBUG [org.jboss.seam.contexts.Lifecycle] flushing server-side conversation context
| 2006-11-20 15:06:30,359 DEBUG [org.jboss.seam.contexts.Lifecycle] <<< End web request
| 2006-11-20 15:06:30,375 INFO [org.apache.myfaces.shared_tomahawk.config.MyfacesConfig] No context init parameter 'org.apache.myfaces.PRETTY_HTML' found, using default value true
| 2006-11-20 15:06:30,375 INFO [org.apache.myfaces.shared_tomahawk.config.MyfacesConfig] No context init parameter 'org.apache.myfaces.ALLOW_JAVASCRIPT' found, using default value true
| 2006-11-20 15:06:30,375 INFO [org.apache.myfaces.shared_tomahawk.config.MyfacesConfig] No context init parameter 'org.apache.myfaces.ADD_RESOURCE_CLASS' found, using default value org.apache.myfaces.renderkit.html.util.DefaultAddResource
| 2006-11-20 15:06:30,375 INFO [org.apache.myfaces.shared_tomahawk.config.MyfacesConfig] No context init parameter 'org.apache.myfaces.CHECK_EXTENSIONS_FILTER' found, using default value true
| 2006-11-20 15:06:32,218 DEBUG [org.jboss.seam.contexts.Lifecycle] >>> Begin web request
| 2006-11-20 15:06:32,218 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.manager
| 2006-11-20 15:06:32,218 DEBUG [org.jboss.seam.core.Manager] No stored conversation
| 2006-11-20 15:06:32,218 DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.core.init
| 2006-11-20 15:06:32,218 DEBUG [org.jboss.seam.jsf.AbstractSeamPhaseListener] After restoring conversation context: ConversationContext(2)
| 2006-11-20 15:06:32,218 DEBUG [org.jboss.seam.Component] instantiating Seam component: facesMessages
| 2006-11-20 15:06:32,515 WARN [org.apache.myfaces.shared_impl.taglib.UIComponentBodyTagBase] Component with id 'hfpanel' (org.apache.myfaces.taglib.html.HtmlPanelGridTag tag) and path : {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /BasicSearch.jsp][Class: javax.faces.component.html.HtmlPanelGrid,Id: hfpanel]}renders it's children, but has embedded JSP or HTML code. Use the <f:verbatim> tag for nested HTML. For comments use <%/* */%> style JSP comments instead of <!-- --> style HTML comments.
| BodyContent:
| <!-- use two tabs for Research Center and Service results, and el(expression language)-->
| 2006-11-20 15:06:32,531 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: search_msg
| 2006-11-20 15:06:32,531 DEBUG [org.jboss.seam.contexts.Contexts] found in event context: search_msg
| 2006-11-20 15:06:32,531 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-11-20 15:06:32,531 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: searchCriteria
| 2006-11-20 15:06:32,531 DEBUG [org.jboss.seam.Component] instantiating Seam component: searchCriteria
| 2006-11-20 15:06:32,625 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-11-20 15:06:32,640 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: search_msg
| 2006-11-20 15:06:32,640 DEBUG [org.jboss.seam.contexts.Contexts] found in event context: search_msg
| 2006-11-20 15:06:32,640 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-11-20 15:06:32,656 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: searchCriteria
| 2006-11-20 15:06:32,656 DEBUG [org.jboss.seam.contexts.Contexts] found in session context: searchCriteria
| 2006-11-20 15:06:32,656 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-11-20 15:06:32,656 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: searchCriteria
| 2006-11-20 15:06:32,656 DEBUG [org.jboss.seam.contexts.Contexts] found in session context: searchCriteria
| 2006-11-20 15:06:32,656 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-11-20 15:06:32,671 DEBUG [org.jboss.seam.core.Manager] Discarding conversation state: 2
| 2006-11-20 15:06:32,671 DEBUG [org.jboss.seam.contexts.Lifecycle] flushing page context
| 2006-11-20 15:06:32,734 DEBUG [org.jboss.seam.contexts.Lifecycle] After render response, destroying contexts
| 2006-11-20 15:06:32,734 DEBUG [org.jboss.seam.contexts.Lifecycle] destroying event context
| 2006-11-20 15:06:32,734 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.jboss.seam.core.manager
| 2006-11-20 15:06:32,734 DEBUG [org.jboss.seam.contexts.Contexts] destroying: class org.apache.myfaces.shared_tomahawk.renderkit.html.util.JavascriptUtils.OLD_VIEW_ID
| 2006-11-20 15:06:32,734 DEBUG [org.jboss.seam.contexts.Contexts] destroying: search_msg
| 2006-11-20 15:06:32,734 DEBUG [org.jboss.seam.contexts.Contexts] destroying: javax.faces.webapp.UIComponentTag.UNIQUE_ID_COUNTER
| 2006-11-20 15:06:32,734 DEBUG [org.jboss.seam.contexts.Contexts] destroying: org.apache.myfaces.application.jsp.JspStateManagerImpl.SERIALIZED_VIEW
| 2006-11-20 15:06:32,734 DEBUG [org.jboss.seam.contexts.Lifecycle] destroying conversation context
| 2006-11-20 15:06:32,734 DEBUG [org.jboss.seam.contexts.Contexts] destroying: facesMessages
| 2006-11-20 15:06:32,734 DEBUG [org.jboss.seam.contexts.Lifecycle] flushing server-side conversation context
| 2006-11-20 15:06:32,734 DEBUG [org.jboss.seam.contexts.Lifecycle] <<< End web request
| 2006-11-20 15:06:35,734 DEBUG [org.jboss.seam.contexts.Lifecycle] >>> Begin web request
| 2006-11-20 15:06:35,781 DEBUG [org.jboss.seam.Component] instantiating Seam component: org.jboss.seam.core.manager
| 2006-11-20 15:06:35,781 DEBUG [org.jboss.seam.core.Manager] No stored conversation
| 2006-11-20 15:06:35,781 DEBUG [org.jboss.seam.contexts.Contexts] found in application context: org.jboss.seam.core.init
| 2006-11-20 15:06:35,781 DEBUG [org.jboss.seam.jsf.AbstractSeamPhaseListener] After restoring conversation context: ConversationContext(3)
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: searchCriteria
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.contexts.Contexts] found in session context: searchCriteria
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: searchCriteria
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.contexts.Contexts] found in session context: searchCriteria
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: searchCriteria
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.contexts.Contexts] found in session context: searchCriteria
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: searchCriteria
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.contexts.Contexts] found in session context: searchCriteria
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: searchCriteria
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.contexts.Contexts] found in session context: searchCriteria
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: searchCriteria
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.contexts.Contexts] found in session context: searchCriteria
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: searchCriteria
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.contexts.Contexts] found in session context: searchCriteria
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolved name to seam component
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.jsf.SeamVariableResolver] resolving name: search
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.Component] instantiating Seam component: search
| 2006-11-20 15:06:35,796 DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.LocalOnlyContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
| 2006-11-20 15:06:35,828 DEBUG [org.jboss.seam.util.Naming] Could not obtain initial context
| javax.naming.NamingException: Local server is not initialized
| at org.jnp.interfaces.LocalOnlyContextFactory.getInitialContext(LocalOnlyContextFactory.java:45)
| at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
| at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
| at javax.naming.InitialContext.init(InitialContext.java:223)
| at javax.naming.InitialContext.<init>(InitialContext.java:197)
| at org.jboss.seam.util.Naming.getInitialContext(Naming.java:26)
| at org.jboss.seam.util.Naming.getInitialContext(Naming.java:37)
| at org.jboss.seam.Component.instantiate(Component.java:774)
| at org.jboss.seam.Component.newInstance(Component.java:731)
| at org.jboss.seam.Component.newInstance(Component.java:1308)
| at org.jboss.seam.Component.getInstance(Component.java:1263)
| at org.jboss.seam.Component.getInstance(Component.java:1246)
| at org.jboss.seam.jsf.SeamVariableResolver.resolveVariable(SeamVariableResolver.java:44)
| at org.apache.myfaces.config.LastVariableResolverInChain.resolveVariable(LastVariableResolverInChain.java:42)
| at org.apache.myfaces.el.ValueBindingImpl$ELVariableResolver.resolveVariable(ValueBindingImpl.java:574)
| at org.apache.commons.el.NamedValue.evaluate(NamedValue.java:124)
| at org.apache.myfaces.el.ValueBindingImpl.resolveToBaseAndProperty(ValueBindingImpl.java:455)
| at org.apache.myfaces.el.MethodBindingImpl.resolveToBaseAndProperty(MethodBindingImpl.java:180)
| at org.apache.myfaces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:114)
| at org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:63)
| at javax.faces.component.UICommand.broadcast(UICommand.java:106)
| at javax.faces.component.UIViewRoot._broadcastForPhase(UIViewRoot.java:94)
| at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:168)
| at org.apache.myfaces.lifecycle.LifecycleImpl.invokeApplication(LifecycleImpl.java:343)
| at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:86)
| at javax.faces.webapp.FacesServlet.service(FacesServlet.java:137)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| at org.jboss.seam.servlet.SeamRedirectFilter.doFilter(SeamRedirectFilter.java:30)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
| at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
| at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
| at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
| at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
| at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
| at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
| at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
| at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
| at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
| at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
| at java.lang.Thread.run(Thread.java:595)
| 2006-11-20 15:06:35,828 DEBUG [org.jboss.seam.util.Naming] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.LocalOnlyContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
| 2006-11-20 15:06:35,828 DEBUG [org.jboss.seam.util.Naming] Could not obtain initial context
| javax.naming.NamingException: Local server is not initialized
| at org.jnp.interfaces.LocalOnlyContextFactory.getInitialContext(LocalOnlyContextFactory.java:45)
| at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
| at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
| at javax.naming.InitialContext.init(InitialContext.java:223)
| at javax.naming.InitialContext.<init>(InitialContext.java:197)
| at org.jboss.seam.util.Naming.getInitialContext(Naming.java:26)
| at org.jboss.seam.util.Naming.getInitialContext(Naming.java:37)
| at org.jboss.seam.util.Transactions.getUserTransaction(Transactions.java:48)
| at org.jboss.seam.util.Transactions.isTransactionAvailableAndMarkedRollback(Transactions.java:91)
| at org.jboss.seam.jsf.SeamPhaseListener.afterPhase(SeamPhaseListener.java:69)
| at org.apache.myfaces.lifecycle.PhaseListenerManager.informPhaseListenersAfter(PhaseListenerManager.java:89)
| at org.apache.myfaces.lifecycle.LifecycleImpl.invokeApplication(LifecycleImpl.java:345)
| at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:86)
| at javax.faces.webapp.FacesServlet.service(FacesServlet.java:137)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| at org.jboss.seam.servlet.SeamRedirectFilter.doFilter(SeamRedirectFilter.java:30)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
| at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
| at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
| at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
| at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
| at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
| at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
| at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
| at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
| at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
| at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
| at java.lang.Thread.run(Thread.java:595)
| 2006-11-20 15:06:35,828 ERROR [org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/caGridAdminPortal].[Faces Servlet]] Servlet.service() for servlet Faces Servlet threw exception
| javax.faces.FacesException: Error calling action method of component with id _idJsp14:_idJsp23
| at org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:74)
| at javax.faces.component.UICommand.broadcast(UICommand.java:106)
| at javax.faces.component.UIViewRoot._broadcastForPhase(UIViewRoot.java:94)
| at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:168)
| at org.apache.myfaces.lifecycle.LifecycleImpl.invokeApplication(LifecycleImpl.java:343)
| at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:86)
| at javax.faces.webapp.FacesServlet.service(FacesServlet.java:137)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| at org.jboss.seam.servlet.SeamRedirectFilter.doFilter(SeamRedirectFilter.java:30)
| at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
| at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
| at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
| at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
| at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
| at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
| at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
| at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
| at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
| at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
| at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
| at java.lang.Thread.run(Thread.java:595)
| Caused by: javax.faces.el.EvaluationException: Exception while invoking expression #{search.performBasicSearch}
| at org.apache.myfaces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:165)
| at org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:63)
| ... 23 more
| Caused by: org.jboss.seam.InstantiationException: Could not instantiate Seam component: search
| at org.jboss.seam.Component.newInstance(Component.java:735)
| at org.jboss.seam.Component.newInstance(Component.java:1308)
| at org.jboss.seam.Component.getInstance(Component.java:1263)
| at org.jboss.seam.Component.getInstance(Component.java:1246)
| at org.jboss.seam.jsf.SeamVariableResolver.resolveVariable(SeamVariableResolver.java:44)
| at org.apache.myfaces.config.LastVariableResolverInChain.resolveVariable(LastVariableResolverInChain.java:42)
| at org.apache.myfaces.el.ValueBindingImpl$ELVariableResolver.resolveVariable(ValueBindingImpl.java:574)
| at org.apache.commons.el.NamedValue.evaluate(NamedValue.java:124)
| at org.apache.myfaces.el.ValueBindingImpl.resolveToBaseAndProperty(ValueBindingImpl.java:455)
| at org.apache.myfaces.el.MethodBindingImpl.resolveToBaseAndProperty(MethodBindingImpl.java:180)
| at org.apache.myfaces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:114)
| ... 24 more
| Caused by: javax.naming.NamingException: Local server is not initialized
| at org.jnp.interfaces.LocalOnlyContextFactory.getInitialContext(LocalOnlyContextFactory.java:45)
| at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
| at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
| at javax.naming.InitialContext.init(InitialContext.java:223)
| at javax.naming.InitialContext.<init>(InitialContext.java:197)
| at org.jboss.seam.util.Naming.getInitialContext(Naming.java:26)
| at org.jboss.seam.util.Naming.getInitialContext(Naming.java:37)
| at org.jboss.seam.Component.instantiate(Component.java:774)
| at org.jboss.seam.Component.newInstance(Component.java:731) ... 34 more
I've read many of the postings in this forum...and I haven't been able to find anything to help or indicate to me why this error is occurring. Any advice or direction would be greatly appreciated.
Thank you
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3987573#3987573
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3987573
19Â years, 5Â months