5 Replies Latest reply on Apr 19, 2006 12:03 PM by arnieaustin

    Hibernate w/JBoss, multiple hbm class paths and datasources.

    arnieaustin

      I hope someone here has an answer for me. We are using Novell's exteNd portal with JBoss and have multiple db connection pools setup for the various databases used by the portlets. Some are shared, many are not. I am trying to write a portlet using Hibernate 3.1 and have setup the hibernate-service.xml file and things are being discovered and read. But when Hibernate goes out to try and load a class I'm getting an error (see attached). I have tried defining two MBeans but that doesn't seem to help. Just how is one supposed to connect a set of hbm tables to a specific JBoss connecton pool?
      ===============
      Hibernate Service.xml file
      ---------------------------
      <?xml version="1.0" encoding="UTF-8"?>

      -->
      <!-- datasource settings -->
      java:/applicationSecurity
      org.hibernate.dialect.SybaseDialect
      <!-- bind the hibernate service to jndi -->
      java:/hibernate/txoagPortalSFAppSec
      org.hibernate.cache.HashtableCacheProvider
      <!-- logging -->
      true

      -->
      <!-- datasource settings -->
      java:/working
      org.hibernate.dialect.SybaseDialect
      <!-- bind the hibernate service to jndi -->
      java:/hibernate/txoagPortalSFworking
      org.hibernate.cache.HashtableCacheProvider
      <!-- logging -->
      true


      ============
      JBoss Log File (excerpt)
      --------------------
      2006-04-19 10:32:20,734 INFO [org.hibernate.cfg.Configuration] Searching for mapping documents in jar: txoagPortal.har
      2006-04-19 10:32:20,734 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/AppSecMgmt/HbmInfoUsersTable.hbm.xml
      2006-04-19 10:32:20,734 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:20,734 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:21,015 INFO [org.hibernate.cfg.HbmBinder] Mapping class: Info_Users -> info_users
      2006-04-19 10:32:21,031 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: userId -> user_id
      2006-04-19 10:32:21,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: userCN -> user_cn
      2006-04-19 10:32:21,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: isActive -> is_active
      2006-04-19 10:32:21,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: isDeployed -> is_deployed
      2006-04-19 10:32:21,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: isEmployee -> is_employee
      2006-04-19 10:32:21,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: dateEffective -> dt_eff
      2006-04-19 10:32:21,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: dateInactive -> dt_inactive
      2006-04-19 10:32:21,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: employeeID -> emplid
      2006-04-19 10:32:21,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: firstName -> first_name
      2006-04-19 10:32:21,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: lastName -> last_name
      2006-04-19 10:32:21,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: title -> title
      2006-04-19 10:32:21,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: crUser -> cr_user
      2006-04-19 10:32:21,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: crDate -> cr_date
      2006-04-19 10:32:21,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: upUser -> up_user
      2006-04-19 10:32:21,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: upDate -> up_date
      2006-04-19 10:32:21,109 DEBUG [org.hibernate.cfg.HbmBinder] Named SQL query: Info_Users.users_find -> { call info_users_find_spr ( ?,?,?,?, ?,?,? ) }
      2006-04-19 10:32:21,109 DEBUG [org.hibernate.cfg.HbmBinder] Named SQL query: Info_Users.user_read -> { call info_users_spr ( ?,?,?, ?,?,? ) }
      2006-04-19 10:32:21,109 DEBUG [org.hibernate.cfg.HbmBinder] Named SQL query: Info_Users.user_add -> { call info_users_spa ( ?,?,?,?,?,?,?,?,?,?,?,?, ?,?,? ) }
      2006-04-19 10:32:21,109 DEBUG [org.hibernate.cfg.HbmBinder] Named SQL query: Info_Users.user_update -> { call info_users_spu ( ?,?,?,?,?,?,?,?,?,?,?,?, ?,?,? ) }
      2006-04-19 10:32:21,109 DEBUG [org.hibernate.cfg.HbmBinder] Named SQL query: Info_Users.user_delete -> { call info_users_spd ( ?,?, ?,?,? ) }
      2006-04-19 10:32:21,109 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPaCodeActionSignaturesTable.hbm.xml
      2006-04-19 10:32:21,109 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:21,109 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:21,140 INFO [org.hibernate.cfg.HbmBinder] Mapping class: code_wf_action_signatures -> code_wf_action_signatures
      2006-04-19 10:32:21,140 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: id -> action_type_id
      2006-04-19 10:32:21,140 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: description -> description
      2006-04-19 10:32:21,140 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPaCodeActionStatusTable.hbm.xml
      2006-04-19 10:32:21,140 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:21,140 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:21,171 INFO [org.hibernate.cfg.HbmBinder] Mapping class: code_wf_action_status -> code_wf_action_status
      2006-04-19 10:32:21,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: id -> action_status_id
      2006-04-19 10:32:21,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: description -> description
      2006-04-19 10:32:21,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: next_status -> next_status
      2006-04-19 10:32:21,171 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPaCodeActionTypeTable.hbm.xml
      2006-04-19 10:32:21,203 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:21,203 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:21,218 INFO [org.hibernate.cfg.HbmBinder] Mapping class: code_wf_action_type -> code_wf_action_type
      2006-04-19 10:32:21,218 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: id -> action_type_id
      2006-04-19 10:32:21,218 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: description -> description
      2006-04-19 10:32:21,218 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPaEmployeeTable.hbm.xml
      2006-04-19 10:32:21,218 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:21,218 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:21,250 INFO [org.hibernate.cfg.HbmBinder] Mapping class: info_wf_pa_employee -> info_wf_pa_employee
      2006-04-19 10:32:21,250 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: action_id -> action_id
      2006-04-19 10:32:21,250 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: emplid -> emplid
      2006-04-19 10:32:21,250 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: employment_date -> employment_date
      2006-04-19 10:32:21,250 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: last_eval_date -> last_eval_date
      2006-04-19 10:32:21,250 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: last_promotion_date -> last_promotion_date
      2006-04-19 10:32:21,250 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: last_work_date -> last_work_date
      2006-04-19 10:32:21,250 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: lwop_start_date -> lwop_start_date
      2006-04-19 10:32:21,250 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: lwop_end_date -> lwop_end_date
      2006-04-19 10:32:21,250 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: mail_code -> mail_code
      2006-04-19 10:32:21,250 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: name_first -> name_first
      2006-04-19 10:32:21,250 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: name_last -> name_last
      2006-04-19 10:32:21,250 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: name_preferred -> name_preferred
      2006-04-19 10:32:21,265 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: phone_work -> phone_work
      2006-04-19 10:32:21,265 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: ssn -> ssn
      2006-04-19 10:32:21,265 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: termination_date -> termination_date
      2006-04-19 10:32:21,546 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: fk_employee_to_action -> action_id
      2006-04-19 10:32:21,546 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPaPositionTable.hbm.xml
      2006-04-19 10:32:21,546 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:21,546 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:21,578 INFO [org.hibernate.cfg.HbmBinder] Mapping class: info_wf_pa_position -> info_wf_pa_position
      2006-04-19 10:32:21,578 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: action_id -> action_id
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_business_unit -> to_business_unit
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_class_number -> to_class_number
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_class_title -> to_class_title
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_eeo_function -> to_eeo_function
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_flsa_number -> to_flsa_number
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_is_manager -> to_is_manager
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_is_supervisor -> to_is_supervisor
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_office_cube_available -> to_office_cube_available
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_org_code -> to_org_code
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_pay_group -> to_pay_group
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_position_number -> to_position_number
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_primary_pca -> to_primary_pca
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_salary_annually -> to_salary_annually
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_salary_monthly -> to_salary_monthly
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_secondary_pca -> to_secondary_pca
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_weekly_hours -> to_weekly_hours
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_business_unit -> from_business_unit
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_class_number -> from_class_number
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_class_title -> from_class_title
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_eeo_function -> from_eeo_function
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_flsa_number -> from_flsa_number
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_is_manager -> from_is_manager
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_is_supervisor -> from_is_supervisor
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_office_cube_available -> from_office_cube_available
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_org_code -> from_org_code
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_pay_group -> from_pay_group
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_position_number -> from_position_number
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_primary_pca -> from_primary_pca
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_salary_annually -> from_salary_annually
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_salary_monthly -> from_salary_monthly
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_secondary_pca -> from_secondary_pca
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_weekly_hours -> from_weekly_hours
      2006-04-19 10:32:21,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: fk_position_to_action -> action_id
      2006-04-19 10:32:21,593 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPaSignaturesTable.hbm.xml
      2006-04-19 10:32:21,609 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:21,609 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:21,625 INFO [org.hibernate.cfg.HbmBinder] Mapping class: info_wf_pa_signatures -> info_wf_pa_signatures
      2006-04-19 10:32:21,625 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: action_id -> action_id
      2006-04-19 10:32:21,625 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: signature_id -> signature_id
      2006-04-19 10:32:21,625 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: id -> action_id, signature_id
      2006-04-19 10:32:21,625 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: approval_state -> approval_state
      2006-04-19 10:32:21,625 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: emplid -> emplid
      2006-04-19 10:32:21,625 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: date_signature -> date_signature
      2006-04-19 10:32:21,625 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: comments -> comments
      2006-04-19 10:32:21,625 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPersonnelActionTable.hbm.xml
      2006-04-19 10:32:21,625 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:21,625 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:21,750 INFO [org.hibernate.cfg.HbmBinder] Mapping class: info_wf_personnel_action -> info_wf_personnel_action
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: action_id -> action_id
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: action_type_id -> action_type_id
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: creation_date -> creation_date
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: effective_date -> effective_date
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: hr_emplid -> hr_emplid
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: hr_name_first -> hr_name_first
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: hr_name_last -> hr_name_last
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: hr_phone_work -> hr_phone_work
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: portal_wf_id -> portal_wf_id
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: mgr_emplid -> mgr_emplid
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: mgr_name_first -> mgr_name_first
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: mgr_name_last -> mgr_name_last
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: mgr_phone_work -> mgr_phone_work
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.Configuration] Preparing to build session factory with filters : {}
      2006-04-19 10:32:21,750 INFO [org.hibernate.cfg.Configuration] processing extends queue
      2006-04-19 10:32:21,750 INFO [org.hibernate.cfg.Configuration] processing collection mappings
      2006-04-19 10:32:21,750 INFO [org.hibernate.cfg.Configuration] processing association property references
      2006-04-19 10:32:21,750 INFO [org.hibernate.cfg.Configuration] processing foreign key constraints
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.Configuration] resolving reference to class: info_wf_personnel_action
      2006-04-19 10:32:21,750 DEBUG [org.hibernate.cfg.Configuration] resolving reference to class: info_wf_personnel_action
      2006-04-19 10:32:21,968 ERROR [org.jboss.hibernate.jmx.Hibernate] Starting failed jboss.har:service=HibernateAppSec
      org.hibernate.MappingException: component class not found: HbmWfPaSignaturesTable
      at org.hibernate.mapping.Component.getComponentClass(Component.java:105)
      at org.hibernate.tuple.PojoComponentTuplizer.buildGetter(PojoComponentTuplizer.java:140)
      at org.hibernate.tuple.AbstractComponentTuplizer.(AbstractComponentTuplizer.java:79)
      at org.hibernate.tuple.PojoComponentTuplizer.(PojoComponentTuplizer.java:33)
      at org.hibernate.tuple.TuplizerLookup.create(TuplizerLookup.java:126)
      at org.hibernate.mapping.Component.getType(Component.java:160)
      at org.hibernate.mapping.SimpleValue.isValid(SimpleValue.java:253)
      at org.hibernate.mapping.RootClass.validate(RootClass.java:193)
      at org.hibernate.cfg.Configuration.validate(Configuration.java:983)
      at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1147)
      at org.jboss.hibernate.jmx.Hibernate.buildSessionFactory(Hibernate.java:611)
      at org.jboss.hibernate.jmx.Hibernate.startService(Hibernate.java:578)
      at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:272)
      at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:222)
      at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:891)
      at $Proxy0.start(Unknown Source)
      at org.jboss.system.ServiceController.start(ServiceController.java:416)
      at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
      at $Proxy4.start(Unknown Source)
      at org.jboss.deployment.SARDeployer.start(SARDeployer.java:261)
      at org.jboss.deployment.MainDeployer.start(MainDeployer.java:964)
      at org.jboss.deployment.MainDeployer.start(MainDeployer.java:956)
      at org.jboss.deployment.MainDeployer.start(MainDeployer.java:956)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:775)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
      at sun.reflect.GeneratedMethodAccessor48.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:131)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
      at $Proxy8.deploy(Unknown Source)
      at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:305)
      at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:481)
      at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:204)
      at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:277)
      at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:272)
      at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:222)
      at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:891)
      at $Proxy0.start(Unknown Source)
      at org.jboss.system.ServiceController.start(ServiceController.java:416)
      at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
      at $Proxy4.start(Unknown Source)
      at org.jboss.deployment.SARDeployer.start(SARDeployer.java:261)
      at org.jboss.deployment.MainDeployer.start(MainDeployer.java:964)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:775)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:722)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:131)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
      at $Proxy5.deploy(Unknown Source)
      at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:413)
      at org.jboss.system.server.ServerImpl.start(ServerImpl.java:310)
      at org.jboss.Main.boot(Main.java:162)
      at org.jboss.Main$1.run(Main.java:423)
      at java.lang.Thread.run(Thread.java:534)
      Caused by: java.lang.ClassNotFoundException: No ClassLoaders found for: HbmWfPaSignaturesTable
      at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:292)
      at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:464)
      at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:374)
      at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
      at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
      at java.lang.Class.forName0(Native Method)
      at java.lang.Class.forName(Class.java:141)
      at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:108)
      at org.hibernate.mapping.Component.getComponentClass(Component.java:102)
      ... 104 more
      2006-04-19 10:32:21,984 WARN [org.jboss.system.ServiceController] Problem starting service jboss.har:service=HibernateAppSec
      org.hibernate.MappingException: component class not found: HbmWfPaSignaturesTable
      at org.hibernate.mapping.Component.getComponentClass(Component.java:105)
      at org.hibernate.tuple.PojoComponentTuplizer.buildGetter(PojoComponentTuplizer.java:140)
      at org.hibernate.tuple.AbstractComponentTuplizer.(AbstractComponentTuplizer.java:79)
      at org.hibernate.tuple.PojoComponentTuplizer.(PojoComponentTuplizer.java:33)
      at org.hibernate.tuple.TuplizerLookup.create(TuplizerLookup.java:126)
      at org.hibernate.mapping.Component.getType(Component.java:160)
      at org.hibernate.mapping.SimpleValue.isValid(SimpleValue.java:253)
      at org.hibernate.mapping.RootClass.validate(RootClass.java:193)
      at org.hibernate.cfg.Configuration.validate(Configuration.java:983)
      at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1147)
      at org.jboss.hibernate.jmx.Hibernate.buildSessionFactory(Hibernate.java:611)
      at org.jboss.hibernate.jmx.Hibernate.startService(Hibernate.java:578)
      at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:272)
      at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:222)
      at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:891)
      at $Proxy0.start(Unknown Source)
      at org.jboss.system.ServiceController.start(ServiceController.java:416)
      at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
      at $Proxy4.start(Unknown Source)
      at org.jboss.deployment.SARDeployer.start(SARDeployer.java:261)
      at org.jboss.deployment.MainDeployer.start(MainDeployer.java:964)
      at org.jboss.deployment.MainDeployer.start(MainDeployer.java:956)
      at org.jboss.deployment.MainDeployer.start(MainDeployer.java:956)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:775)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
      at sun.reflect.GeneratedMethodAccessor48.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:131)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
      at $Proxy8.deploy(Unknown Source)
      at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:305)
      at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:481)
      at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:204)
      at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:277)
      at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:272)
      at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:222)
      at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:891)
      at $Proxy0.start(Unknown Source)
      at org.jboss.system.ServiceController.start(ServiceController.java:416)
      at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
      at $Proxy4.start(Unknown Source)
      at org.jboss.deployment.SARDeployer.start(SARDeployer.java:261)
      at org.jboss.deployment.MainDeployer.start(MainDeployer.java:964)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:775)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:722)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:131)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
      at $Proxy5.deploy(Unknown Source)
      at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:413)
      at org.jboss.system.server.ServerImpl.start(ServerImpl.java:310)
      at org.jboss.Main.boot(Main.java:162)
      at org.jboss.Main$1.run(Main.java:423)
      at java.lang.Thread.run(Thread.java:534)
      Caused by: java.lang.ClassNotFoundException: No ClassLoaders found for: HbmWfPaSignaturesTable
      at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:292)
      at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:464)
      at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:374)
      at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
      at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
      at java.lang.Class.forName0(Native Method)
      at java.lang.Class.forName(Class.java:141)
      at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:108)
      at org.hibernate.mapping.Component.getComponentClass(Component.java:102)
      ... 104 more
      2006-04-19 10:32:21,984 DEBUG [org.jboss.system.ServiceController] starting service jboss.har:service=HibernateWorking
      2006-04-19 10:32:21,984 DEBUG [org.jboss.hibernate.jmx.Hibernate] Starting jboss.har:service=HibernateWorking
      2006-04-19 10:32:21,984 DEBUG [org.jboss.hibernate.jmx.Hibernate] Hibernate MBean starting; org.jboss.hibernate.jmx.Hibernate@bfb545 [ServiceName=jboss.har:service=HibernateWorking, JNDI=java:/hibernate/txoagPortalSFworking]
      2006-04-19 10:32:21,984 DEBUG [org.jboss.hibernate.jmx.Hibernate] Building SessionFactory; org.jboss.hibernate.jmx.Hibernate@bfb545 [ServiceName=jboss.har:service=HibernateWorking, JNDI=java:/hibernate/txoagPortalSFworking]
      2006-04-19 10:32:21,984 INFO [org.jboss.hibernate.jmx.Hibernate] Using JDBC batch size : null
      2006-04-19 10:32:21,984 INFO [org.hibernate.cfg.Configuration] Searching for mapping documents in jar: txoagPortal.har
      2006-04-19 10:32:21,984 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/AppSecMgmt/HbmInfoUsersTable.hbm.xml
      2006-04-19 10:32:21,984 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:21,984 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:22,015 INFO [org.hibernate.cfg.HbmBinder] Mapping class: Info_Users -> info_users
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: userId -> user_id
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: userCN -> user_cn
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: isActive -> is_active
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: isDeployed -> is_deployed
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: isEmployee -> is_employee
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: dateEffective -> dt_eff
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: dateInactive -> dt_inactive
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: employeeID -> emplid
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: firstName -> first_name
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: lastName -> last_name
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: title -> title
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: crUser -> cr_user
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: crDate -> cr_date
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: upUser -> up_user
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: upDate -> up_date
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Named SQL query: Info_Users.users_find -> { call info_users_find_spr ( ?,?,?,?, ?,?,? ) }
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Named SQL query: Info_Users.user_read -> { call info_users_spr ( ?,?,?, ?,?,? ) }
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Named SQL query: Info_Users.user_add -> { call info_users_spa ( ?,?,?,?,?,?,?,?,?,?,?,?, ?,?,? ) }
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Named SQL query: Info_Users.user_update -> { call info_users_spu ( ?,?,?,?,?,?,?,?,?,?,?,?, ?,?,? ) }
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.cfg.HbmBinder] Named SQL query: Info_Users.user_delete -> { call info_users_spd ( ?,?, ?,?,? ) }
      2006-04-19 10:32:22,015 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPaCodeActionSignaturesTable.hbm.xml
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:22,015 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:22,031 INFO [org.hibernate.cfg.HbmBinder] Mapping class: code_wf_action_signatures -> code_wf_action_signatures
      2006-04-19 10:32:22,031 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: id -> action_type_id
      2006-04-19 10:32:22,031 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: description -> description
      2006-04-19 10:32:22,031 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPaCodeActionStatusTable.hbm.xml
      2006-04-19 10:32:22,031 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:22,031 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:22,046 INFO [org.hibernate.cfg.HbmBinder] Mapping class: code_wf_action_status -> code_wf_action_status
      2006-04-19 10:32:22,046 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: id -> action_status_id
      2006-04-19 10:32:22,046 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: description -> description
      2006-04-19 10:32:22,046 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: next_status -> next_status
      2006-04-19 10:32:22,046 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPaCodeActionTypeTable.hbm.xml
      2006-04-19 10:32:22,046 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:22,046 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:22,062 INFO [org.hibernate.cfg.HbmBinder] Mapping class: code_wf_action_type -> code_wf_action_type
      2006-04-19 10:32:22,062 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: id -> action_type_id
      2006-04-19 10:32:22,062 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: description -> description
      2006-04-19 10:32:22,062 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPaEmployeeTable.hbm.xml
      2006-04-19 10:32:22,062 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:22,062 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:22,078 INFO [org.hibernate.cfg.HbmBinder] Mapping class: info_wf_pa_employee -> info_wf_pa_employee
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: action_id -> action_id
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: emplid -> emplid
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: employment_date -> employment_date
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: last_eval_date -> last_eval_date
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: last_promotion_date -> last_promotion_date
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: last_work_date -> last_work_date
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: lwop_start_date -> lwop_start_date
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: lwop_end_date -> lwop_end_date
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: mail_code -> mail_code
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: name_first -> name_first
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: name_last -> name_last
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: name_preferred -> name_preferred
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: phone_work -> phone_work
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: ssn -> ssn
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: termination_date -> termination_date
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: fk_employee_to_action -> action_id
      2006-04-19 10:32:22,078 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPaPositionTable.hbm.xml
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:22,078 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:22,109 INFO [org.hibernate.cfg.HbmBinder] Mapping class: info_wf_pa_position -> info_wf_pa_position
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: action_id -> action_id
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_business_unit -> to_business_unit
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_class_number -> to_class_number
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_class_title -> to_class_title
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_eeo_function -> to_eeo_function
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_flsa_number -> to_flsa_number
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_is_manager -> to_is_manager
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_is_supervisor -> to_is_supervisor
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_office_cube_available -> to_office_cube_available
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_org_code -> to_org_code
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_pay_group -> to_pay_group
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_position_number -> to_position_number
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_primary_pca -> to_primary_pca
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_salary_annually -> to_salary_annually
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_salary_monthly -> to_salary_monthly
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_secondary_pca -> to_secondary_pca
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: to_weekly_hours -> to_weekly_hours
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_business_unit -> from_business_unit
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_class_number -> from_class_number
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_class_title -> from_class_title
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_eeo_function -> from_eeo_function
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_flsa_number -> from_flsa_number
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_is_manager -> from_is_manager
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_is_supervisor -> from_is_supervisor
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_office_cube_available -> from_office_cube_available
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_org_code -> from_org_code
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_pay_group -> from_pay_group
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_position_number -> from_position_number
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_primary_pca -> from_primary_pca
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_salary_annually -> from_salary_annually
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_salary_monthly -> from_salary_monthly
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_secondary_pca -> from_secondary_pca
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: from_weekly_hours -> from_weekly_hours
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: fk_position_to_action -> action_id
      2006-04-19 10:32:22,109 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPaSignaturesTable.hbm.xml
      2006-04-19 10:32:22,109 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:22,125 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:22,125 INFO [org.hibernate.cfg.HbmBinder] Mapping class: info_wf_pa_signatures -> info_wf_pa_signatures
      2006-04-19 10:32:22,125 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: action_id -> action_id
      2006-04-19 10:32:22,125 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: signature_id -> signature_id
      2006-04-19 10:32:22,125 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: id -> action_id, signature_id
      2006-04-19 10:32:22,125 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: approval_state -> approval_state
      2006-04-19 10:32:22,140 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: emplid -> emplid
      2006-04-19 10:32:22,140 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: date_signature -> date_signature
      2006-04-19 10:32:22,140 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: comments -> comments
      2006-04-19 10:32:22,140 INFO [org.hibernate.cfg.Configuration] Found mapping document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPersonnelActionTable.hbm.xml
      2006-04-19 10:32:22,218 DEBUG [org.hibernate.util.DTDEntityResolver] trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
      2006-04-19 10:32:22,218 DEBUG [org.hibernate.util.DTDEntityResolver] found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
      2006-04-19 10:32:22,234 INFO [org.hibernate.cfg.HbmBinder] Mapping class: info_wf_personnel_action -> info_wf_personnel_action
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: action_id -> action_id
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: action_type_id -> action_type_id
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: creation_date -> creation_date
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: effective_date -> effective_date
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: hr_emplid -> hr_emplid
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: hr_name_first -> hr_name_first
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: hr_name_last -> hr_name_last
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: hr_phone_work -> hr_phone_work
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: portal_wf_id -> portal_wf_id
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: mgr_emplid -> mgr_emplid
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: mgr_name_first -> mgr_name_first
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: mgr_name_last -> mgr_name_last
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: mgr_phone_work -> mgr_phone_work
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.Configuration] Preparing to build session factory with filters : {}
      2006-04-19 10:32:22,234 INFO [org.hibernate.cfg.Configuration] processing extends queue
      2006-04-19 10:32:22,234 INFO [org.hibernate.cfg.Configuration] processing collection mappings
      2006-04-19 10:32:22,234 INFO [org.hibernate.cfg.Configuration] processing association property references
      2006-04-19 10:32:22,234 INFO [org.hibernate.cfg.Configuration] processing foreign key constraints
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.Configuration] resolving reference to class: info_wf_personnel_action
      2006-04-19 10:32:22,234 DEBUG [org.hibernate.cfg.Configuration] resolving reference to class: info_wf_personnel_action
      2006-04-19 10:32:22,234 ERROR [org.jboss.hibernate.jmx.Hibernate] Starting failed jboss.har:service=HibernateWorking
      org.hibernate.MappingException: component class not found: HbmWfPaSignaturesTable
      at org.hibernate.mapping.Component.getComponentClass(Component.java:105)
      at org.hibernate.tuple.PojoComponentTuplizer.buildGetter(PojoComponentTuplizer.java:140)
      at org.hibernate.tuple.AbstractComponentTuplizer.(AbstractComponentTuplizer.java:79)
      at org.hibernate.tuple.PojoComponentTuplizer.(PojoComponentTuplizer.java:33)
      at org.hibernate.tuple.TuplizerLookup.create(TuplizerLookup.java:126)
      at org.hibernate.mapping.Component.getType(Component.java:160)
      at org.hibernate.mapping.SimpleValue.isValid(SimpleValue.java:253)
      at org.hibernate.mapping.RootClass.validate(RootClass.java:193)
      at org.hibernate.cfg.Configuration.validate(Configuration.java:983)
      at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1147)
      at org.jboss.hibernate.jmx.Hibernate.buildSessionFactory(Hibernate.java:611)
      at org.jboss.hibernate.jmx.Hibernate.startService(Hibernate.java:578)
      at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:272)
      at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:222)
      at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:891)
      at $Proxy0.start(Unknown Source)
      at org.jboss.system.ServiceController.start(ServiceController.java:416)
      at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
      at $Proxy4.start(Unknown Source)
      at org.jboss.deployment.SARDeployer.start(SARDeployer.java:261)
      at org.jboss.deployment.MainDeployer.start(MainDeployer.java:964)
      at org.jboss.deployment.MainDeployer.start(MainDeployer.java:956)
      at org.jboss.deployment.MainDeployer.start(MainDeployer.java:956)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:775)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
      at sun.reflect.GeneratedMethodAccessor48.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:131)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
      at $Proxy8.deploy(Unknown Source)
      at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:305)
      at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:481)
      at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:204)
      at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:277)
      at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:272)
      at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:222)
      at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:891)
      at $Proxy0.start(Unknown Source)
      at org.jboss.system.ServiceController.start(ServiceController.java:416)
      at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
      at $Proxy4.start(Unknown Source)
      at org.jboss.deployment.SARDeployer.start(SARDeployer.java:261)
      at org.jboss.deployment.MainDeployer.start(MainDeployer.java:964)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:775)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:722)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:131)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
      at $Proxy5.deploy(Unknown Source)
      at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:413)
      at org.jboss.system.server.ServerImpl.start(ServerImpl.java:310)
      at org.jboss.Main.boot(Main.java:162)
      at org.jboss.Main$1.run(Main.java:423)
      at java.lang.Thread.run(Thread.java:534)
      Caused by: java.lang.ClassNotFoundException: No ClassLoaders found for: HbmWfPaSignaturesTable
      at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:292)
      at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:464)
      at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:374)
      at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
      at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
      at java.lang.Class.forName0(Native Method)
      at java.lang.Class.forName(Class.java:141)
      at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:108)
      at org.hibernate.mapping.Component.getComponentClass(Component.java:102)
      ... 104 more
      2006-04-19 10:32:22,265 WARN [org.jboss.system.ServiceController] Problem starting service jboss.har:service=HibernateWorking
      org.hibernate.MappingException: component class not found: HbmWfPaSignaturesTable
      at org.hibernate.mapping.Component.getComponentClass(Component.java:105)
      at org.hibernate.tuple.PojoComponentTuplizer.buildGetter(PojoComponentTuplizer.java:140)
      at org.hibernate.tuple.AbstractComponentTuplizer.(AbstractComponentTuplizer.java:79)
      at org.hibernate.tuple.PojoComponentTuplizer.(PojoComponentTuplizer.java:33)
      at org.hibernate.tuple.TuplizerLookup.create(TuplizerLookup.java:126)
      at org.hibernate.mapping.Component.getType(Component.java:160)
      at org.hibernate.mapping.SimpleValue.isValid(SimpleValue.java:253)
      at org.hibernate.mapping.RootClass.validate(RootClass.java:193)
      at org.hibernate.cfg.Configuration.validate(Configuration.java:983)
      at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1147)
      at org.jboss.hibernate.jmx.Hibernate.buildSessionFactory(Hibernate.java:611)
      at org.jboss.hibernate.jmx.Hibernate.startService(Hibernate.java:578)
      at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:272)
      at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:222)
      at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:891)
      at $Proxy0.start(Unknown Source)
      at org.jboss.system.ServiceController.start(ServiceController.java:416)
      at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
      at $Proxy4.start(Unknown Source)
      at org.jboss.deployment.SARDeployer.start(SARDeployer.java:261)
      at org.jboss.deployment.MainDeployer.start(MainDeployer.java:964)
      at org.jboss.deployment.MainDeployer.start(MainDeployer.java:956)
      at org.jboss.deployment.MainDeployer.start(MainDeployer.java:956)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:775)
      at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
      at sun.reflect.GeneratedMethodAccessor48.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:324)
      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
      at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:122)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:131)
      at org.jboss.mx.server.Invocation.invoke(Invocation.java:74)
      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
      at org.jbos

        • 1. Re: Hibernate w/JBoss, multiple hbm class paths and datasour
          arnieaustin

          Sorry, didn't get the service file in there:
          <?xml version="1.0" encoding="UTF-8"?>

          -->
          <!-- datasource settings -->
          java:/applicationSecurity
          org.hibernate.dialect.SybaseDialect
          <!-- bind the hibernate service to jndi -->
          java:/hibernate/txoagPortalSFAppSec
          org.hibernate.cache.HashtableCacheProvider
          <!-- logging -->
          true

          -->
          <!-- datasource settings -->
          java:/working
          org.hibernate.dialect.SybaseDialect
          <!-- bind the hibernate service to jndi -->
          java:/hibernate/txoagPortalSFworking
          org.hibernate.cache.HashtableCacheProvider
          <!-- logging -->
          true


          • 2. Re: Hibernate w/JBoss, multiple hbm class paths and datasour
            arnieaustin


            -->
            <!-- datasource settings -->
            java:/applicationSecurity
            org.hibernate.dialect.SybaseDialect
            <!-- bind the hibernate service to jndi -->
            java:/hibernate/txoagPortalSFAppSec
            org.hibernate.cache.HashtableCacheProvider
            <!-- logging -->
            true

            -->
            <!-- datasource settings -->
            java:/working
            org.hibernate.dialect.SybaseDialect
            <!-- bind the hibernate service to jndi -->
            java:/hibernate/txoagPortalSFworking
            org.hibernate.cache.HashtableCacheProvider
            <!-- logging -->
            true


            • 3. Re: Hibernate w/JBoss, multiple hbm class paths and datasour
              arnieaustin

              -->
              <!-- datasource settings -->
              java:/applicationSecurity
              org.hibernate.dialect.SybaseDialect
              <!-- bind the hibernate service to jndi -->
              java:/hibernate/txoagPortalSFAppSec
              org.hibernate.cache.HashtableCacheProvider
              <!-- logging -->
              true

              -->
              <!-- datasource settings -->
              java:/working
              org.hibernate.dialect.SybaseDialect
              <!-- bind the hibernate service to jndi -->
              java:/hibernate/txoagPortalSFworking
              org.hibernate.cache.HashtableCacheProvider
              <!-- logging -->
              true

              • 4. Re: Hibernate w/JBoss, multiple hbm class paths and datasour
                arnieaustin

                great, this site doesn't support XML in messages. Here's a stripped copy of the file.

                mbean code="org.jboss.hibernate.jmx.Hibernate" name="jboss.har:service=HibernateAppSec" --
                !-- datasource settings --
                attribute name="DatasourceName"java:/applicationSecurity/attribute
                attribute name="Dialect"org.hibernate.dialect.SybaseDialect/attribute
                !-- bind the hibernate service to jndi --
                attribute name="SessionFactoryName"java:/hibernate/txoagPortalSFAppSec/attribute
                attribute name="CacheProviderClass"org.hibernate.cache.HashtableCacheProvider/attribute
                !-- logging --
                attribute name="ShowSqlEnabled"true/attribute
                /mbean
                mbean code="org.jboss.hibernate.jmx.Hibernate" name="jboss.har:service=HibernateWorking" --
                !-- datasource settings --
                attribute name="DatasourceName"java:/working/attribute
                attribute name="Dialect"org.hibernate.dialect.SybaseDialect/attribute
                !-- bind the hibernate service to jndi --
                attribute name="SessionFactoryName"java:/hibernate/txoagPortalSFworking/attribute
                attribute name="CacheProviderClass"org.hibernate.cache.HashtableCacheProvider/attribute
                !-- logging --
                attribute name="ShowSqlEnabled"true/attribute
                /mbean

                • 5. Re: Hibernate w/JBoss, multiple hbm class paths and datasour
                  arnieaustin

                  and yes, the various Hbm*.class files are in the same path as the Hbm*.xml files.