Symantec IGA

  • 1.  How to test or update your JDBC drivers on the vApp

    Posted Jul 27, 2018 04:51 PM

    Team,

     

    Here is one process you may find of value.

     

    2018-08-29  - Update:  CAVEAT NOTE:   Please validate the database jar driver selected is supported before using.

    Use method for non-production system; as CA engineering/support now are offering an updated patch process for preapproved database drivers.  

     

     

    The CA Identity Suite virtual appliance has a pre-configured location to place new datasource information or jar files; that will be in the path of the component.   For CA Identity Manager vApp, there are two (2) paths that may be used for jar files:

     

    /opt/CA/VirtualAppliance/custom/IdentityManager/iam_im.ear_user_console.war_WEB-INF_lib

        - Typically used for custom Endpoint CX Jar files.

     

    /opt/CA/VirtualAppliance/custom/IdentityManager/dataSources

        -  Dedicated for dataSources

     

    We will use the dataSource folder.

     

     

     

    Steps used:

     

     

    Step 1.   Create Wildfly/jboss admin id (local account using sudo process)

    https://communities.ca.com/thread/241794923-useful-wildflyjboss-cli-monitoring-scripts
    NOTE:  IM must be running to make these changes.

    sudo /opt/CA/wildfly-idm/bin/add-user.sh

     

     

    Step 2.   Download latest jdbc (or next to latest) & copy to this path

    /opt/CA/VirtualAppliance/custom/IdentityManager/dataSources

    • As world readable (chmod 444) minimal  or (chmod 555)
    • These files will be “owned” by config userID, but access by the “wildfly” id.

     

     

    Step 3.   Use the jboss-cli.sh  process to update the Wildfly configuration file standalone-full-ha.xml

    • Login with the newly created admin id (step 1)
    • Use either command line prompt /opt/CA/wildfly-idm/bin/jboss-cli.sh --connect --user=jboss-admin --password=Password01! 
      • or –gui  /opt/CA/wildfly-idm/bin/jboss-cli.sh --connect --user=jboss-admin --password=Password01!  --gui
    • Create a backup copy (snapshot)   /opt/CA/wildfly-idm/bin/jboss-cli.sh --connect --user=jboss-admin --password=Password01!  --command=:take-snapshot

     

     

    Step 4.   Create the new jdbc driver configurations (do NOT replace current version; to allow rollback if needed)

    Examples:   (ensure jdbc-driver name matches 100% with driver-name)

     

    /subsystem=datasources/jdbc-driver=mssql-jdbc-6.4.0.jre8:add(driver-class-name=com.microsoft.sqlserver.jdbc.SQLServerDriver, driver-name=mssql-jdbc-6.4.0.jre8, driver-module-name=com.ca.iam.jdbc.microsoft)

    /subsystem=datasources/jdbc-driver=ojdbc7:add(driver-class-name=oracle.jdbc.OracleDriver, driver-name=ojdbc7, driver-module-name=com.ca.iam.jdbc.oracle)

    /subsystem=datasources/jdbc-driver=ojdbc8:add(driver-class-name=oracle.jdbc.OracleDriver, driver-name=ojdbc8, driver-module-name=com.ca.iam.jdbc.oracle)

     

     

    Step 5:  Update all six (6) IM Datasources with the UPDATED reference to the new JDBC driver configuration.

     

    /subsystem=datasources/data-source=iam_im-imobjectstoredb-ds/:write-attribute(name=driver-name,value=ojdbc8)

    /subsystem=datasources/data-source=iam_im-imtaskpersistencedb-ds/:write-attribute(name=driver-name,value=ojdbc8)

    /subsystem=datasources/data-source=iam_im-imarchivedb-ds/:write-attribute(name=driver-name,value=ojdbc8)

    /subsystem=datasources/data-source=iam_im-imauditdb-ds/:write-attribute(name=driver-name,value=ojdbc8)

    /subsystem=datasources/data-source=iam_im-imreportsnapshotdb-ds/:write-attribute(name=driver-name,value=ojdbc8)

    /subsystem=datasources/data-source=iam_im-imworkflowdb-ds/:write-attribute(name=driver-name,value=ojdbc8)

     

    Step 6:   Stop and Start IM solution to validate new jdbc jar are in use.   [im_stop  &  im_start]

    • Monitor the server.log file   (tail_im_log)   or use the below grep commands:

    grep -C 5  "ojdbc" /opt/CA/wildfly-idm/standalone/log/server.log

     

     

    grep "com.microsoft.sqlserver"  /opt/CA/wildfly-idm/standalone/log/server.log

     

     

    Step 7:  Login to the IM UI and validate no issues.

     

     

    grep -e 'Step' -e 'CA IAM'  -e 'ERROR' /opt/CA/wildfly-idm/standalone/log/server.log

     

     

    Cheers,

     

    Alan.

     

     

     

     

     

     

    Text/Searchable example of:  grep -C 5 "ojdbc" /opt/CA/wildfly-idm/standalone/log/server.log

     

    2018-07-27 15:19:20,196 INFO [org.jboss.as.mail.extension] (MSC service thread 1-1) JBAS015400: Bound mail session [java:/Mail]
    2018-07-27 15:19:20,324 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 32) JBAS010404: Deploying non-JDBC-compliant driver class com.mysql.jdbc.Driver (version 5.1)
    2018-07-27 15:19:20,340 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-8) JBAS010417: Started Driver service with driver-name = mysql
    2018-07-27 15:19:20,882 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 32) JBAS010403: Deploying JDBC-compliant driver class oracle.jdbc.OracleDriver (version 11.1)
    2018-07-27 15:19:20,913 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 57) JBAS017527: Creating file handler for path /opt/CA/wildfly-idm/welcome-content
    2018-07-27 15:19:20,947 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-3) JBAS010417: Started Driver service with driver-name = ojdbc
    2018-07-27 15:19:21,032 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 32) JBAS010403: Deploying JDBC-compliant driver class com.microsoft.sqlserver.jdbc.SQLServerDriver (version 4.0)
    2018-07-27 15:19:21,034 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 32) JBAS010403: Deploying JDBC-compliant driver class com.microsoft.sqlserver.jdbc.SQLServerDriver (version 4.0)
    2018-07-27 15:19:21,035 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-5) JBAS010417: Started Driver service with driver-name = sqljdbc
    2018-07-27 15:19:21,047 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 32) JBAS010403: Deploying JDBC-compliant driver class oracle.jdbc.OracleDriver (version 11.1)
    2018-07-27 15:19:21,048 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-1) JBAS010417: Started Driver service with driver-name = mssql-jdbc-6.4.0.jre8
    2018-07-27 15:19:21,049 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-5) JBAS010417: Started Driver service with driver-name = ojdbc7
    2018-07-27 15:19:21,049 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 32) JBAS010403: Deploying JDBC-compliant driver class oracle.jdbc.OracleDriver (version 11.1)
    2018-07-27 15:19:21,050 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017525: Started server default-server.
    2018-07-27 15:19:21,068 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-3) JBAS010417: Started Driver service with driver-name = ojdbc8



  • 2.  Re: How to test or update your JDBC drivers on the vApp

    Posted Jul 30, 2018 04:08 PM

    Team,

     

    A view to "negative" use-case testing.    To confirm your data sources are using the new driver name, attempt to use an pseudo name that will cause failures.

     

     

    Example: 

     

    /subsystem=datasources/data-source=iam_im-imobjectstoredb-ds/:write-attribute(name=driver-name,value=JUNK_DRIVER_NAME_FOR_TEST)

     

     

     

     

    Errors messages captured:

    JBAS014613: Operation ("deploy") failed - address: ([("deployment" => "iam_im.ear")])

    JBAS014771: Services with missing/unavailable dependencies" => 

    JBAS014879: One or more services were unable to start due to one or more indirect dependencies not being available."

    JBAS015875: WildFly 8.2.0.Final "Tweek" started (with errors) in 76854ms - Started 3656 of 4286 services (467 services failed or missing dependencies, 280 services are lazy, passive or on-demand)

     

     

     

    Logs (if you wish to view):

     


    config@vapp0001 VAPP-14.1.0 (192.168.242.146):/opt/CA/wildfly-idm/standalone/log > /opt/CA/wildfly-idm/bin/jboss-cli.sh --connect --user=jboss-admin --password=Password01! --gui
    ^Cconfig@vapp0001 VAPP-14.1.0 (192.168.242.146):/opt/CA/wildfly-idm/standalone/log > restart_im
    Stopping WildFly (IDM): [ OK ]
    Starting WildFly (IDM): [ OK ]
    config@vapp0001 VAPP-14.1.0 (192.168.242.146):/opt/CA/wildfly-idm/standalone/log > tail_im_log
    2018-07-30 14:55:31,266 INFO [org.jboss.as.jacorb] (MSC service thread 1-1) JBAS016330: CORBA ORB Service started
    2018-07-30 14:55:32,253 WARN [org.jgroups.jmx.JmxConfigurator] (MSC service thread 1-3) unregistering already registered MBean: jgroups:type=protocol,cluster="node1_live_to_node1_backup",protocol=RSVP
    2018-07-30 14:55:32,260 WARN [org.jgroups.jmx.JmxConfigurator] (MSC service thread 1-3) unregistering already registered MBean: jgroups:type=protocol,cluster="node1_live_to_node1_backup",protocol=FRAG2
    2018-07-30 14:55:32,263 WARN [org.jgroups.jmx.JmxConfigurator] (MSC service thread 1-3) unregistering already registered MBean: jgroups:type=protocol,cluster="node1_live_to_node1_backup",protocol=MFC
    2018-07-30 14:55:32,267 WARN [org.jgroups.jmx.JmxConfigurator] (MSC service thread 1-3) unregistering already registered MBean: jgroups:type=protocol,cluster="node1_live_to_node1_backup",protocol=GMS
    2018-07-30 14:55:32,280 WARN [org.jgroups.jmx.JmxConfigurator] (MSC service thread 1-3) unregistering already registered MBean: jgroups:type=protocol,cluster="node1_live_to_node1_backup",protocol=STABLE
    2018-07-30 14:55:32,287 WARN [org.jgroups.jmx.JmxConfigurator] (MSC service thread 1-3) unregistering already registered MBean: jgroups:type=protocol,cluster="node1_live_to_node1_backup",protocol=UNICAST3
    2018-07-30 14:55:32,297 WARN [org.jgroups.jmx.JmxConfigurator] (MSC service thread 1-3) unregistering already registered MBean: jgroups:type=protocol,cluster="node1_live_to_node1_backup",protocol=NAKACK2
    2018-07-30 14:55:32,298 INFO [org.jboss.as.jacorb] (MSC service thread 1-5) JBAS016328: CORBA Naming Service started
    2018-07-30 14:55:32,308 WARN [org.jgroups.jmx.JmxConfigurator] (MSC service thread 1-3) unregistering already registered MBean: jgroups:type=protocol,cluster="node1_live_to_node1_backup",protocol=VERIFY_SUSPECT
    2018-07-30 14:55:32,311 WARN [org.jgroups.jmx.JmxConfigurator] (MSC service thread 1-3) unregistering already registered MBean: jgroups:type=protocol,cluster="node1_live_to_node1_backup",protocol=FD
    2018-07-30 14:55:32,314 WARN [org.jgroups.jmx.JmxConfigurator] (MSC service thread 1-3) unregistering already registered MBean: jgroups:type=protocol,cluster="node1_live_to_node1_backup",protocol=FD_SOCK
    2018-07-30 14:55:32,319 WARN [org.jgroups.jmx.JmxConfigurator] (MSC service thread 1-3) unregistering already registered MBean: jgroups:type=protocol,cluster="node1_live_to_node1_backup",protocol=MERGE2
    2018-07-30 14:55:32,321 WARN [org.jgroups.jmx.JmxConfigurator] (MSC service thread 1-3) unregistering already registered MBean: jgroups:type=protocol,cluster="node1_live_to_node1_backup",protocol=TCPPING
    2018-07-30 14:55:32,334 WARN [org.jgroups.jmx.JmxConfigurator] (MSC service thread 1-3) unregistering already registered MBean: jgroups:type=protocol,cluster="node1_live_to_node1_backup",protocol=TCP
    2018-07-30 14:55:32,403 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "castylesr5.1.1.ear" (runtime-name: "castylesr5.1.1.ear")
    2018-07-30 14:55:32,403 WARN [org.jgroups.jmx.JmxConfigurator] (MSC service thread 1-3) unregistering already registered MBean: jgroups:type=channel,cluster="node1_live_to_node1_backup"
    2018-07-30 14:55:32,409 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "iam_im.ear" (runtime-name: "iam_im.ear")
    2018-07-30 14:55:32,415 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-3) JBAS010400: Bound data source [java:jboss/datasources/ExampleDS]
    2018-07-30 14:55:32,466 INFO [org.jboss.as.server.deployment.scanner] (MSC service thread 1-5) JBAS015012: Started FileSystemDeploymentService for directory /opt/CA/wildfly-idm/standalone/deployments
    2018-07-30 14:55:32,602 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 60) HQ221000: backup server is starting with configuration HornetQ Configuration (clustered=true,backup=true,sharedStore=true,journalDirectory=/opt/CA/wildfly-idm/standalone/data/backup-hornetq/journal,bindingsDirectory=/opt/CA/wildfly-idm/standalone/data/backup-hornetq/bindings,largeMessagesDirectory=/opt/CA/wildfly-idm/standalone/data/backup-hornetq/large-messages,pagingDirectory=/opt/CA/wildfly-idm/standalone/data/backup-hornetq/paging)
    2018-07-30 14:55:32,648 INFO [org.hornetq.core.server] (HQ119000: Activation for server HornetQServerImpl::serverUUID=4d53a697-e2c2-11e7-93ab-67f55eeff10b) HQ221032: Waiting to become backup node
    2018-07-30 14:55:32,650 INFO [org.hornetq.core.server] (HQ119000: Activation for server HornetQServerImpl::serverUUID=4d53a697-e2c2-11e7-93ab-67f55eeff10b) HQ221033: ** got backup lock
    2018-07-30 14:55:32,645 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 61) HQ221000: live server is starting with configuration HornetQ Configuration (clustered=true,backup=false,sharedStore=true,journalDirectory=/opt/CA/wildfly-idm/standalone/data/live-hornetq/journal,bindingsDirectory=/opt/CA/wildfly-idm/standalone/data/live-hornetq/bindings,largeMessagesDirectory=/opt/CA/wildfly-idm/standalone/data/live-hornetq/large-messages,pagingDirectory=/opt/CA/wildfly-idm/standalone/data/live-hornetq/paging)
    2018-07-30 14:55:32,672 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 61) HQ221006: Waiting to obtain live lock
    2018-07-30 14:55:32,813 INFO [org.hornetq.core.server] (HQ119000: Activation for server HornetQServerImpl::serverUUID=4d53a697-e2c2-11e7-93ab-67f55eeff10b) HQ221012: Using AIO Journal
    2018-07-30 14:55:32,821 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 61) HQ221012: Using AIO Journal
    2018-07-30 14:55:33,022 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015973: Starting subdeployment (runtime-name: "castylesr5.1.1.war")
    2018-07-30 14:55:33,301 INFO [io.netty.util.internal.PlatformDependent] (ServerService Thread Pool -- 61) Your platform does not provide complete low-level API for accessing direct buffers reliably. Unless explicitly requested, heap buffer will always be preferred to avoid potential system unstability.
    2018-07-30 14:55:33,573 INFO [org.hornetq.core.server] (HQ119000: Activation for server HornetQServerImpl::serverUUID=4d53a697-e2c2-11e7-93ab-67f55eeff10b) HQ221043: Adding protocol support CORE
    2018-07-30 14:55:33,579 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 61) HQ221043: Adding protocol support CORE
    2018-07-30 14:55:33,605 INFO [org.hornetq.core.server] (HQ119000: Activation for server HornetQServerImpl::serverUUID=4d53a697-e2c2-11e7-93ab-67f55eeff10b) HQ221043: Adding protocol support AMQP
    2018-07-30 14:55:33,606 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 61) HQ221043: Adding protocol support AMQP
    2018-07-30 14:55:33,626 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 61) HQ221043: Adding protocol support STOMP
    2018-07-30 14:55:33,627 INFO [org.hornetq.core.server] (HQ119000: Activation for server HornetQServerImpl::serverUUID=4d53a697-e2c2-11e7-93ab-67f55eeff10b) HQ221043: Adding protocol support STOMP
    2018-07-30 14:55:33,856 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 61) HQ221034: Waiting to obtain live lock
    2018-07-30 14:55:33,856 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 61) HQ221035: Live Server Obtained live lock
    2018-07-30 14:55:33,917 INFO [org.hornetq.core.server] (HQ119000: Activation for server HornetQServerImpl::serverUUID=4d53a697-e2c2-11e7-93ab-67f55eeff10b) HQ221109: HornetQ Backup Server version 2.4.5.FINAL (Wild Hornet, 124) [4d53a697-e2c2-11e7-93ab-67f55eeff10b] started, waiting live to fail before it gets active
    2018-07-30 14:55:34,032 INFO [stdout] (Thread-0 (HornetQ-server-HornetQServerImpl::serverUUID=4d53a697-e2c2-11e7-93ab-67f55eeff10b-259720153))
    2018-07-30 14:55:34,033 INFO [stdout] (Thread-0 (HornetQ-server-HornetQServerImpl::serverUUID=4d53a697-e2c2-11e7-93ab-67f55eeff10b-259720153)) -------------------------------------------------------------------
    2018-07-30 14:55:34,033 INFO [stdout] (Thread-0 (HornetQ-server-HornetQServerImpl::serverUUID=4d53a697-e2c2-11e7-93ab-67f55eeff10b-259720153)) GMS: address=iamnode1/node1_live_to_node1_backup, cluster=node1_live_to_node1_backup, physical address=192.168.242.146:7600
    2018-07-30 14:55:34,033 INFO [stdout] (Thread-0 (HornetQ-server-HornetQServerImpl::serverUUID=4d53a697-e2c2-11e7-93ab-67f55eeff10b-259720153)) -------------------------------------------------------------------
    2018-07-30 14:55:34,388 INFO [org.wildfly.extension.undertow] (MSC service thread 1-3) JBAS017519: Undertow HTTPS listener https listening on /192.168.242.146:8443
    2018-07-30 14:55:35,277 INFO [org.jboss.ws.common.management] (MSC service thread 1-3) JBWS022052: Starting JBoss Web Services - Stack CXF Server 4.3.2.Final
    2018-07-30 14:55:36,716 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017534: Registered web context: /castylesr5.1.1
    2018-07-30 14:55:38,884 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) JBAS010400: Bound data source [java:/iam/im/jdbc/jdbc/reportsnapshot]
    2018-07-30 14:55:38,885 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) JBAS010400: Bound data source [java:/iam/im/jdbc/auditDbDataSource]
    2018-07-30 14:55:38,886 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-3) JBAS010400: Bound data source [java:/iam/im/jdbc/jdbc/archive]
    2018-07-30 14:55:38,915 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-3) JBAS010400: Bound data source [java:/iam/im/jdbc/jdbc/idm]
    2018-07-30 14:55:38,915 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-6) JBAS010400: Bound data source [java:/jdbc/WPDS]
    2018-07-30 14:55:40,530 INFO [org.jboss.messaging] (MSC service thread 1-3) JBAS011615: Registered HTTP upgrade for hornetq-remoting protocol handled by http-acceptor-throughput acceptor
    2018-07-30 14:55:40,532 INFO [org.jboss.messaging] (MSC service thread 1-8) JBAS011615: Registered HTTP upgrade for hornetq-remoting protocol handled by http-acceptor acceptor
    2018-07-30 14:55:41,022 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 61) HQ221020: Started Netty Acceptor version unknown 192.168.242.146:5455
    2018-07-30 14:55:41,035 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 61) HQ221020: Started Netty Acceptor version unknown 192.168.242.146:5456
    2018-07-30 14:55:41,045 INFO [stdout] (ServerService Thread Pool -- 61)
    2018-07-30 14:55:41,045 INFO [stdout] (ServerService Thread Pool -- 61) -------------------------------------------------------------------
    2018-07-30 14:55:41,046 INFO [stdout] (ServerService Thread Pool -- 61) GMS: address=iamnode1/live, cluster=live, physical address=192.168.242.146:7600
    2018-07-30 14:55:41,046 INFO [stdout] (ServerService Thread Pool -- 61) -------------------------------------------------------------------
    2018-07-30 14:55:43,216 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 61) HQ221007: Server is now live
    2018-07-30 14:55:43,218 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 61) HQ221001: HornetQ Server version 2.4.5.FINAL (Wild Hornet, 124) [4d550628-e2c2-11e7-93ab-67f55eeff10b]
    2018-07-30 14:55:43,247 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 63) HQ221003: trying to deploy queue jms.queue.iam_imAnalyticsNotificationQueue
    2018-07-30 14:55:43,334 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 63) JBAS011601: Bound messaging object to jndi name iam/im/jms/queue/analytics/AnalyticsNotificationQueue
    2018-07-30 14:55:43,404 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 65) HQ221003: trying to deploy queue jms.queue.iam.im.jms.queue.com.netegrity.ims.msg.queue
    2018-07-30 14:55:43,407 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 65) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/queue/iam/im/jms/queue/com.netegrity.ims.msg.queue
    2018-07-30 14:55:43,410 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 65) JBAS011601: Bound messaging object to jndi name queue/iam/im/jms/queue/com.netegrity.ims.msg.queue
    2018-07-30 14:55:43,481 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 67) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/wpConnectionFactory
    2018-07-30 14:55:43,483 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 67) JBAS011601: Bound messaging object to jndi name wpConnectionFactory
    2018-07-30 14:55:43,486 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 67) JBAS011601: Bound messaging object to jndi name jms/wpConnectionFactory
    2018-07-30 14:55:43,493 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 70) JBAS011601: Bound messaging object to jndi name RemoteConnectionFactory
    2018-07-30 14:55:43,496 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 70) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory
    2018-07-30 14:55:43,500 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 68) JBAS011601: Bound messaging object to jndi name java:/ConnectionFactory
    2018-07-30 14:55:43,502 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 72) HQ221003: trying to deploy queue jms.queue.iam.im.jms.queue.wpServAutoActQueue
    2018-07-30 14:55:43,507 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 72) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/queue/wpServAutoActQueue
    2018-07-30 14:55:43,516 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 72) JBAS011601: Bound messaging object to jndi name queue/wpServAutoActQueue
    2018-07-30 14:55:43,519 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 69) HQ221003: trying to deploy queue jms.topic.testTopic
    2018-07-30 14:55:43,544 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 69) JBAS011601: Bound messaging object to jndi name topic/test
    2018-07-30 14:55:43,545 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 69) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/topic/test
    2018-07-30 14:55:43,546 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 71) HQ221003: trying to deploy queue jms.topic.iam.im.jms.topic.ServerCommandTopic
    2018-07-30 14:55:43,551 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 71) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/queue/iam/im/jms/topic/ServerCommandTopic
    2018-07-30 14:55:43,552 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 71) JBAS011601: Bound messaging object to jndi name topic/iam/im/jms/topic/ServerCommandTopic
    2018-07-30 14:55:43,553 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 66) HQ221003: trying to deploy queue jms.queue.iam.im.jms.queue.RuntimeStatusDetailQueue
    2018-07-30 14:55:43,555 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 66) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/queue/iam/im/jms/queue/RuntimeStatusDetailQueue
    2018-07-30 14:55:43,556 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 66) JBAS011601: Bound messaging object to jndi name queue/iam/im/jms/queue/RuntimeStatusDetailQueue
    2018-07-30 14:55:43,557 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 64) HQ221003: trying to deploy queue jms.queue.testQueue
    2018-07-30 14:55:43,558 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 64) JBAS011601: Bound messaging object to jndi name queue/test
    2018-07-30 14:55:43,560 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 64) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/queue/test
    2018-07-30 14:55:43,561 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 61) HQ221003: trying to deploy queue jms.queue.iam.im.jms.queue.wpEventQueue
    2018-07-30 14:55:43,563 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 61) JBAS011601: Bound messaging object to jndi name queue/wpEventQueue
    2018-07-30 14:55:43,564 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 61) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/queue/wpEventQueue
    2018-07-30 14:55:43,565 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 62) HQ221003: trying to deploy queue jms.queue.iam.im.jms.queue.wpUtilQueue
    2018-07-30 14:55:43,568 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 62) JBAS011601: Bound messaging object to jndi name queue/wpUtilQueue
    2018-07-30 14:55:43,569 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 62) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/queue/wpUtilQueue
    2018-07-30 14:55:43,571 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 60) HQ221003: trying to deploy queue jms.queue.iam.im.jms.queue.StatusNotificationsQueue
    2018-07-30 14:55:43,572 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 60) JBAS011601: Bound messaging object to jndi name queue/iam/im/jms/queue/StatusNotificationsQueue
    2018-07-30 14:55:43,573 INFO [org.jboss.as.messaging] (ServerService Thread Pool -- 60) JBAS011601: Bound messaging object to jndi name java:jboss/exported/jms/queue/iam/im/jms/queue/StatusNotificationsQueue
    2018-07-30 14:55:43,800 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-1) JBAS010406: Registered connection factory java:/JmsXA
    2018-07-30 14:55:43,926 INFO [org.hornetq.ra] (MSC service thread 1-1) HornetQ resource adaptor started
    2018-07-30 14:55:43,929 INFO [org.jboss.as.connector.services.resourceadapters.ResourceAdapterActivatorService$ResourceAdapterActivator] (MSC service thread 1-1) IJ020002: Deployed: file://RaActivatorhornetq-ra
    2018-07-30 14:55:43,939 INFO [org.jboss.as.connector.deployment] (MSC service thread 1-8) JBAS010401: Bound JCA ConnectionFactory [java:/JmsXA]
    2018-07-30 14:55:53,357 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015960: Class Path entry jaxb-xjc__V2.0.5.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/library/cacommons.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,358 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015960: Class Path entry scala-library__V2.8.0.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/library/cacommons.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,358 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015960: Class Path entry activation__V1.0.2.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/library/cacommons.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,358 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015960: Class Path entry annotations.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/library/cacommons.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,358 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015960: Class Path entry commons-collections__V3.2.1.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/library/cacommons.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,358 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015960: Class Path entry commons-lang__V2.3.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/library/cacommons.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,358 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015960: Class Path entry commons-logging__V1.1.1.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/library/cacommons.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,358 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015960: Class Path entry commons-pool__V1.5.5.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/library/cacommons.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,358 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015960: Class Path entry log4j__V1.2.16.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/library/cacommons.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,375 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015960: Class Path entry commons-dbcp-1.4.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/library/jiam-14.1.0-327.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,375 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015960: Class Path entry commons-pool__V1.5.5.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/library/jiam-14.1.0-327.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,375 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015960: Class Path entry cahsqldb.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/library/jiam-14.1.0-327.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,378 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015960: Class Path entry jiam.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/library/examples.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,516 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015973: Starting subdeployment (runtime-name: "manage_redirect.war")
    2018-07-30 14:55:53,516 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015973: Starting subdeployment (runtime-name: "iam_im_wpServer.jar")
    2018-07-30 14:55:53,516 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015973: Starting subdeployment (runtime-name: "policyserver.rar")
    2018-07-30 14:55:53,516 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015973: Starting subdeployment (runtime-name: "custom")
    2018-07-30 14:55:53,516 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015973: Starting subdeployment (runtime-name: "ca-nim-sm.war")
    2018-07-30 14:55:53,516 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015973: Starting subdeployment (runtime-name: "redirect.war")
    2018-07-30 14:55:53,516 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015973: Starting subdeployment (runtime-name: "management_console.war")
    2018-07-30 14:55:53,517 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015973: Starting subdeployment (runtime-name: "workflow.rar")
    2018-07-30 14:55:53,517 INFO [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015973: Starting subdeployment (runtime-name: "iam_im_identityminder_ejb.jar")
    2018-07-30 14:55:53,516 INFO [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015973: Starting subdeployment (runtime-name: "user_console.war")
    2018-07-30 14:55:53,543 WARN [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015960: Class Path entry library/jiam.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/iam_im_identityminder_ejb.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,543 WARN [org.jboss.as.server.deployment] (MSC service thread 1-7) JBAS015960: Class Path entry library/json-20131018.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/iam_im_identityminder_ejb.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,549 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015960: Class Path entry library/jiam.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/iam_im_wpServer.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,549 WARN [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015960: Class Path entry library/json-20131018.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/iam_im_wpServer.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,596 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015960: Class Path entry library/jiam.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/workflow.rar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,596 WARN [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015960: Class Path entry library/json-20131018.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/workflow.rar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,633 WARN [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015960: Class Path entry library/jiam.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/policyserver.rar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,634 WARN [org.jboss.as.server.deployment] (MSC service thread 1-6) JBAS015960: Class Path entry library/json-20131018.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/policyserver.rar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,656 WARN [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015960: Class Path entry library/jiam.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/management_console.war does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:53,658 WARN [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015960: Class Path entry library/json-20131018.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/management_console.war does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,088 WARN [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015960: Class Path entry library/jiam.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/user_console.war does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,089 WARN [org.jboss.as.server.deployment] (MSC service thread 1-3) JBAS015960: Class Path entry library/json-20131018.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/user_console.war does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,721 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015850: /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/jboss-deployment-structure.xml in subdeployment ignored. jboss-deployment-structure.xml is only parsed for top level deployments.
    2018-07-30 14:55:55,726 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry jaxws-api.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,726 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry jsr181-api.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,726 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry jsr250-api.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,726 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry saaj-api.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,727 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry saaj-impl.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,727 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry jsr173_api.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,727 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry sjsxp.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,727 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry woodstox.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,727 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry resolver.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,728 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry jaxb-api.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,728 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry jaxb-impl.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,728 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry activation.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,728 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry stax-ex.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,728 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry streambuffer.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,728 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry stax-utils.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,729 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry policy.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,729 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry gmbal-api-only.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,729 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry management-api.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxws-rt-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,784 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry jaxb-api.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxb-impl-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,785 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry activation.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxb-impl-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,787 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry jsr173_1.0_api.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxb-impl-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:55:55,788 WARN [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015960: Class Path entry jaxb1-impl.jar in /opt/CA/wildfly-idm/standalone/deployments/iam_im.ear/ca-nim-sm.war/WEB-INF/lib/jaxb-impl-2.2.jar does not point to a valid jar for a Class-Path reference.
    2018-07-30 14:56:01,928 WARN [org.jboss.as.dependency.private] (MSC service thread 1-4) JBAS018567: Deployment "deployment.iam_im.ear.config" is using a private module ("org.jboss.as.jmx:main") which may be changed or removed in future versions without notice.
    2018-07-30 14:56:01,929 WARN [org.jboss.as.dependency.private] (MSC service thread 1-4) JBAS018567: Deployment "deployment.iam_im.ear.config" is using a private module ("org.jboss.as.jmx:main") which may be changed or removed in future versions without notice.
    2018-07-30 14:56:01,930 WARN [org.jboss.as.dependency.private] (MSC service thread 1-7) JBAS018567: Deployment "deployment.iam_im.ear" is using a private module ("org.jboss.as.jmx:main") which may be changed or removed in future versions without notice.
    2018-07-30 14:56:01,931 WARN [org.jboss.as.dependency.private] (MSC service thread 1-7) JBAS018567: Deployment "deployment.iam_im.ear" is using a private module ("org.jboss.as.jmx:main") which may be changed or removed in future versions without notice.
    2018-07-30 14:56:02,393 WARN [org.jboss.as.dependency.private] (MSC service thread 1-7) JBAS018567: Deployment "deployment.iam_im.ear.ca-nim-sm.war" is using a private module ("com.sun.xml.messaging.saaj:main") which may be changed or removed in future versions without notice.
    2018-07-30 14:56:02,393 WARN [org.jboss.as.dependency.private] (MSC service thread 1-7) JBAS018567: Deployment "deployment.iam_im.ear.ca-nim-sm.war" is using a private module ("com.sun.xml.messaging.saaj:main") which may be changed or removed in future versions without notice.
    2018-07-30 14:56:06,655 INFO [org.jboss.weld.deployer] (MSC service thread 1-4) JBAS016002: Processing weld deployment iam_im.ear
    2018-07-30 14:56:06,845 INFO [org.hibernate.validator.internal.util.Version] (MSC service thread 1-4) HV000001: Hibernate Validator 5.1.3.Final
    2018-07-30 14:56:08,765 INFO [org.jboss.weld.deployer] (MSC service thread 1-3) JBAS016002: Processing weld deployment policyserver.rar
    2018-07-30 14:56:08,772 INFO [org.jboss.weld.deployer] (MSC service thread 1-6) JBAS016002: Processing weld deployment manage_redirect.war
    2018-07-30 14:56:08,811 INFO [org.jboss.weld.deployer] (MSC service thread 1-3) JBAS016002: Processing weld deployment custom
    2018-07-30 14:56:08,815 INFO [org.jboss.weld.deployer] (MSC service thread 1-3) JBAS016002: Processing weld deployment workflow.rar
    2018-07-30 14:56:09,119 INFO [org.jboss.weld.deployer] (MSC service thread 1-2) JBAS016002: Processing weld deployment redirect.war
    2018-07-30 14:56:09,154 INFO [org.jboss.weld.deployer] (MSC service thread 1-8) JBAS016002: Processing weld deployment iam_im_identityminder_ejb.jar
    2018-07-30 14:56:09,339 INFO [org.jboss.weld.deployer] (MSC service thread 1-7) JBAS016002: Processing weld deployment ca-nim-sm.war
    2018-07-30 14:56:10,061 INFO [org.jboss.weld.deployer] (MSC service thread 1-4) JBAS016002: Processing weld deployment management_console.war
    2018-07-30 14:56:10,211 INFO [org.jboss.weld.deployer] (MSC service thread 1-5) JBAS016002: Processing weld deployment iam_im_wpServer.jar
    2018-07-30 14:56:10,917 INFO [org.jboss.weld.deployer] (MSC service thread 1-1) JBAS016002: Processing weld deployment user_console.war
    2018-07-30 14:56:11,117 INFO [org.jboss.weld.deployer] (MSC service thread 1-5) JBAS016005: Starting Services for CDI deployment: iam_im.ear
    2018-07-30 14:56:11,289 INFO [org.jboss.weld.Version] (MSC service thread 1-5) WELD-000900: 2.2.6 (Final)
    2018-07-30 14:56:11,332 INFO [org.jboss.weld.deployer] (MSC service thread 1-3) JBAS016008: Starting weld service for deployment iam_im.ear
    2018-07-30 14:56:11,832 WARN [org.hornetq.core.server] (Thread-0 (HornetQ-server-HornetQServerImpl::serverUUID=4d53a697-e2c2-11e7-93ab-67f55eeff10b-259720153)) HQ222137: Unable to announce backup, retrying
    2018-07-30 14:56:12,848 WARN [org.jboss.weld.Event] (MSC service thread 1-7) WELD-000411: Observer method [BackedAnnotatedMethod] com.sun.jersey.server.impl.cdi.CDIExtension.processAnnotatedType(@Observes ProcessAnnotatedType<Object>) receives events for all annotated types. Consider restricting events using @WithAnnotations or a generic type with bounds.
    2018-07-30 14:56:19,817 ERROR [stderr] (MSC service thread 1-5) ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console.
    2018-07-30 14:56:34,076 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) JBAS014613: Operation ("deploy") failed - address: ([("deployment" => "iam_im.ear")]) - failure description: {
    "JBAS014771: Services with missing/unavailable dependencies" => [
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.RuntimeStatusDetailEJB.ORB is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.RuntimeStatusDetailEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.RuntimeStatusDetailEJB.ValidatorFactory is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.RuntimeStatusDetailEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.SubscriberMessageEJB.InAppClientContainer is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.SubscriberMessageEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.WorkFlowCallBackEJB.ValidatorFactory is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.WorkFlowCallBackEJB]",
    "jboss.deployment.subunit.\"iam_im.ear\".\"iam_im_identityminder_ejb.jar\".INSTALL is missing [jboss.deployment.subunit.\"iam_im.ear\".\"management_console.war\".deploymentCompleteService]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.SubscriberMessageEJB.Validator is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.SubscriberMessageEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.RuntimeStatusDetailEJB.InAppClientContainer is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.RuntimeStatusDetailEJB]",
    "jboss.deployment.unit.\"iam_im.ear\".deploymentCompleteService is missing [jboss.deployment.subunit.\"iam_im.ear\".\"manage_redirect.war\".deploymentCompleteService, jboss.deployment.subunit.\"iam_im.ear\".\"iam_im_identityminder_ejb.jar\".deploymentCompleteService, jboss.deployment.subunit.\"iam_im.ear\".\"management_console.war\".deploymentCompleteService, jboss.deployment.subunit.\"iam_im.ear\".\"redirect.war\".deploymentCompleteService]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.WorkFlowCallBackEJB.HandleDelegate is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.WorkFlowCallBackEJB]",
    "jboss.deployment.subunit.\"iam_im.ear\".\"redirect.war\".INSTALL is missing [jboss.deployment.subunit.\"iam_im.ear\".\"iam_im_identityminder_ejb.jar\".deploymentCompleteService]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.ServerCommandsEJB.ValidatorFactory is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.ServerCommandsEJB]",
    "jboss.deployment.subunit.\"iam_im.ear\".\"manage_redirect.war\".INSTALL is missing [jboss.deployment.subunit.\"iam_im.ear\".\"redirect.war\".deploymentCompleteService]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.SubscriberMessageEJB.InstanceName is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.SubscriberMessageEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.WorkFlowCallBackEJB.ORB is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.WorkFlowCallBackEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.RuntimeStatusDetailEJB.Validator is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.RuntimeStatusDetailEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.ServerCommandsEJB.ORB is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.ServerCommandsEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.SubscriberMessageEJB.ValidatorFactory is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.SubscriberMessageEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.ServerCommandsEJB.Validator is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.ServerCommandsEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.SubscriberMessageEJB.HandleDelegate is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.SubscriberMessageEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.RuntimeStatusDetailEJB.HandleDelegate is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.RuntimeStatusDetailEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.ServerCommandsEJB.InstanceName is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.ServerCommandsEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.ServerCommandsEJB.InAppClientContainer is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.ServerCommandsEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.SubscriberMessageEJB.ORB is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.SubscriberMessageEJB]",
    "jboss.deployment.subunit.\"iam_im.ear\".\"iam_im_identityminder_ejb.jar\".weld.weldClassIntrospector is missing [jboss.deployment.subunit.\"iam_im.ear\".\"iam_im_identityminder_ejb.jar\".beanmanager]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.WorkFlowCallBackEJB.Validator is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.WorkFlowCallBackEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.WorkFlowCallBackEJB.InstanceName is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.WorkFlowCallBackEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.ServerCommandsEJB.HandleDelegate is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.ServerCommandsEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.RuntimeStatusDetailEJB.InstanceName is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.RuntimeStatusDetailEJB]",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.WorkFlowCallBackEJB.InAppClientContainer is missing [jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.WorkFlowCallBackEJB]"
    ],
    "JBAS014879: One or more services were unable to start due to one or more indirect dependencies not being available." => {
    "Services that were unable to start:" => [
    "jboss.deployment.subunit.\"iam_im.ear\".\"ca-nim-sm.war\".CLEANUP",
    "jboss.deployment.subunit.\"iam_im.ear\".custom.CLEANUP",
    "jboss.deployment.subunit.\"iam_im.ear\".\"iam_im_wpServer.jar\".CLEANUP",
    "jboss.deployment.subunit.\"iam_im.ear\".\"management_console.war\".INSTALL",
    "jboss.deployment.subunit.\"iam_im.ear\".\"policyserver.rar\".CLEANUP",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".CLEANUP",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.AJAXFormTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.BreadcrumbitemTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.ColorTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.ConnectTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.CustomSpinnerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.CustomValidatorTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.DateRangeValidatorTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.DateSpinnerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.DetailTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.DialogHorizontalRuleTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.DoubleRangeValidatorTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.EnumSpinnerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.FormSpanTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.FormValidatorTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.ImageAreaTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.IncludeTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.LengthValidatorTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.ListItemsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.LoginContainerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.LongRangeValidatorTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.MasterTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.MenuItemGroupTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.MenuItemTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.MenuItemsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.NumericSpinnerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.PageSectionButtonsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.QuickStartItemTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.RegExValidatorTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.RelatedContentTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.ReorderContainerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.ReorderTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.SelectItemGroupTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.SelectItemTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.ShowMoreTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.StackLayoutTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.TabActionsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.TabTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.TableLevelButtonsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.TableRowLevelActionTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.TimeSpinnerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.TreeItemTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.TreeItemsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.TreeLevelButtonsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.WizardButtonsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.WizardStepTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlAliasBeanTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlAnchorBarTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlBrandingTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlBreadcrumbsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlButtonTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlCACalendarTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlCalendarSummaryTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlChartTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlCheckBoxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlColorFieldTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlColumnTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlComboBoxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlCommandOptionMenuTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlContentAreaTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlDataListTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlDateBlockTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlDatePickerInputTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlDatePickerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlDayBlockTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlDialogTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlDropDownMenuTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlFileUploadTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlFormLayoutTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlGroupBoxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlHeadContentsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlHideShowRowTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlImageMapTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlImageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlInputSecretTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlInputTextTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlInstructionsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlLabelTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlLinkTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlListBoxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlListTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlLoginTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlMasterDetailListTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlMasterDetailTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlMenuBarTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlMessageBoxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlMessageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlMessagesTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlMonthBlockTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlOptionMenuTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlOutputTextTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlPageFooterButtonsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlPageFooterLinksTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlPageFooterTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlPageHeaderButtonsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlPageHeaderTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlPageSectionTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlProgressIndicatorTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlQuickStartTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlRadioButtonTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlRadioGroupTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlSelectColumnTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlShuttleControlTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlSortColumnTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlSpinControlTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlTabBarTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlTableTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlTreeNodeColumnTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlTreeTableHybridTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlTreeTableTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlTreeTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlVerticalMenuGroupTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlWelcomeBannerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.ca.corpui.faces.taglib.html.HtmlWizardTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.ims.tews6.ServiceServlet\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.ims.tews6.servletfilter.TewsSecurityFilter\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.BrowseTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.BundleTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.ButtonPanelTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.ButtonTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.CheckboxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.DatePickerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.FormRowSetTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.FormRowTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.GroupBoxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.HeaderBufferTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.ImageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.ImgTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.LabelTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.MessageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.NumberTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.OptionTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.OptionsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.PageSectionTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.ParamTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.PasswordTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.RadioTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.RequiredLegendTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.SelectTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.TaskButtonsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.TdTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.TextAreaTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.TextTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.TimeFieldTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.TrTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.imhtml.TruncateTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.ActionButtonTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.CategoriesTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.CategoryTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.CompletedTasksTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.ConfirmationMessageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.ContextTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.CurrentDelegationsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.EnvLinksTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.ErrorMessageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.FootTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.FragmentIncludeTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.HeadTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.HelpTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.HomePagePluginsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.HomeTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IMHeadTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfAboutLinkTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfCategoriesTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfCompletedTasksTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfConfirmationCodeTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfConfirmationPageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfDelegationsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfEnvPropertyTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfErrorPageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfHomePagePluginsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfHomePageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfLanguagesTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfProtectedTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfPublicTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfReturnToSearchTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfServersTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfSummaryMessagesTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfTaskPageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfTasksTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.IfWorkItemsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.ImgTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.LanguagesTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.LastTaskTagTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.LinkNameTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.LinkTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.LogoutTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.MessageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.ParamTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.RedirectTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.ServersTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.SkinTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.StylesheetTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.SummaryMessageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.SummaryMessagesTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.TabTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.TabsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.TagSupportServlet\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.TaskBodyTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.TaskNameTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.TaskStatusTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.TaskTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.TaskTitleTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.TasksTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.TemplateTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.ThemeIconTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.ThemeTitleTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.TitleTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.UpdateTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.UserAttributeTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.taglib.skin.WorkListTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.webapp.CsrfPreventionHttpSessionListener\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.webapp.SystemInitializer\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.webapp.authentication.FrameworkLoginFilter\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.webapp.filter.ClientExtractFilter\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.webapp.filter.ConsolePageFilter\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.webapp.filter.LocaleFilter\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.netegrity.webapp.page.jsf.FacesFilter\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.sun.jersey.server.impl.container.servlet.Include\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"com.sun.jersey.spi.container.servlet.ServletContainer\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"javax.faces.webapp.AttributeTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"javax.faces.webapp.ConverterTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"javax.faces.webapp.FacetTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"javax.faces.webapp.ValidatorTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"javax.servlet.jsp.jstl.tlv.ScriptFreeTLV\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"javax.servlet.jsp.tagext.TagSupport\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.aliasbean.AliasBeanTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.aliasbean.AliasBeansScopeTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.buffer.BufferTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.calendar.HtmlInputCalendarTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.checkbox.HtmlCheckboxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.collapsiblepanel.HtmlCollapsiblePanelTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.collapsiblepanel.HtmlHeaderLinkTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.column.HtmlColumnTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.creditcardvalidator.ValidateCreditCardTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.crosstable.HtmlColumnsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.datalist.HtmlDataListTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.datascroller.HtmlDataScrollerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.date.HtmlInputDateTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.div.DivTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.document.DocumentBodyTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.document.DocumentHeadTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.document.DocumentTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.dojo.DojoInitializerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.emailvalidator.ValidateEmailTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.equalvalidator.ValidateEqualTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.fileupload.HtmlInputFileUploadTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.htmlTag.HtmlTagTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.inputHtml.InputHtmlTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.inputTextHelp.HtmlInputTextHelpTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.jslistener.JsValueChangeListenerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.jsvalueset.HtmlJsValueSetTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.layout.HtmlPanelLayoutTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.navigation.HtmlCommandNavigationTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.navigation.HtmlPanelNavigationTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.navmenu.HtmlNavigationMenuItemTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.navmenu.HtmlNavigationMenuItemsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlCommandNavigationItemTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.navmenu.htmlnavmenu.HtmlPanelNavigationMenuTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.navmenu.jscookmenu.HtmlJSCookMenuTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.newspaper.HtmlNewspaperTableTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.panelstack.PanelStackTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.popup.HtmlPopupTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.radio.HtmlRadioTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.regexprvalidator.ValidateRegExprTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.savestate.SaveStateTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.schedule.ScheduleTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.selectOneCountry.SelectOneCountryTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.selectOneLanguage.SelectOneLanguageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.selectitems.SelectItemsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.sortheader.HtmlCommandSortHeaderTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.stylesheet.StylesheetTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.swapimage.HtmlSwapImageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.tabbedpane.HtmlPanelTabTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.tabbedpane.HtmlPanelTabbedPaneTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.tabbedpane.TabChangeListenerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.tree.taglib.IconProviderTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.tree.taglib.TreeCheckboxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.tree.taglib.TreeColumnTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.tree.taglib.TreeSelectionListenerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.tree.taglib.TreeTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.tree2.TreeTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.custom.updateactionlistener.UpdateActionListenerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.core.ActionListenerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.core.ConvertDateTimeTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.core.ConvertNumberTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.core.LoadBundleTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.core.ParamTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.core.SelectItemTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.core.SelectItemsTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.core.SubviewTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.core.ValidateDoubleRangeTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.core.ValidateLengthTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.core.ValidateLongRangeTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.core.ValueChangeListenerTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.core.VerbatimTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.core.ViewTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlColumnTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlCommandButtonTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlCommandLinkTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlDataTableTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlFormTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlGraphicImageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlInputHiddenTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlInputSecretTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlInputTextTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlInputTextareaTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlMessageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlMessagesTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlOutputFormatTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlOutputLabelTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlOutputLinkTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlOutputTextTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlPanelGridTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlPanelGroupTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlSelectBooleanCheckboxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlSelectManyCheckboxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlSelectManyListboxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlSelectManyMenuTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlSelectOneListboxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlSelectOneMenuTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.HtmlSelectOneRadioTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlCommandButtonTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlCommandLinkTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlDataTableTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlGraphicImageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlInputHiddenTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlInputSecretTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlInputTextTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlInputTextareaTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlMessageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlMessagesTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlOutputLabelTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlOutputTextTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlPanelGridTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlPanelGroupTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlSelectBooleanCheckboxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlSelectManyCheckboxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlSelectManyListboxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlSelectManyMenuTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlSelectOneListboxTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlSelectOneMenuTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.taglib.html.ext.HtmlSelectOneRadioTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.webapp.StartupServletContextListener\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.myfaces.webapp.filter.ExtensionsFilter\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.common.core.CatchTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.common.core.ChooseTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.common.core.OtherwiseTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.common.core.RemoveTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.common.xml.ForEachTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.common.xml.IfTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.common.xml.SetTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.common.xml.WhenTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.core.ForEachTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.core.ForTokensTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.core.IfTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.core.ImportTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.core.OutTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.core.ParamTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.core.RedirectTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.core.SetTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.core.UrlTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.core.WhenTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.fmt.BundleTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.fmt.FormatDateTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.fmt.FormatNumberTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.fmt.MessageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.fmt.ParamTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.fmt.ParseDateTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.fmt.ParseNumberTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.fmt.RequestEncodingTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.fmt.SetBundleTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.fmt.SetLocaleTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.fmt.SetTimeZoneTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.fmt.TimeZoneTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.sql.DateParamTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.sql.ParamTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.sql.QueryTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.sql.SetDataSourceTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.sql.TransactionTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.sql.UpdateTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.xml.ExprTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.xml.ParamTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.xml.ParseTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.el.xml.TransformTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.core.ForEachTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.core.ForTokensTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.core.IfTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.core.ImportTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.core.OutTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.core.ParamTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.core.RedirectTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.core.SetTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.core.UrlTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.core.WhenTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.fmt.BundleTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.fmt.FormatDateTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.fmt.FormatNumberTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.fmt.MessageTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.fmt.ParamTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.fmt.ParseDateTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.fmt.ParseNumberTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.fmt.RequestEncodingTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.fmt.SetBundleTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.fmt.SetLocaleTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.fmt.SetTimeZoneTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.fmt.TimeZoneTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.sql.DateParamTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.sql.ParamTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.sql.QueryTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.sql.SetDataSourceTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.sql.TransactionTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.sql.UpdateTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.xml.ExprTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.xml.ParamTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.xml.ParseTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tag.rt.xml.TransformTag\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tlv.JstlCoreTLV\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tlv.JstlFmtTLV\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tlv.JstlSqlTLV\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".component.\"org.apache.taglibs.standard.tlv.JstlXmlTLV\".START",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".deploymentCompleteService",
    "jboss.deployment.subunit.\"iam_im.ear\".\"user_console.war\".jndiDependencyService",
    "jboss.deployment.subunit.\"iam_im.ear\".\"workflow.rar\".CLEANUP",
    "jboss.deployment.unit.\"iam_im.ear\".CLEANUP",
    "jboss.naming.context.java.module.iam_im.user_console.env.jdbc.objectstore",
    "jboss.undertow.deployment.default-server.default-host./iam/im",
    "jboss.undertow.deployment.default-server.default-host./iam/im.UndertowDeploymentInfoService"
    ],
    "Services that may be the cause:" => [
    "jboss.deployment.subunit.\"iam_im.ear\".\"iam_im_identityminder_ejb.jar\".beanmanager",
    "jboss.deployment.subunit.\"iam_im.ear\".\"iam_im_identityminder_ejb.jar\".deploymentCompleteService",
    "jboss.deployment.subunit.\"iam_im.ear\".\"manage_redirect.war\".deploymentCompleteService",
    "jboss.deployment.subunit.\"iam_im.ear\".\"management_console.war\".deploymentCompleteService",
    "jboss.deployment.subunit.\"iam_im.ear\".\"redirect.war\".deploymentCompleteService",
    "jboss.jdbc-driver.JUNK_DRIVER_NAME_FOR_TEST",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.RuntimeStatusDetailEJB",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.ServerCommandsEJB",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.SubscriberMessageEJB",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.WorkFlowCallBackEJB"
    ]
    }
    }
    2018-07-30 14:56:34,115 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) JBAS014613: Operation ("add") failed - address: ([
    ("subsystem" => "datasources"),
    ("data-source" => "iam_im-imobjectstoredb-ds")
    ]) - failure description: {"JBAS014771: Services with missing/unavailable dependencies" => [
    "jboss.data-source.java:/iam/im/jdbc/jdbc/objectstore is missing [jboss.jdbc-driver.JUNK_DRIVER_NAME_FOR_TEST]",
    "jboss.driver-demander.java:/iam/im/jdbc/jdbc/objectstore is missing [jboss.jdbc-driver.JUNK_DRIVER_NAME_FOR_TEST]"
    ]}
    2018-07-30 14:56:34,127 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) JBAS014613: Operation ("add") failed - address: ([
    ("subsystem" => "datasources"),
    ("data-source" => "iam_im-imobjectstoredb-ds")
    ]) - failure description: {
    "JBAS014771: Services with missing/unavailable dependencies" => [
    "jboss.data-source.java:/iam/im/jdbc/jdbc/objectstore is missing [jboss.jdbc-driver.JUNK_DRIVER_NAME_FOR_TEST]",
    "jboss.driver-demander.java:/iam/im/jdbc/jdbc/objectstore is missing [jboss.jdbc-driver.JUNK_DRIVER_NAME_FOR_TEST]"
    ],
    "JBAS014879: One or more services were unable to start due to one or more indirect dependencies not being available." => {
    "Services that were unable to start:" => [
    "jboss.data-source.reference-factory.iam_im-imobjectstoredb-ds",
    "jboss.naming.context.java.iam.im.jdbc.jdbc.objectstore"
    ],
    "Services that may be the cause:" => [
    "jboss.deployment.subunit.\"iam_im.ear\".\"iam_im_identityminder_ejb.jar\".beanmanager",
    "jboss.deployment.subunit.\"iam_im.ear\".\"iam_im_identityminder_ejb.jar\".deploymentCompleteService",
    "jboss.deployment.subunit.\"iam_im.ear\".\"manage_redirect.war\".deploymentCompleteService",
    "jboss.deployment.subunit.\"iam_im.ear\".\"management_console.war\".deploymentCompleteService",
    "jboss.deployment.subunit.\"iam_im.ear\".\"redirect.war\".deploymentCompleteService",
    "jboss.jdbc-driver.JUNK_DRIVER_NAME_FOR_TEST",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.RuntimeStatusDetailEJB",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.ServerCommandsEJB",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.SubscriberMessageEJB",
    "jboss.naming.context.java.comp.iam_im.iam_im_identityminder_ejb.WorkFlowCallBackEJB"
    ]
    }
    }
    2018-07-30 14:56:34,350 ERROR [org.jboss.as] (Controller Boot Thread) JBAS015875: WildFly 8.2.0.Final "Tweek" started (with errors) in 76854ms - Started 3656 of 4286 services (467 services failed or missing dependencies, 280 services are lazy, passive or on-demand)

     

     

     

     

     

     

     

     

     

     

    Change back to working driver name:

    config@vapp0001 VAPP-14.1.0 (192.168.242.146):/opt/CA/wildfly-idm/standalone/log > /opt/CA/wildfly-idm/bin/jboss-cli.sh --connect --user=jboss-admin --password=Password01! --gui

     

     

     

     

    Cheers,

     

    A.