I am trying to get Hiberate configured for use with our portal product, Novell 
exteNd. I am getting errors regarding unmapped classes which I do not 
understand (since the class it is complaining about is read just above it) and 
now I'm concerned about Hibernate's ability to fit into the environment. The 
hibernate-service.xml file (included below) has two MBean instances since I am 
trying to setup connections to two different databases. Since there isn't any 
documentation on how to do this, I'm guessing. You'll note the MapResources 
attribute that is commented out. This attribute is shown in the Hibernate In 
Action Book (page 56) but Hibernate complains of an unknown attribute at 
startup. Lastly, as the log shows, JBoss seems to try and start the Hibernate 
deployment twice (the Hibernate messages start over and occur twice in the file 
(truncated). Any clarification would be helpful. 
=====================
hibernate-service.xml
---------------------
(?xml version="1.0" encoding="UTF-8"?)
(server)
    (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)
        (!-- (attribute name="MapResources")
                us/tx/state/oag/AppSecMgmt/HbmInfoUsersTable.hbm.xml
        (/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)
        (!-- (attribute name="MapResources")
                
us/tx/state/oag/WfPersonnelAction/HbmWfPaCodeActionSignaturesTable.hbm.xml
                , 
us/tx/state/oag/WfPersonnelAction/HbmWfPaCodeActionStatusTable.hbm.xml
                , 
us/tx/state/oag/WfPersonnelAction/HbmWfPaCodeActionTypeTable.hbm.xml
                , 
us/tx/state/oag/WfPersonnelAction/HbmWfPaPersonnelActionTable.hbm.xml
                , us/tx/state/oag/WfPersonnelAction/HbmWfPaEmployeeTable.hbm.xml
                , us/tx/state/oag/WfPersonnelAction/HbmWfPaPositionTable.hbm.xml
                , 
us/tx/state/oag/WfPersonnelAction/HbmWfPaSegnaturesTable.hbm.xml
        (/attribute) --)
    (/mbean)
(/server) 
=====================
various hbm.xml files
---------------------
(?xml version="1.0" encoding="UTF-8"?)
(!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd";)

(hibernate-mapping default-cascade="none" default-access="property" 
auto-import="true"
        package="us.tx.state.oag.WfPersonnelAction")

    (class name="HbmWfPaCodeActionSignaturesTable" 
        table="code_wf_action_signatures" 
entity-name="code_wf_action_signatures")
        
                (id name="id" type="big_decimal" column="action_type_id" 
unsaved-value="null")
                        (generator class="hilo")
                                (param name="table")sys_next_ids(/param)
                                (param 
name="column")next_action_signature_id(/param)
                        (/generator)
                (/id)
                
                (property name="description" type="string" update="true" 
insert="true"/)
                
    (/class)
    
(/hibernate-mapping)
(?xml version="1.0" encoding="UTF-8"?)
(!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd";)

(hibernate-mapping default-cascade="none" default-access="property" 
auto-import="true"
        package="us.tx.state.oag.WfPersonnelAction")

    (class name="HbmWfPaCodeActionStatusTable" 
        table="code_wf_action_status" entity-name="code_wf_action_status")
        
                (id name="id" type="big_decimal" column="action_status_id" 
unsaved-value="null")
                        (generator class="hilo")
                                (param name="table")sys_next_ids(/param)
                                (param 
name="column")next_action_status_id(/param)
                        (/generator)
                (/id)
                
                (property name="description" type="string" update="true" 
insert="true"/)
                (property name="next_status" type="big_decimal" update="true" 
insert="true"/)
                
    (/class)
    
(/hibernate-mapping)
(?xml version="1.0" encoding="UTF-8"?)
(!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd";)

(hibernate-mapping default-cascade="none" default-access="property" 
auto-import="true"
        package="us.tx.state.oag.WfPersonnelAction")

    (class name="HbmWfPaCodeActionTypeTable" 
        table="code_wf_action_type" entity-name="code_wf_action_type")
        
                (id name="id" type="big_decimal" column="action_type_id" 
unsaved-value="null")
                        (generator class="hilo")
                                (param name="table")sys_next_ids(/param)
                                (param name="column")next_action_type_id(/param)
                        (/generator)
                (/id)
                
                (property name="description" type="string" update="true" 
insert="true"/)
                
    (/class)
    
(/hibernate-mapping)
(?xml version="1.0" encoding="UTF-8"?)
(!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd";)

(hibernate-mapping default-cascade="none" default-access="property" 
auto-import="true"
        package="us.tx.state.oag.WfPersonnelAction")

    (class name="HbmWfPaEmployeeTable" 
        table="info_wf_pa_employee" entity-name="info_wf_pa_employee")
        
                (id name="action_id"
                        type="big_decimal" column="action_id" 
unsaved-value="null")
                (/id)
                
                (property name="emplid" type="string" update="true" 
insert="true"/)
                (property name="employment_date" type="timestamp" update="true" 
insert="true"/)
                (property name="last_eval_date" type="timestamp" update="true" 
insert="true"/)
                (property name="last_promotion_date" type="timestamp" 
update="true" insert="true"/)
                (property name="last_work_date" type="timestamp" update="true" 
insert="true"/)
                (property name="lwop_start_date" type="timestamp" update="true" 
insert="true"/)
                (property name="lwop_end_date" type="timestamp" update="true" 
insert="true"/)
                (property name="mail_code" type="string" update="true" 
insert="true"/)
                (property name="name_first" type="string" update="true" 
insert="true"/)
                (property name="name_last" type="string" update="true" 
insert="true"/)
                (property name="name_preferred" type="string" update="true" 
insert="true"/)
                (property name="phone_work" type="string" update="true" 
insert="true"/)
                (property name="ssn" type="string" update="true" insert="true"/)
                (property name="termination_date" type="timestamp" 
update="true" insert="true"/)
                
                (many-to-one name="fk_employee_to_action"
                        column="action_id"
                        cascade="true"
                        entity-name="info_wf_personnel_action"
                        not-null="true"/)

    (/class)
    
(/hibernate-mapping)
(?xml version="1.0" encoding="UTF-8"?)
(!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd";)

(hibernate-mapping default-cascade="none" default-access="property" 
auto-import="true"
        package="us.tx.state.oag.WfPersonnelAction")

    (class name="HbmWfPaPositionTable" 
        table="info_wf_pa_position" entity-name="info_wf_pa_position")
        
                (id name="action_id"
                        type="big_decimal" column="action_id" 
unsaved-value="null")
                (/id)
                
                (property name="to_business_unit" type="string" update="true" 
insert="true"/)
                (property name="to_class_number" type="string" update="true" 
insert="true"/)
                (property name="to_class_title" type="string" update="true" 
insert="true"/)
                (property name="to_eeo_function" type="string" update="true" 
insert="true"/)
                (property name="to_flsa_number" type="string" update="true" 
insert="true"/)
                (property name="to_is_manager" type="int" update="true" 
insert="true"/)
                (property name="to_is_supervisor" type="int" update="true" 
insert="true"/)
                (property name="to_office_cube_available" type="string" 
update="true" insert="true"/)
                (property name="to_org_code" type="string" update="true" 
insert="true"/)
                (property name="to_pay_group" type="string" update="true" 
insert="true"/)
                (property name="to_position_number" type="string" update="true" 
insert="true"/)
                (property name="to_primary_pca" type="string" update="true" 
insert="true"/)
                (property name="to_salary_annually" type="big_decimal" 
update="true" insert="true"/)
                (property name="to_salary_monthly" type="big_decimal" 
update="true" insert="true"/)
                (property name="to_secondary_pca" type="string" update="true" 
insert="true"/)
                (property name="to_weekly_hours" type="big_decimal" 
update="true" insert="true"/)
                
                (property name="from_business_unit" type="string" update="true" 
insert="true"/)
                (property name="from_class_number" type="string" update="true" 
insert="true"/)
                (property name="from_class_title" type="string" update="true" 
insert="true"/)
                (property name="from_eeo_function" type="string" update="true" 
insert="true"/)
                (property name="from_flsa_number" type="string" update="true" 
insert="true"/)
                (property name="from_is_manager" type="int" update="true" 
insert="true"/)
                (property name="from_is_supervisor" type="int" update="true" 
insert="true"/)
                (property name="from_office_cube_available" type="string" 
update="true" insert="true"/)
                (property name="from_org_code" type="string" update="true" 
insert="true"/)
                (property name="from_pay_group" type="string" update="true" 
insert="true"/)
                (property name="from_position_number" type="string" 
update="true" insert="true"/)
                (property name="from_primary_pca" type="string" update="true" 
insert="true"/)
                (property name="from_salary_annually" type="big_decimal" 
update="true" insert="true"/)
                (property name="from_salary_monthly" type="big_decimal" 
update="true" insert="true"/)
                (property name="from_secondary_pca" type="string" update="true" 
insert="true"/)
                (property name="from_weekly_hours" type="big_decimal" 
update="true" insert="true"/)

                (many-to-one name="fk_position_to_action"
                        column="action_id" 
                        cascade="true"
                        entity-name="info_wf_personnel_action"
                        not-null="true"/)

    (/class)
    
(/hibernate-mapping)
(?xml version="1.0" encoding="UTF-8"?)
(!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd";)

(hibernate-mapping default-cascade="none" default-access="property" 
auto-import="true"
        package="us.tx.state.oag.WfPersonnelAction")

    (class name="HbmWfPaSignaturesTable" 
        table="info_wf_pa_signatures" entity-name="info_wf_pa_signatures")
        
                (composite-id name="id" class="HbmWfPaSignaturesTable")
                        (key-property name="action_id" type="big_decimal"/)
                        (key-property name="signature_id" type="big_decimal"/)
                (/composite-id)
                
                (property name="approval_state" type="string" update="true" 
insert="true"/)
                (property name="emplid" type="string" update="true" 
insert="true"/)
                (property name="date_signature" type="timestamp" update="true" 
insert="true"/)
                (property name="comments" type="string" update="true" 
insert="true"/)
                
                (many-to-one name="hbmWfPersonnelActionTable"
                class="HbmWfPersonnelActionTable"
                        column="action_id" not-null="true"/)
                
    (/class)
    
(/hibernate-mapping)
(?xml version="1.0" encoding="UTF-8"?)
(!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd";)

(hibernate-mapping default-cascade="none" default-access="property" 
auto-import="true"
        package="us.tx.state.oag.WfPersonnelAction")

    (class name="HbmWfPersonnelActionTable" 
        table="info_wf_personnel_action" entity-name="info_wf_personnel_action")
        
                (id name="action_id" type="big_decimal" column="action_id" 
unsaved-value="null")
                        (generator class="hilo")
                                (param name="table")sys_next_ids(/param)
                                (param name="column")next_action_id(/param)
                        (/generator)
                (/id)
                
        (property name="action_type_id" type="big_decimal" update="true" 
insert="true"/)
                (property name="creation_date" type="timestamp" update="true" 
insert="true"/)
                (property name="effective_date" type="timestamp" update="true" 
insert="true"/)
                (property name="hr_emplid" type="string" update="true" 
insert="true"/)
                (property name="hr_name_first" type="string" update="true" 
insert="true"/)
                (property name="hr_name_last" type="string" update="true" 
insert="true"/)
                (property name="hr_phone_work" type="string" update="true" 
insert="true"/)
                (property name="portal_wf_id" type="string" update="true" 
insert="true"/)
                (property name="mgr_emplid" type="string" update="true" 
insert="true"/)
                (property name="mgr_name_first" type="string" update="true" 
insert="true"/)
                (property name="mgr_name_last" type="string" update="true" 
insert="true"/)
                (property name="mgr_phone_work" type="string" update="true" 
insert="true"/)
                
    (/class)
    
(/hibernate-mapping)
==========
server.log 
----------
2006-04-20 08:38:28,718 DEBUG [org.jboss.system.ServiceController] starting 
service jboss.har:service=HibernateAppSec
2006-04-20 08:38:28,718 DEBUG [org.jboss.hibernate.jmx.Hibernate] Starting 
jboss.har:service=HibernateAppSec
2006-04-20 08:38:28,718 DEBUG [org.jboss.hibernate.jmx.Hibernate] Hibernate 
MBean starting; [EMAIL PROTECTED] 
[ServiceName=jboss.har:service=HibernateAppSec, 
JNDI=java:/hibernate/txoagPortalSfAppSec]
2006-04-20 08:38:28,718 DEBUG [org.jboss.hibernate.jmx.Hibernate] Building 
SessionFactory; [EMAIL PROTECTED] 
[ServiceName=jboss.har:service=HibernateAppSec, 
JNDI=java:/hibernate/txoagPortalSfAppSec]
2006-04-20 08:38:29,046 INFO  [org.hibernate.cfg.Environment] Hibernate 3.1
2006-04-20 08:38:29,078 INFO  [org.hibernate.cfg.Environment] 
hibernate.properties not found
2006-04-20 08:38:29,078 INFO  [org.hibernate.cfg.Environment] using CGLIB 
reflection optimizer
2006-04-20 08:38:29,078 INFO  [org.hibernate.cfg.Environment] using JDK 1.4 
java.sql.Timestamp handling
2006-04-20 08:38:29,359 INFO  [org.jboss.hibernate.jmx.Hibernate] Using JDBC 
batch size : null
2006-04-20 08:38:29,375 INFO  [org.hibernate.cfg.Configuration] Searching for 
mapping documents in jar: txoagPortal.har
2006-04-20 08:38:29,375 INFO  [org.hibernate.cfg.Configuration] Found mapping 
document in jar: us/tx/state/oag/AppSecMgmt/HbmInfoUsersTable.hbm.xml
2006-04-20 08:38:29,390 DEBUG [org.hibernate.util.DTDEntityResolver] trying to 
locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath 
under org/hibernate/
2006-04-20 08:38:29,390 DEBUG [org.hibernate.util.DTDEntityResolver] found 
http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
2006-04-20 08:38:29,859 INFO  [org.hibernate.cfg.HbmBinder] Mapping class: 
info_users -> info_users
2006-04-20 08:38:29,890 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
userId -> user_id
2006-04-20 08:38:29,937 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
userCN -> user_cn
2006-04-20 08:38:29,937 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
isActive -> is_active
2006-04-20 08:38:29,937 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
isDeployed -> is_deployed
2006-04-20 08:38:29,937 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
isEmployee -> is_employee
2006-04-20 08:38:29,937 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
dateEffective -> dt_eff
2006-04-20 08:38:29,937 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
dateInactive -> dt_inactive
2006-04-20 08:38:29,937 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
employeeID -> emplid
2006-04-20 08:38:29,937 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
firstName -> first_name
2006-04-20 08:38:29,937 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
lastName -> last_name
2006-04-20 08:38:29,937 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
title -> title
2006-04-20 08:38:29,937 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
crUser -> cr_user
2006-04-20 08:38:29,937 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
crDate -> cr_date
2006-04-20 08:38:29,937 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
upUser -> up_user
2006-04-20 08:38:29,937 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
upDate -> up_date
2006-04-20 08:38:29,968 DEBUG [org.hibernate.cfg.HbmBinder] Named SQL query: 
info_users.users_find -> { call info_users_find_spr ( ?,?,?,?, ?,?,? ) }
2006-04-20 08:38:29,968 DEBUG [org.hibernate.cfg.HbmBinder] Named SQL query: 
info_users.user_read -> { call info_users_spr ( ?,?,?, ?,?,? ) }
2006-04-20 08:38:29,968 DEBUG [org.hibernate.cfg.HbmBinder] Named SQL query: 
info_users.user_add -> { call info_users_spa ( ?,?,?,?,?,?,?,?,?,?,?,?, ?,?,? ) 
}
2006-04-20 08:38:29,968 DEBUG [org.hibernate.cfg.HbmBinder] Named SQL query: 
info_users.user_update -> { call info_users_spu ( ?,?,?,?,?,?,?,?,?,?,?,?, 
?,?,? ) }
2006-04-20 08:38:29,968 DEBUG [org.hibernate.cfg.HbmBinder] Named SQL query: 
info_users.user_delete -> { call info_users_spd ( ?,?, ?,?,? ) }
2006-04-20 08:38:29,968 INFO  [org.hibernate.cfg.Configuration] Found mapping 
document in jar: 
us/tx/state/oag/WfPersonnelAction/HbmWfPaCodeActionSignaturesTable.hbm.xml
2006-04-20 08:38:29,968 DEBUG [org.hibernate.util.DTDEntityResolver] trying to 
locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath 
under org/hibernate/
2006-04-20 08:38:29,968 DEBUG [org.hibernate.util.DTDEntityResolver] found 
http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
2006-04-20 08:38:30,031 INFO  [org.hibernate.cfg.HbmBinder] Mapping class: 
code_wf_action_signatures -> code_wf_action_signatures
2006-04-20 08:38:30,031 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: id 
-> action_type_id
2006-04-20 08:38:30,031 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
description -> description
2006-04-20 08:38:30,031 INFO  [org.hibernate.cfg.Configuration] Found mapping 
document in jar: 
us/tx/state/oag/WfPersonnelAction/HbmWfPaCodeActionStatusTable.hbm.xml
2006-04-20 08:38:30,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-20 08:38:30,031 DEBUG [org.hibernate.util.DTDEntityResolver] found 
http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
2006-04-20 08:38:30,078 INFO  [org.hibernate.cfg.HbmBinder] Mapping class: 
code_wf_action_status -> code_wf_action_status
2006-04-20 08:38:30,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: id 
-> action_status_id
2006-04-20 08:38:30,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
description -> description
2006-04-20 08:38:30,078 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
next_status -> next_status
2006-04-20 08:38:30,078 INFO  [org.hibernate.cfg.Configuration] Found mapping 
document in jar: 
us/tx/state/oag/WfPersonnelAction/HbmWfPaCodeActionTypeTable.hbm.xml
2006-04-20 08:38:30,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-20 08:38:30,078 DEBUG [org.hibernate.util.DTDEntityResolver] found 
http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
2006-04-20 08:38:30,125 INFO  [org.hibernate.cfg.HbmBinder] Mapping class: 
code_wf_action_type -> code_wf_action_type
2006-04-20 08:38:30,125 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: id 
-> action_type_id
2006-04-20 08:38:30,125 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
description -> description
2006-04-20 08:38:30,125 INFO  [org.hibernate.cfg.Configuration] Found mapping 
document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPaEmployeeTable.hbm.xml
2006-04-20 08:38:30,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-20 08:38:30,140 DEBUG [org.hibernate.util.DTDEntityResolver] found 
http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
2006-04-20 08:38:30,171 INFO  [org.hibernate.cfg.HbmBinder] Mapping class: 
info_wf_pa_employee -> info_wf_pa_employee
2006-04-20 08:38:30,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
action_id -> action_id
2006-04-20 08:38:30,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
emplid -> emplid
2006-04-20 08:38:30,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
employment_date -> employment_date
2006-04-20 08:38:30,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
last_eval_date -> last_eval_date
2006-04-20 08:38:30,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
last_promotion_date -> last_promotion_date
2006-04-20 08:38:30,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
last_work_date -> last_work_date
2006-04-20 08:38:30,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
lwop_start_date -> lwop_start_date
2006-04-20 08:38:30,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
lwop_end_date -> lwop_end_date
2006-04-20 08:38:30,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
mail_code -> mail_code
2006-04-20 08:38:30,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
name_first -> name_first
2006-04-20 08:38:30,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
name_last -> name_last
2006-04-20 08:38:30,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
name_preferred -> name_preferred
2006-04-20 08:38:30,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
phone_work -> phone_work
2006-04-20 08:38:30,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
ssn -> ssn
2006-04-20 08:38:30,171 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
termination_date -> termination_date
2006-04-20 08:38:30,437 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
fk_employee_to_action -> action_id
2006-04-20 08:38:30,437 INFO  [org.hibernate.cfg.Configuration] Found mapping 
document in jar: us/tx/state/oag/WfPersonnelAction/HbmWfPaPositionTable.hbm.xml
2006-04-20 08:38:30,437 DEBUG [org.hibernate.util.DTDEntityResolver] trying to 
locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath 
under org/hibernate/
2006-04-20 08:38:30,437 DEBUG [org.hibernate.util.DTDEntityResolver] found 
http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
2006-04-20 08:38:30,515 INFO  [org.hibernate.cfg.HbmBinder] Mapping class: 
info_wf_pa_position -> info_wf_pa_position
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
action_id -> action_id
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_business_unit -> to_business_unit
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_class_number -> to_class_number
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_class_title -> to_class_title
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_eeo_function -> to_eeo_function
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_flsa_number -> to_flsa_number
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_is_manager -> to_is_manager
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_is_supervisor -> to_is_supervisor
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_office_cube_available -> to_office_cube_available
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_org_code -> to_org_code
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_pay_group -> to_pay_group
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_position_number -> to_position_number
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_primary_pca -> to_primary_pca
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_salary_annually -> to_salary_annually
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_salary_monthly -> to_salary_monthly
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_secondary_pca -> to_secondary_pca
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
to_weekly_hours -> to_weekly_hours
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_business_unit -> from_business_unit
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_class_number -> from_class_number
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_class_title -> from_class_title
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_eeo_function -> from_eeo_function
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_flsa_number -> from_flsa_number
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_is_manager -> from_is_manager
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_is_supervisor -> from_is_supervisor
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_office_cube_available -> from_office_cube_available
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_org_code -> from_org_code
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_pay_group -> from_pay_group
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_position_number -> from_position_number
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_primary_pca -> from_primary_pca
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_salary_annually -> from_salary_annually
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_salary_monthly -> from_salary_monthly
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_secondary_pca -> from_secondary_pca
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
from_weekly_hours -> from_weekly_hours
2006-04-20 08:38:30,515 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
fk_position_to_action -> action_id
2006-04-20 08:38:30,515 INFO  [org.hibernate.cfg.Configuration] Found mapping 
document in jar: 
us/tx/state/oag/WfPersonnelAction/HbmWfPaSignaturesTable.hbm.xml
2006-04-20 08:38:30,515 DEBUG [org.hibernate.util.DTDEntityResolver] trying to 
locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath 
under org/hibernate/
2006-04-20 08:38:30,515 DEBUG [org.hibernate.util.DTDEntityResolver] found 
http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
2006-04-20 08:38:30,546 INFO  [org.hibernate.cfg.HbmBinder] Mapping class: 
info_wf_pa_signatures -> info_wf_pa_signatures
2006-04-20 08:38:30,546 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
action_id -> action_id
2006-04-20 08:38:30,546 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
signature_id -> signature_id
2006-04-20 08:38:30,546 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: id 
-> action_id, signature_id
2006-04-20 08:38:30,546 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
approval_state -> approval_state
2006-04-20 08:38:30,546 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
emplid -> emplid
2006-04-20 08:38:30,546 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
date_signature -> date_signature
2006-04-20 08:38:30,546 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
comments -> comments
2006-04-20 08:38:30,546 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
hbmWfPersonnelActionTable -> action_id
2006-04-20 08:38:30,546 INFO  [org.hibernate.cfg.Configuration] Found mapping 
document in jar: 
us/tx/state/oag/WfPersonnelAction/HbmWfPersonnelActionTable.hbm.xml
2006-04-20 08:38:30,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-20 08:38:30,546 DEBUG [org.hibernate.util.DTDEntityResolver] found 
http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
2006-04-20 08:38:30,593 INFO  [org.hibernate.cfg.HbmBinder] Mapping class: 
info_wf_personnel_action -> info_wf_personnel_action
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
action_id -> action_id
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
action_type_id -> action_type_id
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
creation_date -> creation_date
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
effective_date -> effective_date
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
hr_emplid -> hr_emplid
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
hr_name_first -> hr_name_first
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
hr_name_last -> hr_name_last
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
hr_phone_work -> hr_phone_work
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
portal_wf_id -> portal_wf_id
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
mgr_emplid -> mgr_emplid
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
mgr_name_first -> mgr_name_first
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
mgr_name_last -> mgr_name_last
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
mgr_phone_work -> mgr_phone_work
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.Configuration] Preparing to 
build session factory with filters : {}
2006-04-20 08:38:30,593 INFO  [org.hibernate.cfg.Configuration] processing 
extends queue
2006-04-20 08:38:30,593 INFO  [org.hibernate.cfg.Configuration] processing 
collection mappings
2006-04-20 08:38:30,593 INFO  [org.hibernate.cfg.Configuration] processing 
association property references
2006-04-20 08:38:30,593 INFO  [org.hibernate.cfg.Configuration] processing 
foreign key constraints
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.Configuration] resolving 
reference to class: info_wf_personnel_action
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.Configuration] resolving 
reference to class: info_wf_personnel_action
2006-04-20 08:38:30,593 DEBUG [org.hibernate.cfg.Configuration] resolving 
reference to class: us.tx.state.oag.WfPersonnelAction.HbmWfPersonnelActionTable
2006-04-20 08:38:30,593 ERROR [org.jboss.hibernate.jmx.Hibernate] Starting 
failed jboss.har:service=HibernateAppSec
org.hibernate.MappingException: An association from the table 
info_wf_pa_signatures refers to an unmapped class: 
us.tx.state.oag.WfPersonnelAction.HbmWfPersonnelActionTable
        at 
org.hibernate.cfg.Configuration.secondPassCompileForeignKeys(Configuration.java:1112)
        at 
org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1062)
        at 
org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1146)
        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)
2006-04-20 08:38:30,609 WARN  [org.jboss.system.ServiceController] Problem 
starting service jboss.har:service=HibernateAppSec
org.hibernate.MappingException: An association from the table 
info_wf_pa_signatures refers to an unmapped class: 
us.tx.state.oag.WfPersonnelAction.HbmWfPersonnelActionTable
        at 
org.hibernate.cfg.Configuration.secondPassCompileForeignKeys(Configuration.java:1112)
        at 
org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1062)
        at 
org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1146)
        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)
2006-04-20 08:38:30,609 DEBUG [org.jboss.system.ServiceController] starting 
service jboss.har:service=HibernateWorking
2006-04-20 08:38:30,609 DEBUG [org.jboss.hibernate.jmx.Hibernate] Starting 
jboss.har:service=HibernateWorking
2006-04-20 08:38:30,609 DEBUG [org.jboss.hibernate.jmx.Hibernate] Hibernate 
MBean starting; [EMAIL PROTECTED] 
[ServiceName=jboss.har:service=HibernateWorking, 
JNDI=java:/hibernate/txoagPortalSfWorking]
2006-04-20 08:38:30,609 DEBUG [org.jboss.hibernate.jmx.Hibernate] Building 
SessionFactory; [EMAIL PROTECTED] 
[ServiceName=jboss.har:service=HibernateWorking, 
JNDI=java:/hibernate/txoagPortalSfWorking]
2006-04-20 08:38:30,609 INFO  [org.jboss.hibernate.jmx.Hibernate] Using JDBC 
batch size : null
2006-04-20 08:38:30,609 INFO  [org.hibernate.cfg.Configuration] Searching for 
mapping documents in jar: txoagPortal.har
2006-04-20 08:38:30,609 INFO  [org.hibernate.cfg.Configuration] Found mapping 
document in jar: us/tx/state/oag/AppSecMgmt/HbmInfoUsersTable.hbm.xml
2006-04-20 08:38:30,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-20 08:38:30,625 DEBUG [org.hibernate.util.DTDEntityResolver] found 
http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
2006-04-20 08:38:30,640 INFO  [org.hibernate.cfg.HbmBinder] Mapping class: 
info_users -> info_users
2006-04-20 08:38:30,640 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
userId -> user_id
2006-04-20 08:38:30,640 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
userCN -> user_cn
2006-04-20 08:38:30,640 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
isActive -> is_active
2006-04-20 08:38:30,640 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
isDeployed -> is_deployed
2006-04-20 08:38:30,640 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
isEmployee -> is_employee
2006-04-20 08:38:30,640 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
dateEffective -> dt_eff
2006-04-20 08:38:30,640 DEBUG [org.hibernate.cfg.HbmBinder] Mapped property: 
dateInactive -> dt_inactive


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3938432#3938432

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3938432


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to