12 Replies Latest reply on Feb 21, 2013 6:25 AM by poorna.sama

    JBOSS 7.1.1.Final - Server Hanging Issue

    poorna.sama

      Hi,

        I am trying to deploy the war file in Jboss7.1.1.Final application server.The server has hanged.After that it showing the deployment was failed.

        please find the below log for your reference.

       

       

      15:28:40,683 INFO  [org.quartz.simpl.SimpleThreadPool] (MSC service thread 1-4) Job execution threads will use class loader of thread: MSC service thread 1-4

      15:28:40,727 INFO  [org.quartz.core.QuartzScheduler] (MSC service thread 1-4) Quartz Scheduler v.1.5.2 created.

      15:28:40,747 INFO  [org.quartz.simpl.RAMJobStore] (MSC service thread 1-4) RAMJobStore initialized.

      15:28:40,764 INFO  [org.quartz.impl.StdSchedulerFactory] (MSC service thread 1-4) Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'

      15:28:40,783 INFO  [org.quartz.impl.StdSchedulerFactory] (MSC service thread 1-4) Quartz scheduler version: 1.5.2

      15:28:40,824 INFO  [org.quartz.core.QuartzScheduler] (MSC service thread 1-4) Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.

      15:57:21,704 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS015870: Deploy of deployment "fows.war" was rolled back with failure message Operation cancelled

      15:57:21,792 ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015052: Did not receive a response to the deployment operation within the allowed timeout period [1800 seconds]. Check the server configuration file and the server logs to find more about the status of the deployment.

       

           <deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000" deployment-timeout="1800" />

       

      I have tried with the deployment-timeout as 300seconds,900seconds,1200seconds,1800seconds in stand-alone.xml

       

      Workaround1:

            <deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000" deployment-timeout="300" />

      Workaround2:

               <deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000" deployment-timeout="900" />

      Workaround3:

                 <deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000" deployment-timeout="1200" />

      Workaround4:

                   <deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000" deployment-timeout="1800" />

       

      But same issue and every time log is same.There is no difference in the log.

       

      Could you please let me know if you need any more info.Let me know how to resolve this issue.

       

      Thanks,

      Poorna

        • 1. Re: JBOSS 7.1.1.Final - Server Hanging Issue
          nickarls

          Does your code have any resource references in @PostConstruct methods that could cause a deadlock?

          What does a jstack dump show when it hangs?

          • 2. Re: JBOSS 7.1.1.Final - Server Hanging Issue
            poorna.sama

            Hi Nicklas,

               Thanks for the reply.

             

            In my application i am having the web.xml like mentioned below.

                    <context-param>
                              <param-name>contextConfigLocation</param-name>
                              <param-value>
                               
                WEB-INF/classes/abcdef-summary-service-context.xml,
                               
                     </param-value>
            </context-param>

             

            Sometimes

             

            abcdef-summary-service-context.xml is loading and log is like below.

             

            11:26:29,394 INFO  [org.quartz.simpl.SimpleThreadPool] (MSC service thread 1-3) Job execution threads will use class loader of thread: MSC service thread 1-3
            11:26:29,428 INFO  [org.quartz.core.QuartzScheduler] (MSC service thread 1-3) Quartz Scheduler v.1.5.2 created.
            11:26:29,446 INFO  [org.quartz.simpl.RAMJobStore] (MSC service thread 1-3) RAMJobStore initialized.
            11:26:29,467 INFO  [org.quartz.impl.StdSchedulerFactory] (MSC service thread 1-3) Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
            11:26:29,486 INFO  [org.quartz.impl.StdSchedulerFactory] (MSC service thread 1-3) Quartz scheduler version: 1.5.2
            11:26:29,520 INFO  [org.quartz.core.QuartzScheduler] (MSC service thread 1-3) Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
            11:53:00,836 INFO  [stdout] (MSC service thread 1-3) setParameterDao: com.abcdmailto:com.abcd.efgh.fo.dao.ParameterHibernateDao@ca99c9.efgh.fo.dao.ParameterHibernateDao@ca99c9

            11:53:03,210 INFO  [org.springframework.web.context.ContextLoader] (MSC service thread 1-3) Root WebApplicationContext: initialization completed in 1619542 ms
            11:53:05,010 INFO  [javax.enterprise.resource.webcontainer.jsf.config] (MSC service thread 1-3) Initializing Mojarra 2.1.7-jbossorg-1 (20120227-1401) for context '/fows'
            11:53:10,687 INFO  [com.icesoft.faces.application.ViewRootStateManagerImpl] (MSC service thread 1-3) ViewRootStateManagerImpl constructed with Delegate: com.sun.faces.application.StateManagerImpl@1c3590e
            11:53:11,308 INFO  [org.hibernate.validator.util.Version] (MSC service thread 1-3) Hibernate Validator 4.2.0.Final
            11:53:11,687 INFO  [com.icesoft.faces.application.D2DViewHandler] (MSC service thread 1-3)
            ICEsoft Technologies, Inc.
            ICEfaces 1.8.2
            Build number: 7
            Revision: 19321

             

            And some times as mentioned above i am getting the exception.

            Please let me know how to resolve this issue.

             

            Thanks,

            Poorna.

             

            • 3. Re: JBOSS 7.1.1.Final - Server Hanging Issue
              nickarls

              Which  version of spring do you use?

              • 4. Re: JBOSS 7.1.1.Final - Server Hanging Issue
                poorna.sama

                Hi Nicklas,

                 

                  Thanks for the reply.

                 

                  Spring version="3.0.3.RELEASE".

                  

                 

                 

                Thanks,

                Poorna

                • 5. Re: JBOSS 7.1.1.Final - Server Hanging Issue
                  sfcoy

                  As Nicklas said, you need to provide a thread dump in order for someone to be able to assist with this.

                   

                  You can use jstack for this.

                  • 6. Re: JBOSS 7.1.1.Final - Server Hanging Issue
                    poorna.sama

                    Hi Stephen,

                       Thanks for the reply.

                     

                    Here i am attaching the full ThreadDump.

                     

                    D:\Softwares\jdk1.6.0_21\bin>jps.exe -v   (command to find out the process id)
                    4944 Jps -Dapplication.home=D:\Softwares\jdk1.6.0_21 -Xms8m
                    4592  -Dosgi.requiredJavaVersion=1.5 -Xms40m -Xmx512m -XX:MaxPermSize=256m

                     

                    D:\Softwares\jdk1.6.0_21\bin>jstack -l 4592 (Passing Process ID to jstack utility)
                    2013-02-04 18:56:09
                    Full thread dump Java HotSpot(TM) Client VM (17.1-b03 mixed mode, sharing):

                    "Worker-26" prio=6 tid=0x05642000 nid=0x1298 in Object.wait() [0x3eb4f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-25" prio=6 tid=0x0741d400 nid=0xd30 in Object.wait() [0x3ea4f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-24" prio=6 tid=0x0741cc00 nid=0x17ec in Object.wait() [0x3e94f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-23" prio=6 tid=0x0741c800 nid=0x1618 in Object.wait() [0x3e84f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-22" prio=6 tid=0x0741c000 nid=0x1770 in Object.wait() [0x3e74f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-21" prio=6 tid=0x0741b800 nid=0x12f8 in Object.wait() [0x3e64f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-20" prio=6 tid=0x0741b400 nid=0x2f0 in Object.wait() [0x3e54f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-19" prio=6 tid=0x0741ac00 nid=0x1220 in Object.wait() [0x3e44f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-18" prio=6 tid=0x0741a800 nid=0x1620 in Object.wait() [0x3e34f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-17" prio=6 tid=0x0741a000 nid=0x13c8 in Object.wait() [0x3e24f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-16" prio=6 tid=0x07419c00 nid=0xff0 in Object.wait() [0x3e14f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-15" prio=6 tid=0x06d4c800 nid=0xc80 in Object.wait() [0x3e04f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-14" prio=6 tid=0x06d4c400 nid=0x54c in Object.wait() [0x3df4f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-13" prio=6 tid=0x06d4b000 nid=0x1798 in Object.wait() [0x3dc4f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-12" prio=6 tid=0x06d4bc00 nid=0x120 in Object.wait() [0x3db4f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-11" prio=6 tid=0x06d4b800 nid=0x1094 in Object.wait() [0x3da4f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "org.eclipse.jface.text.reconciler.MonoReconciler" daemon prio=2 tid=0x06d49800 nid=0x1570 in Object.wait() [0x3d94f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:179)
                            - locked <0x099f0618> (a org.eclipse.jface.text.reconciler.DirtyRegionQueue)

                       Locked ownable synchronizers:
                            - None

                    "Worker-10" prio=6 tid=0x06d4ac00 nid=0x15c4 in Object.wait() [0x3d2bf000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-9" prio=6 tid=0x06d4a000 nid=0x1230 in Object.wait() [0x3c68f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "JavaScript indexing" daemon prio=4 tid=0x070a5800 nid=0x1424 in Object.wait() [0x3a31f000]
                       java.lang.Thread.State: WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            - waiting on <0x13a9ccb0> (a org.eclipse.wst.jsdt.internal.core.search.indexing.IndexManager)
                            at java.lang.Object.wait(Object.java:485)
                            at org.eclipse.wst.jsdt.internal.core.search.processing.JobManager.run(JobManager.java:370)
                            - locked <0x13a9ccb0> (a org.eclipse.wst.jsdt.internal.core.search.indexing.IndexManager)
                            at java.lang.Thread.run(Unknown Source)

                       Locked ownable synchronizers:
                            - None

                    "[ThreadPool Manager] - Idle Thread" daemon prio=6 tid=0x070a2800 nid=0x153c in Object.wait() [0x3a21f000]
                       java.lang.Thread.State: WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at java.lang.Object.wait(Object.java:485)
                            at org.eclipse.equinox.internal.util.impl.tpt.threadpool.Executor.run(Executor.java:106)
                            - locked <0x13aa42e0> (a org.eclipse.equinox.internal.util.impl.tpt.threadpool.Executor)

                       Locked ownable synchronizers:
                            - None

                    "Worker-8" prio=6 tid=0x070a5400 nid=0x16ec in Object.wait() [0x3a11f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-7" prio=6 tid=0x070a4c00 nid=0x1708 in Object.wait() [0x3a01f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-6" prio=6 tid=0x070a4800 nid=0x47c waiting on condition [0x39f1f000]
                       java.lang.Thread.State: WAITING (parking)
                            at sun.misc.Unsafe.park(Native Method)
                            - parking to wait for  <0x1396b868> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
                            at java.util.concurrent.locks.LockSupport.park(Unknown Source)
                            at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(Unknown Source)
                            at java.util.concurrent.LinkedBlockingQueue.take(Unknown Source)
                            at org.eclipse.epp.usagedata.internal.gathering.services.UsageDataService.getQueuedEvent(UsageDataService.java:222)
                            at org.eclipse.epp.usagedata.internal.gathering.services.UsageDataService.access$0(UsageDataService.java:220)
                            at org.eclipse.epp.usagedata.internal.gathering.services.UsageDataService$1.run(UsageDataService.java:155)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)

                       Locked ownable synchronizers:
                            - None

                    "Worker-5" prio=6 tid=0x070a4000 nid=0x3b8 in Object.wait() [0x39e1f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-4" prio=6 tid=0x070a3c00 nid=0xc60 in Object.wait() [0x39d1f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-3" prio=6 tid=0x070a3400 nid=0x12b8 in Object.wait() [0x06a7f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-2" prio=6 tid=0x070a3000 nid=0xc08 in Object.wait() [0x0697f000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Bundle File Closer" daemon prio=6 tid=0x06d47000 nid=0xa0 in Object.wait() [0x0790f000]
                       java.lang.Thread.State: WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at java.lang.Object.wait(Object.java:485)
                            at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.getNextEvent(EventManager.java:397)
                            - locked <0x134bc8d0> (a org.eclipse.osgi.framework.eventmgr.EventManager$EventThread)
                            at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:333)

                       Locked ownable synchronizers:
                            - None

                    "Java indexing" daemon prio=4 tid=0x06241000 nid=0xfc4 in Object.wait() [0x0780f000]
                       java.lang.Thread.State: WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            - waiting on <0x134cb368> (a org.eclipse.jdt.internal.core.search.indexing.IndexManager)
                            at java.lang.Object.wait(Object.java:485)
                            at org.eclipse.jdt.internal.core.search.processing.JobManager.run(JobManager.java:381)
                            - locked <0x134cb368> (a org.eclipse.jdt.internal.core.search.indexing.IndexManager)
                            at java.lang.Thread.run(Unknown Source)

                       Locked ownable synchronizers:
                            - None

                    "Worker-1" prio=6 tid=0x06d8d400 nid=0x134 in Object.wait() [0x076cf000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:185)
                            - locked <0x127b6e48> (a org.eclipse.core.internal.jobs.WorkerPool)
                            at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:217)
                            at org.eclipse.core.internal.jobs.Worker.run(Worker.java:50)

                       Locked ownable synchronizers:
                            - None

                    "Worker-JM" prio=6 tid=0x0566d400 nid=0x158c in Object.wait() [0x05fcf000]
                       java.lang.Thread.State: WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.core.internal.jobs.InternalWorker.run(InternalWorker.java:58)
                            - locked <0x12785298> (a java.util.ArrayList)

                       Locked ownable synchronizers:
                            - None

                    "[Timer] - Main Queue Handler" daemon prio=6 tid=0x05670400 nid=0x4fc in Object.wait() [0x05ecf000]
                       java.lang.Thread.State: TIMED_WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at org.eclipse.equinox.internal.util.impl.tpt.timer.TimerImpl.run(TimerImpl.java:141)
                            - locked <0x12785320> (a java.lang.Object)
                            at java.lang.Thread.run(Unknown Source)

                       Locked ownable synchronizers:
                            - None

                    "Framework Event Dispatcher" daemon prio=6 tid=0x0559d800 nid=0x1338 in Object.wait() [0x05ccf000]
                       java.lang.Thread.State: WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            - waiting on <0x12785388> (a org.eclipse.osgi.framework.eventmgr.EventManager$EventThread)
                            at java.lang.Object.wait(Object.java:485)
                            at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.getNextEvent(EventManager.java:397)
                            - locked <0x12785388> (a org.eclipse.osgi.framework.eventmgr.EventManager$EventThread)
                            at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:333)

                       Locked ownable synchronizers:
                            - None

                    "Start Level Event Dispatcher" daemon prio=6 tid=0x0559d000 nid=0x42c in Object.wait() [0x05bcf000]
                       java.lang.Thread.State: WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            - waiting on <0x12641848> (a org.eclipse.osgi.framework.eventmgr.EventManager$EventThread)
                            at java.lang.Object.wait(Object.java:485)
                            at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.getNextEvent(EventManager.java:397)
                            - locked <0x12641848> (a org.eclipse.osgi.framework.eventmgr.EventManager$EventThread)
                            at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:333)

                       Locked ownable synchronizers:
                            - None

                    "State Data Manager" daemon prio=6 tid=0x05634800 nid=0x1720 waiting on condition [0x05a2f000]
                       java.lang.Thread.State: TIMED_WAITING (sleeping)
                            at java.lang.Thread.sleep(Native Method)
                            at org.eclipse.osgi.internal.baseadaptor.StateManager.run(StateManager.java:319)
                            at java.lang.Thread.run(Unknown Source)

                       Locked ownable synchronizers:
                            - None

                    "Low Memory Detector" daemon prio=6 tid=0x0204bc00 nid=0x1560 runnable [0x00000000]
                       java.lang.Thread.State: RUNNABLE

                       Locked ownable synchronizers:
                            - None

                    "CompilerThread0" daemon prio=10 tid=0x0203ec00 nid=0x1340 waiting on condition [0x00000000]
                       java.lang.Thread.State: RUNNABLE

                       Locked ownable synchronizers:
                            - None

                    "Attach Listener" daemon prio=10 tid=0x0203bc00 nid=0x1140 waiting on condition [0x00000000]
                       java.lang.Thread.State: RUNNABLE

                       Locked ownable synchronizers:
                            - None

                    "Signal Dispatcher" daemon prio=10 tid=0x02038c00 nid=0x404 runnable [0x00000000]
                       java.lang.Thread.State: RUNNABLE

                       Locked ownable synchronizers:
                            - None

                    "Finalizer" daemon prio=8 tid=0x02035800 nid=0xc5c in Object.wait() [0x04b6f000]
                       java.lang.Thread.State: WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at java.lang.ref.ReferenceQueue.remove(Unknown Source)
                            - locked <0x124e02b0> (a java.lang.ref.ReferenceQueue$Lock)
                            at java.lang.ref.ReferenceQueue.remove(Unknown Source)
                            at java.lang.ref.Finalizer$FinalizerThread.run(Unknown Source)

                       Locked ownable synchronizers:
                            - None

                    "Reference Handler" daemon prio=10 tid=0x02030c00 nid=0x584 in Object.wait() [0x04a6f000]
                       java.lang.Thread.State: WAITING (on object monitor)
                            at java.lang.Object.wait(Native Method)
                            at java.lang.Object.wait(Object.java:485)
                            at java.lang.ref.Reference$ReferenceHandler.run(Unknown Source)
                            - locked <0x124e0340> (a java.lang.ref.Reference$Lock)

                       Locked ownable synchronizers:
                            - None

                    "main" prio=6 tid=0x02649400 nid=0x167c runnable [0x0012f000]
                       java.lang.Thread.State: RUNNABLE
                            at org.eclipse.swt.internal.win32.OS.WaitMessage(Native Method)
                            at org.eclipse.swt.widgets.Display.sleep(Display.java:4553)
                            at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:364)
                            at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.eventLoopIdle(IDEWorkbenchAdvisor.java:887)
                            at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2641)
                            at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2604)
                            at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438)
                            at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671)
                            at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
                            at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)
                            at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
                            at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115)
                            at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
                            at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
                            at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
                            at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
                            at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
                            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                            at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
                            at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                            at java.lang.reflect.Method.invoke(Unknown Source)
                            at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:620)
                            at org.eclipse.equinox.launcher.Main.basicRun(Main.java:575)
                            at org.eclipse.equinox.launcher.Main.run(Main.java:1408)

                       Locked ownable synchronizers:
                            - None

                    "VM Thread" prio=10 tid=0x0202f400 nid=0x1260 runnable

                    "VM Periodic Task Thread" prio=10 tid=0x02055400 nid=0x13f4 waiting on condition

                    JNI global references: 1218


                    D:\Softwares\jdk1.6.0_21\bin>

                     

                    Could you please check it once and let me know if you need any more info.

                     

                    Your help will be appreciated.Thanks for your time.

                     

                     

                    Thanks,

                    Poorna

                    • 7. Re: JBOSS 7.1.1.Final - Server Hanging Issue
                      sfcoy

                      This is a stack dump from your Eclipse IDE...

                      • 8. Re: JBOSS 7.1.1.Final - Server Hanging Issue
                        poorna.sama

                        Hi Stephan,

                           Thanks for the reply.

                           The above ThreadDump is created by using jstack.

                           Here i am attaching the stack dump from my Eclipse IDE.

                          

                        15:27:18,537 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 38) JBAS011800: Activating Naming Subsystem
                        15:27:18,555 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 31) JBAS010280: Activating Infinispan subsystem.
                        15:27:18,552 INFO  [org.jboss.as.osgi] (ServerService Thread Pool -- 39) JBAS011940: Activating OSGi Subsystem
                        15:27:18,547 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 48) JBAS015537: Activating WebServices Extension
                        15:27:18,542 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 44) JBAS013101: Activating Security Subsystem
                        15:27:18,861 INFO  [org.jboss.as.security] (MSC service thread 1-4) JBAS013100: Current PicketBox version=4.0.7.Final
                        15:27:19,782 INFO  [org.jboss.as.naming] (MSC service thread 1-4) JBAS011802: Starting Naming Service
                        15:27:19,844 INFO  [org.jboss.as.connector] (MSC service thread 1-4) JBAS010408: Starting JCA Subsystem (JBoss IronJacamar 1.0.9.Final)
                        15:27:19,931 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 27) JBAS010403: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)
                        15:27:20,021 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-4) JBAS015400: Bound mail session [java:jboss/mail/Default]
                        15:27:20,625 INFO  [org.apache.coyote.http11.Http11Protocol] (MSC service thread 1-4) Starting Coyote HTTP/1.1 on http--127.0.0.1-8080
                        15:27:20,953 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 27) JBAS010403: Deploying JDBC-compliant driver class oracle.jdbc.driver.OracleDriver (version 11.2)
                        15:27:21,016 INFO  [org.jboss.ws.common.management.AbstractServerConfig] (MSC service thread 1-1) JBoss Web Services - Stack CXF Server 4.0.2.GA
                        15:27:21,426 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-4) JBAS010400: Bound data source [java:jboss/datasources/changeDS]
                        15:27:21,428 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-1) JBAS010400: Bound data source [java:jboss/datasources/dhangeDS]
                        15:27:21,427 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) JBAS010400: Bound data source [java:jboss/datasources/ehangeDS]
                        15:27:21,522 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-2) JBAS015012: Started FileSystemDeploymentService for directory D:\jboss-as-7.1.1.Final\standalone\deployments
                        15:27:21,546 INFO  [org.jboss.as.remoting] (MSC service thread 1-1) JBAS017100: Listening on /127.0.0.1:9999
                        15:27:21,554 INFO  [org.jboss.as.remoting] (MSC service thread 1-1) JBAS017100: Listening on /127.0.0.1:4447
                        15:27:21,908 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Starting deployment of "pot.war"
                        15:27:59,732 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry jaxb-api.jar in "/D:/jboss-as-7.1.1.Final/bin/content/pot.war/WEB-INF/lib/jaxb-impl-2.1.12.jar"  does not point to a valid jar for a Class-Path reference.
                        15:27:59,734 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry activation.jar in "/D:/jboss-as-7.1.1.Final/bin/content/pot.war/WEB-INF/lib/jaxb-impl-2.1.12.jar"  does not point to a valid jar for a Class-Path reference.
                        15:27:59,735 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry jsr173_1.0_api.jar in "/D:/jboss-as-7.1.1.Final/bin/content/pot.war/WEB-INF/lib/jaxb-impl-2.1.12.jar"  does not point to a valid jar for a Class-Path reference.
                        15:27:59,737 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry jaxb1-impl.jar in "/D:/jboss-as-7.1.1.Final/bin/content/pot.war/WEB-INF/lib/jaxb-impl-2.1.12.jar"  does not point to a valid jar for a Class-Path reference.
                        15:27:59,751 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry saaj-api.jar in "/D:/jboss-as-7.1.1.Final/bin/content/pot.war/WEB-INF/lib/saaj-impl-1.3.2.jar"  does not point to a valid jar for a Class-Path reference.
                        15:27:59,753 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry activation.jar in "/D:/jboss-as-7.1.1.Final/bin/content/pot.war/WEB-INF/lib/saaj-impl-1.3.2.jar"  does not point to a valid jar for a Class-Path reference.
                        15:27:59,755 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry xml-apis.jar in "/D:/jboss-as-7.1.1.Final/bin/content/pot.war/WEB-INF/lib/serializer-2.7.1.jar"  does not point to a valid jar for a Class-Path reference.
                        15:27:59,758 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry xercesImpl.jar in "/D:/jboss-as-7.1.1.Final/bin/content/pot.war/WEB-INF/lib/xalan-2.7.1.jar"  does not point to a valid jar for a Class-Path reference.
                        15:27:59,759 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry xml-apis.jar in "/D:/jboss-as-7.1.1.Final/bin/content/pot.war/WEB-INF/lib/xalan-2.7.1.jar"  does not point to a valid jar for a Class-Path reference.
                        15:27:59,761 WARN  [org.jboss.as.server.deployment] (MSC service thread 1-4) Class Path entry serializer.jar in "/D:/jboss-as-7.1.1.Final/bin/content/pot.war/WEB-INF/lib/xalan-2.7.1.jar"  does not point to a valid jar for a Class-Path reference.
                        15:28:01,370 INFO  [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-1) Add Service
                        id=com.spar.pot.fo.normal.ppl.ws.PPlServiceImpl
                        address=http://localhost:8080/pot/PPlService
                        implementor=com.spar.pot.fo.normal.ppl.ws.PPlServiceImpl
                        invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker
                        serviceName={http://ws.ppl.normal.fo.pot.spar.com/PPlService/}PPlService
                        portName={http://ws.ppl.normal.fo.pot.spar.com/PPlService/}PPlServiceImplPort
                        wsdlLocation=null
                        mtomEnabled=false
                        15:28:01,374 INFO  [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-1) Add Service
                        id=com.spar.pot.fo.normal.ws.NormalPyAServiceImpl
                        address=http://localhost:8080/pot/NormalPyAService
                        implementor=com.spar.pot.fo.normal.ws.NormalPyAServiceImpl
                        invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker
                        serviceName={http://ws.normal.fo.pot.spar.com/NormalPyAService/}NormalPyAService
                        portName={http://ws.normal.fo.pot.spar.com/NormalPyAService/}NormalPyAServiceImplPort
                        wsdlLocation=null
                        mtomEnabled=false
                        15:28:01,383 INFO  [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-1) Add Service
                        id=com.spar.pot.fo.ws.alog.ALogWebServiceImpl
                        address=http://localhost:8080/pot/IALog
                        implementor=com.spar.pot.fo.ws.alog.ALogWebServiceImpl
                        invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker
                        serviceName={http://ws.fo.pot.spar.com/IALog/}IALog
                        portName={http://ws.fo.pot.spar.com/IALog/}ALogWebServiceImplPort
                        wsdlLocation=null
                        mtomEnabled=false
                        15:28:01,387 INFO  [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-1) Add Service
                        id=com.spar.pot.fo.ws.CAssessmentServiceImpl
                        address=http://localhost:8080/pot/CAssessment
                        implementor=com.spar.pot.fo.ws.CAssessmentServiceImpl
                        invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker
                        serviceName={http://ws.fo.pot.spar.com/}CAssessment
                        portName={http://ws.fo.pot.spar.com/}CAssessmentServiceImplPort
                        wsdlLocation=null
                        mtomEnabled=false
                        15:28:01,391 INFO  [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-1) Add Service
                        id=com.spar.pot.fo.ws.CxfEchoImpl
                        address=http://localhost:8080/pot/CxfEchoImpl
                        implementor=com.spar.pot.fo.ws.CxfEchoImpl
                        invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker
                        serviceName={http://ws.fo.pot.spar.com/}CxfEchoImplService
                        portName={http://ws.fo.pot.spar.com/}CxfEchoImplPort
                        wsdlLocation=null
                        mtomEnabled=false
                        -- Done
                        15:28:01,395 INFO  [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-1) Add Service
                        id=com.spar.pot.fo.ws.dmgmt.DocumentManagementImpl
                        address=http://localhost:8080/pot/DocumentManagement
                        implementor=com.spar.pot.fo.ws.dmgmt.DocumentManagementImpl
                        invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker
                        serviceName={urn:docmgmt.ws.fo.pot.spar.com}DocumentManagement
                        portName={urn:docmgmt.ws.fo.pot.spar.com}DocumentManagementImplPort
                        wsdlLocation=null
                        mtomEnabled=false
                        15:28:01,399 INFO  [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-1) Add Service
                        id=com.spar.pot.fo.ws.locationvalues.AdjustedLocationValuesImpl
                        address=http://localhost:8080/pot/AdjustedLocationValues
                        implementor=com.spar.pot.fo.ws.locationvalues.AdjustedLocationValuesImpl
                        invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker
                        serviceName={http://ws.fo.pot.spar.com/AdjustedLocationValues/}AdjustedLocationValues
                        portName={http://ws.fo.pot.spar.com/AdjustedLocationValues/}AdjustedLocationValuesImplPort
                        wsdlLocation=null
                        mtomEnabled=false
                        15:28:01,405 INFO  [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-1) Add Service
                        id=com.spar.pot.fo.ws.lvids.lvidsImpl
                        address=http://localhost:8080/pot/LVIds
                        implementor=com.spar.pot.fo.ws.lvids.lvidsImpl
                        invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker
                        serviceName={http://ws.fo.pot.spar.com/LVIds}LVIds
                        portName={http://ws.fo.pot.spar.com/LVIds}LVIdsImplPort
                        wsdlLocation=null
                        mtomEnabled=false
                        15:28:01,411 INFO  [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-1) Add Service
                        id=com.spar.pot.fo.ws.NameServiceImpl
                        address=http://localhost:8080/pot/NameService
                        implementor=com.spar.pot.fo.ws.NameServiceImpl
                        invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker
                        serviceName={http://ws.fo.pot.spar.com/}NameService
                        portName={http://ws.fo.pot.spar.com/}NameServiceImplPort
                        wsdlLocation=null
                        mtomEnabled=false
                        15:28:01,415 INFO  [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-1) Add Service
                        id=com.spar.pot.fo.ws.patches.PatchServiceImpl
                        address=http://localhost:8080/pot/PatchServiceImpl
                        implementor=com.spar.pot.fo.ws.patches.PatchServiceImpl
                        invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker
                        serviceName={http://ws.fo.pot.spar.com/PatchService/}PatchServiceImplService
                        portName={http://ws.fo.pot.spar.com/PatchService/}PatchServicePort
                        wsdlLocation=null
                        mtomEnabled=false
                        15:28:01,420 INFO  [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-1) Add Service
                        id=com.spar.pot.fo.ws.programsummary.ProgramSummaryDataImpl
                        address=http://localhost:8080/pot/ProgramSummaryData
                        implementor=com.spar.pot.fo.ws.programsummary.ProgramSummaryDataImpl
                        invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker
                        serviceName={http://ws.fo.pot.spar.com/ProgramSummaryData/}ProgramSummaryData
                        portName={http://ws.fo.pot.spar.com/ProgramSummaryData/}ProgramSummaryDataImplPort
                        wsdlLocation=null
                        mtomEnabled=false
                        15:28:01,423 INFO  [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-1) Add Service
                        id=com.spar.pot.fo.ws.UpdateServicesImpl
                        address=http://localhost:8080/pot/UpdateServicesImpl
                        implementor=com.spar.pot.fo.ws.UpdateServicesImpl
                        invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker
                        serviceName={http://ws.fo.pot.spar.com/}UpdateServicesImplService
                        portName={http://ws.fo.pot.spar.com/}UpdateServicesPort
                        wsdlLocation=null
                        mtomEnabled=false
                        15:28:01,428 INFO  [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-1) Add Service
                        id=com.spar.pot.fo.ws.updatestatus.UpdateFOStatusImpl
                        address=http://localhost:8080/pot/UpdateFOStatus
                        implementor=com.spar.pot.fo.ws.updatestatus.UpdateFOStatusImpl
                        invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker
                        serviceName={http://ws.fo.pot.spar.com/UpdateFOStatus/}UpdateFOStatus
                        portName={http://ws.fo.pot.spar.com/UpdateFOStatus/}UpdateFOStatusImplPort
                        wsdlLocation=null
                        mtomEnabled=false
                        15:28:01,432 INFO  [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-1) Add Service
                        id=com.spar.pot.fo.ws.userdetails.UserProfileServiceImpl
                        address=http://localhost:8080/pot/UserProfileService
                        implementor=com.spar.pot.fo.ws.userdetails.UserProfileServiceImpl
                        invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker
                        serviceName={http://userdetails.ws.fo.pot.spar.com/}UserProfileService
                        portName={http://userdetails.ws.fo.pot.spar.com/}UserProfileServiceImplPort
                        wsdlLocation=null
                        mtomEnabled=false
                        15:28:01,435 INFO  [org.jboss.wsf.stack.cxf.metadata.MetadataBuilder] (MSC service thread 1-1) Add Service
                        id=com.spar.pot.fo.ws.xrates.CurrentXRateImpl
                        address=http://localhost:8080/pot/CurrentXRate
                        implementor=com.spar.pot.fo.ws.xrates.CurrentXRateImpl
                        invoker=org.jboss.wsf.stack.cxf.JBossWSInvoker
                        serviceName={http://ws.fo.pot.spar.com/CurrentXRate/}CurrentXRate
                        portName={http://ws.fo.pot.spar.com/CurrentXRate/}CurrentXRateImplPort
                        wsdlLocation=null
                        mtomEnabled=false
                        15:28:03,076 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://ws.ppl.normal.fo.pot.spar.com/PPlService/}PPlService from class com.spar.pot.fo.normal.ppl.ws.pplService
                        15:28:07,365 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/pot/PPlService
                        15:28:08,639 INFO  [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-1) WSDL published to: file:/D:/jboss-as-7.1.1.Final/standalone/data/wsdl/pot.war/PPlService.wsdl
                        15:28:08,733 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://ws.normal.fo.pot.spar.com/NormalPyAService/}NormalPyAService from class com.spar.pot.fo.normal.ws.normalPolicyAdminService
                        15:28:08,755 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/pot/NormalPyAService
                        15:28:08,796 INFO  [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-1) WSDL published to: file:/D:/jboss-as-7.1.1.Final/standalone/data/wsdl/pot.war/NormalPyAService.wsdl
                        15:28:08,798 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://ws.fo.pot.spar.com/IALog/}IALog from class com.spar.pot.fo.ws.auditlog.AuditLogWebService
                        15:28:08,871 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/pot/IALog
                        15:28:08,891 INFO  [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-1) WSDL published to: file:/D:/jboss-as-7.1.1.Final/standalone/data/wsdl/pot.war/IALog.wsdl
                        15:28:08,893 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://ws.fo.pot.spar.com/}CAssessment from class com.spar.pot.fo.ws.CoverageAssessmentService
                        15:28:10,137 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/pot/CAssessment
                        15:28:10,168 INFO  [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-1) WSDL published to: file:/D:/jboss-as-7.1.1.Final/standalone/data/wsdl/pot.war/CAssessment.wsdl
                        15:28:10,278 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://ws.fo.pot.spar.com/}CxfEchoImplService from class com.spar.pot.fo.ws.ICxfEcho
                        15:28:10,288 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/pot/CxfEchoImpl
                        15:28:10,320 INFO  [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-1) WSDL published to: file:/D:/jboss-as-7.1.1.Final/standalone/data/wsdl/pot.war/CxfEchoImplService.wsdl
                        15:28:10,326 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {urn:docmgmt.ws.fo.pot.spar.com}DocumentManagement from class com.spar.pot.fo.ws.dmgmt.DocumentManagement
                        15:28:10,352 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/pot/DocumentManagement
                        15:28:10,363 INFO  [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-1) WSDL published to: file:/D:/jboss-as-7.1.1.Final/standalone/data/wsdl/pot.war/DocumentManagement.wsdl
                        15:28:10,366 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://ws.fo.pot.spar.com/AdjustedLocationValues/}AdjustedLocationValues from class com.spar.pot.fo.ws.locationvalues.AdjustedLocationValues
                        15:28:10,409 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/pot/AdjustedLocationValues
                        15:28:10,695 INFO  [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-1) WSDL published to: file:/D:/jboss-as-7.1.1.Final/standalone/data/wsdl/pot.war/AdjustedLocationValues.wsdl
                        15:28:10,697 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://ws.fo.pot.spar.com/LVIds}LVIds from class com.spar.pot.fo.ws.lvids.lvids
                        15:28:10,706 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/pot/LVIds
                        15:28:10,745 INFO  [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-1) WSDL published to: file:/D:/jboss-as-7.1.1.Final/standalone/data/wsdl/pot.war/LVIds.wsdl
                        15:28:10,747 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://ws.fo.pot.spar.com/}NameService from class com.spar.pot.fo.ws.NameService
                        15:28:11,885 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/pot/NameService
                        15:28:11,891 INFO  [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-1) WSDL published to: file:/D:/jboss-as-7.1.1.Final/standalone/data/wsdl/pot.war/NameService.wsdl
                        15:28:11,921 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://ws.fo.pot.spar.com/PatchService/}PatchServiceImplService from class com.spar.pot.fo.ws.patches.PatchService
                        15:28:11,931 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/pot/PatchServiceImpl
                        15:28:11,939 INFO  [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-1) WSDL published to: file:/D:/jboss-as-7.1.1.Final/standalone/data/wsdl/pot.war/PatchServiceImplService.wsdl
                        15:28:11,941 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://ws.fo.pot.spar.com/ProgramSummaryData/}ProgramSummaryData from class com.spar.pot.fo.ws.programsummary.ProgramSummaryData
                        15:28:11,961 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/pot/ProgramSummaryData
                        15:28:11,969 INFO  [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-1) WSDL published to: file:/D:/jboss-as-7.1.1.Final/standalone/data/wsdl/pot.war/ProgramSummaryData.wsdl
                        15:28:11,971 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://ws.fo.pot.spar.com/}UpdateServicesImplService from class com.spar.pot.fo.ws.UpdateServices
                        15:28:11,989 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/pot/UpdateServicesImpl
                        15:28:12,011 INFO  [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-1) WSDL published to: file:/D:/jboss-as-7.1.1.Final/standalone/data/wsdl/pot.war/UpdateServicesImplService.wsdl
                        15:28:12,020 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://ws.fo.pot.spar.com/UpdateFOStatus/}UpdateFOStatus from class com.spar.pot.fo.ws.updatestatus.UpdateFOStatus
                        15:28:12,051 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/pot/UpdateFOStatus
                        15:28:12,060 INFO  [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-1) WSDL published to: file:/D:/jboss-as-7.1.1.Final/standalone/data/wsdl/pot.war/UpdateFOStatus.wsdl
                        15:28:12,063 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://userdetails.ws.fo.pot.spar.com/}UserProfileService from class com.spar.pot.fo.ws.userdetails.IUserProfileService
                        15:28:12,092 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/pot/UserProfileService
                        15:28:12,098 INFO  [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-1) WSDL published to: file:/D:/jboss-as-7.1.1.Final/standalone/data/wsdl/pot.war/UserProfileService.wsdl
                        15:28:12,106 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-1) Creating Service {http://ws.fo.pot.spar.com/CurrentXRate/}CurrentXRate from class com.spar.pot.fo.ws.xrates.CurrentXRate
                        15:28:12,117 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-1) Setting the server's publish address to be http://localhost:8080/pot/CurrentXRate
                        15:28:12,127 INFO  [org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher] (MSC service thread 1-1) WSDL published to: file:/D:/jboss-as-7.1.1.Final/standalone/data/wsdl/pot.war/CurrentXRate.wsdl
                        15:28:12,131 INFO  [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.port-component-link
                        15:28:12,324 INFO  [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."pot.war"."com.spar.pot.fo.ws.NameServiceImpl"
                        15:28:12,324 INFO  [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."pot.war"."com.spar.pot.fo.ws.userdetails.UserProfileServiceImpl"
                        15:28:12,326 INFO  [org.jboss.as.webservices] (MSC service thread 1-4) JBAS015539: Starting service jboss.ws.endpoint."pot.war"."com.spar.pot.fo.ws.updatestatus.UpdateFOStatusImpl"
                        15:28:12,327 INFO  [org.jboss.as.webservices] (MSC service thread 1-3) JBAS015539: Starting service jboss.ws.endpoint."pot.war"."com.spar.pot.fo.ws.xrates.CurrentXRateImpl"
                        15:28:12,330 INFO  [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-2) register: jboss.ws:context=pot,endpoint=com.spar.pot.fo.ws.userdetails.UserProfileServiceImpl
                        15:28:12,331 INFO  [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-4) register: jboss.ws:context=pot,endpoint=com.spar.pot.fo.ws.updatestatus.UpdateFOStatusImpl
                        15:28:12,330 INFO  [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-1) register: jboss.ws:context=pot,endpoint=com.spar.pot.fo.ws.NameServiceImpl
                        15:28:12,335 INFO  [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."pot.war"."com.spar.pot.fo.ws.programsummary.ProgramSummaryDataImpl"
                        15:28:12,332 INFO  [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-3) register: jboss.ws:context=pot,endpoint=com.spar.pot.fo.ws.xrates.CurrentXRateImpl
                        15:28:12,338 INFO  [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-2) register: jboss.ws:context=pot,endpoint=com.spar.pot.fo.ws.programsummary.ProgramSummaryDataImpl
                        15:28:12,336 INFO  [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."pot.war"."com.spar.pot.fo.ws.dmgmt.DocumentManagementImpl"
                        15:28:12,340 INFO  [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."pot.war"."com.spar.pot.fo.ws.CoverageAssessmentServiceImpl"
                        15:28:12,339 INFO  [org.jboss.as.webservices] (MSC service thread 1-3) JBAS015539: Starting service jboss.ws.endpoint."pot.war"."com.spar.pot.fo.normal.ppl.ws.pplServiceImpl"
                        15:28:12,342 INFO  [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-2) register: jboss.ws:context=pot,endpoint=com.spar.pot.fo.ws.CoverageAssessmentServiceImpl
                        15:28:12,341 INFO  [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-1) register: jboss.ws:context=pot,endpoint=com.spar.pot.fo.ws.dmgmt.DocumentManagementImpl
                        15:28:12,345 INFO  [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."pot.war"."com.spar.pot.fo.ws.UpdateServicesImpl"
                        15:28:12,343 INFO  [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-3) register: jboss.ws:context=pot,endpoint=com.spar.pot.fo.normal.ppl.ws.pplServiceImpl
                        15:28:12,348 INFO  [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-2) register: jboss.ws:context=pot,endpoint=com.spar.pot.fo.ws.UpdateServicesImpl
                        15:28:12,350 INFO  [org.jboss.as.webservices] (MSC service thread 1-3) JBAS015539: Starting service jboss.ws.endpoint."pot.war"."com.spar.pot.fo.ws.patches.PatchServiceImpl"
                        15:28:12,347 INFO  [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."pot.war"."com.spar.pot.fo.ws.auditlog.AuditLogWebServiceImpl"
                        15:28:12,351 INFO  [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."pot.war"."com.spar.pot.fo.ws.locationvalues.AdjustedLocationValuesImpl"
                        15:28:12,354 INFO  [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-1) register: jboss.ws:context=pot,endpoint=com.spar.pot.fo.ws.auditlog.AuditLogWebServiceImpl
                        15:28:12,352 INFO  [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-3) register: jboss.ws:context=pot,endpoint=com.spar.pot.fo.ws.patches.PatchServiceImpl
                        15:28:12,355 INFO  [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-2) register: jboss.ws:context=pot,endpoint=com.spar.pot.fo.ws.locationvalues.AdjustedLocationValuesImpl
                        15:28:12,356 INFO  [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."pot.war"."com.spar.pot.fo.ws.CxfEchoImpl"
                        15:28:12,359 INFO  [org.jboss.as.webservices] (MSC service thread 1-2) JBAS015539: Starting service jboss.ws.endpoint."pot.war"."com.spar.pot.fo.normal.ws.normalPolicyAdminServiceImpl"
                        15:28:12,360 INFO  [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-1) register: jboss.ws:context=pot,endpoint=com.spar.pot.fo.ws.CxfEchoImpl
                        15:28:12,361 INFO  [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-2) register: jboss.ws:context=pot,endpoint=com.spar.pot.fo.normal.ws.normalPolicyAdminServiceImpl
                        15:28:12,362 INFO  [org.jboss.as.webservices] (MSC service thread 1-1) JBAS015539: Starting service jboss.ws.endpoint."pot.war"."com.spar.pot.fo.ws.lvids.lvidsImpl"
                        15:28:12,365 INFO  [org.jboss.ws.common.management.DefaultEndpointRegistry] (MSC service thread 1-1) register: jboss.ws:context=pot,endpoint=com.spar.pot.fo.ws.lvids.lvidsImpl
                        15:28:13,027 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/fows]] (MSC service thread 1-4) Initializing Spring root WebApplicationContext
                        15:28:13,029 INFO  [org.springframework.web.context.ContextLoader] (MSC service thread 1-4) Root WebApplicationContext: initialization started
                        15:28:13,114 INFO  [org.springframework.web.context.support.XmlWebApplicationContext] (MSC service thread 1-4) Refreshing Root WebApplicationContext: startup date [Tue Jan 29 15:28:13 IST 2013]; root of context hierarchy
                        15:28:13,171 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from class path resource [pot-datasource-context.xml]
                        15:28:14,503 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from class path resource [pot-session-factory-context.xml]
                        15:28:14,542 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from class path resource [pot-tx-context.xml]
                        15:28:14,574 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from class path resource [pot-dao-context.xml]
                        15:28:14,616 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from ServletContext resource [/WEB-INF/classes/pot-ws-context.xml]
                        15:28:14,661 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from class path resource [META-INF/cxf/cxf.xml]
                        15:28:14,677 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from class path resource [META-INF/cxf/cxf-extension-soap.xml]
                        15:28:14,692 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from class path resource [META-INF/cxf/cxf-servlet.xml]
                        15:28:14,702 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from class path resource [META-INF/agcs/pot-ws-conf-context.xml]
                        15:28:14,719 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from class path resource [META-INF/agcs/pot-generic-ws-conf-context.xml]
                        15:28:14,729 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from class path resource [pot-fo-doc-manager-context.xml]
                        15:28:15,015 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from ServletContext resource [/WEB-INF/classes/pot-services-context.xml]
                        15:28:15,043 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
                        15:28:15,048 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-330 'javax.inject.Named' annotation found and supported for component scanning
                        15:28:15,218 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
                        15:28:15,219 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-330 'javax.inject.Named' annotation found and supported for component scanning
                        15:28:15,337 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
                        15:28:15,338 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-330 'javax.inject.Named' annotation found and supported for component scanning
                        15:28:15,366 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from ServletContext resource [/WEB-INF/classes/pot-web-context.xml]
                        15:28:15,380 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
                        15:28:15,384 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-330 'javax.inject.Named' annotation found and supported for component scanning
                        15:28:15,396 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from ServletContext resource [/WEB-INF/classes/pot-util-context.xml]
                        15:28:15,415 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
                        15:28:15,419 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-330 'javax.inject.Named' annotation found and supported for component scanning
                        15:28:15,435 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from ServletContext resource [/WEB-INF/classes/pot-client-search-context.xml]
                        15:28:15,446 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from ServletContext resource [/WEB-INF/classes/policy-summary-service-context.xml]
                        15:28:15,480 INFO  [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-4) Overriding bean definition for bean 'foDataOperationService': replacing [Generic bean: class [com.spar.pot.fo.service.FoDataOperationService]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in "/D:/jboss-as-7.1.1.Final/bin/content/pot.war/WEB-INF/classes/com/agcs/cores/fo/service/FoDataOperationService.class"] with [Generic bean: class [com.spar.pot.fo.service.FoDataOperationService]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in ServletContext resource [/WEB-INF/classes/policy-summary-service-context.xml]]
                        15:28:15,496 INFO  [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (MSC service thread 1-4) Loading XML bean definitions from ServletContext resource [/WEB-INF/classes/premium-panel-service-context.xml]
                        15:28:15,522 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning
                        15:28:15,528 INFO  [org.springframework.context.annotation.ClassPathBeanDefinitionScanner] (MSC service thread 1-4) JSR-330 'javax.inject.Named' annotation found and supported for component scanning
                        15:28:15,570 INFO  [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-4) Overriding bean definition for bean 'globalGeniusExporter': replacing [Generic bean: class [com.spar.pot.fo.normal.exporter.GlobalGeniusExporter]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in "/D:/jboss-as-7.1.1.Final/bin/content/pot.war/WEB-INF/classes/com/agcs/cores/fo/genius/exporter/GlobalGeniusExporter.class"] with [Generic bean: class [com.spar.pot.fo.normal.exporter.GlobalGeniusExporter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in ServletContext resource [/WEB-INF/classes/premium-panel-service-context.xml]]
                        15:28:16,490 INFO  [org.springframework.beans.factory.config.PropertyPlaceholderConfigurer] (MSC service thread 1-4) Loading properties file from class path resource [cores.properties]
                        15:28:16,536 INFO  [org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor] (MSC service thread 1-4) JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
                        15:28:16,576 INFO  [org.springframework.beans.factory.support.DefaultListableBeanFactory] (MSC service thread 1-4) Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@c1bb13: defining beans [dhangeDataSource,hibernateEventListener,sessionFactory,transactionManager,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,abstractDaoTarget,abstractDao,accountEvaluationDao,catnatDetailsDao,gareatDetailDao,gareatLayerDao,norskDetailsDao,consorcioDetailDao,consorcioLayerDao,aggregateDeductibleDao,aggregateLimitDao,aggregateLimitPeilDao,alternativeDao,cognosCoresAetInfoDao,auditLogDao,coinsurerDao,deductionDao,geniusXRatesDao,geniusAuditLogDao,geniusValidationErrorDao,internalPolicyDao,layerDao,locationRuleDao,locationRuleDetailDao,nameDetailDao,nameInvolvementDao,oeDao,oracleStoredProcedureDao,participationDao,perilCoverageDao,periodAuditLogDao,periodDao,policyDao,pricingExchangeRateDao,programDao,programInterestDao,referralCommentsLogDao,referralsLogDao,reinsuranceContractDao,reinsuranceLayerDao,reinsuranceLinkDao,reinsuranceSegmentDao,reinsuranceSegmentPerilDao,reinsuranceSegmentExtensionDao,rulesAndPrincipalsLogDao,standardExclusionsLogDao,securityDao,terrorismPremiumsDao,terrorismQuoteLogDao,uwNoteDao,versionDao,versionFixedExchangeRateDao,parameterDao,deductionCodesDao,accountEvaluationActionDao,geniusPoliciesDao,geniusCoverageDao,geniusDeductionDao,geniusParticipationDao,geniusRiAttachmentsDao,ggiTransactionsDao,coreinsurerDao,geniusCoverageHome,geniusPolicyDao,policyHomeDao,riContractHomeDao,coinsurerHomeDao,deductionHomeDao,ggiTransactionsHomeDao,cxf,org.apache.cxf.bus.spring.BusApplicationListener,org.apache.cxf.bus.spring.BusWiringBeanFactoryPostProcessor,org.apache.cxf.bus.spring.Jsr250BeanPostProcessor,org.apache.cxf.bus.spring.BusExtensionPostProcessor,org.apache.cxf.resource.ResourceManager,org.apache.cxf.configuration.Configurer,org.apache.cxf.binding.BindingFactoryManager,org.apache.cxf.transport.DestinationFactoryManager,org.apache.cxf.transport.ConduitInitiatorManager,org.apache.cxf.wsdl.WSDLManager,org.apache.cxf.phase.PhaseManager,org.apache.cxf.workqueue.WorkQueueManager,org.apache.cxf.buslifecycle.BusLifeCycleManager,org.apache.cxf.endpoint.ServerRegistry,org.apache.cxf.endpoint.ServerLifeCycleManager,org.apache.cxf.endpoint.ClientLifeCycleManager,org.apache.cxf.transports.http.QueryHandlerRegistry,org.apache.cxf.endpoint.EndpointResolverRegistry,org.apache.cxf.headers.HeaderManager,org.apache.cxf.catalog.OASISCatalogManager,org.apache.cxf.endpoint.ServiceContractResolverRegistry,org.apache.cxf.binding.soap.SoapBindingFactory,org.apache.cxf.binding.soap.SoapTransportFactory,org.apache.cxf.binding.soap.customEditorConfigurer,org.apache.cxf.transport.servlet.ServletTransportFactory,aegisBean,jaxws-and-aegis-service-factory,wsMethodIntroductionAdvisor,abstractWsTarget,abstractWs,documentManager,documentFactory,*.http-conduit,http://vgbax116.spar.az/.*,pricingServiceFactory,pricingServiceAdaptor,locationLookUpServiceFactory,locationLookUpService,documentStoreFactory,documentStore,userDefinedAttributesServiceFactory,userDefinedAttributesService,geniusPolicyServiceFactory,geniusPolicyService,geniusDataServiceFactory,geniusDataService,autoBookingServiceFactory,autoBookingService,dominoPasswordCallback,cxfEcho,CoverageAssessmentWebService,DocumentManagementWebService,NameServiceWebService,UpdateServicesWebService,UpdateFOStatusWebService,AuditLogWebService,AdjustedLocationValuesWebService,LocationVersionIdsWebService,ProgramSummaryDataWebService,UserProfileService,PremiumPanelService,ExchangeRateService,PatchService,NormalPyAService,org.springframework.beans.factory.config.PropertyPlaceholderConfigurer#0,dominoFieldProcessor,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.internalPersistenceAnnotationProcessor,foDataOperationService,gefehrenbegriffeServiceImpl,generateAnnualExposureReportService,generateFACRIReportService,generateKPIReportService,getLocationRuleCountriesService,getLocationRuleIdsService,getLocationRulesStubsJsonService,getPoolsPremiumService,getProgramOurSharePremiumService,getProgramsGutsRmsPremiumsService,getProgramSummaryPremiumsService,gtableSublimitsDataPopulator,accountEvaluationService,aggregateDeductibleService,aggregateLimitPerilService,aggregateLimitService,alternativeService,auditLogService,catnatDetailService,coinsuranceService,consorcioDetailService,deductionsService,gareatDetailService,layerService,locationRuleService,nameInvolvementService,nameService,norskDetailService,perilCoverageService,periodAuditLogService,periodService,policyService,pricingExchangeRatesService,programIdManipulator,programService,referralLogService,reinsuranceContractsService,reinsuranceLayerService,reinsuranceSegmentExtensionsService,reinsuranceSegmentPerilsService,reinsuranceSegmentService,rulesAndPrinciplesService,standardExclusionsService,terrorismService,updateServicesTransactionalDelegate,versionService,versionXRatesService,policySummaryServiceImpl,auditLogTarget,coverageAssessmentTarget,echoServiceTarget,adjustedLocationValuesTarget,locationVersionIdsTarget,nameServiceTarget,programSummaryDataTarget,updateServicesTarget,userProfileServiceTarget,currentXRateTarget,updateService,exchangeRateProcessor,exchangeRateService,dominoXrateUpdateService,dominoObjectFactory,countryOverviewService,gTableService,locationService,pricingService,getLocationUserDefinedFieldsService,updateFOStatusTarget,NormalPyAService,patchServiceTarget,dataExtractService,cognosDataExtractService,cognosScheduleJob,terrorismExposureReportService,arcnetReportService,dataExtractDao,dataExtractRowBuilder,gareatLocationsReportService,Version,DeleteAlternativeFromOracle,DeleteProgramFromOracle,GareatLocationsReport,GenerateAnnualExposureReport,GenerateArcnetReport,GenerateDataExtract,GenerateFACRIReport,GenerateKPIReport,GenerateTerrorismExposureReport,GetLocationRuleCountries,GetLocationRuleIDs,GetLocationRuleStubsJSON,GetLocationUserDefinedFields,GetPoolsPremium,GetProgramGUTRMSPremiums,GetProgramOurSharePremium,GetProgramSummaryPremiums,SyncData,countryOverviewServiceExporter,gTableServiceExporter,foDataServiceExporter,assuredClient,assuredClientRepository,assuredClientDataLoader,policySummaryService,attachmentElementBuilder,policySummaryServiceExporter,locationRuleEvaluator,policyMapBuilders,abstractSummaryBuilder,layerCountrySummaryBuilder,terrorismPolicySummaryBuilder,limitSummaryBuilder,businessTypeBuilder,gareatPolicySummaryBuilder,valuationSummaryBuilder,locationRuleSummaryBuilder,layerSummaryBuilder,countryComparator,reinsuranceContractSummaryBuilder,basicSummaryBuilder,perilBasisDescriptionBuilder,businessTypeDescriptionBuilder,instalmentsDescriptionBuilder,policySummaryBuilders,placeHolderMap,extensionInterestCodes,perilsSortOrderMap,globalGeniusExporter,premiumPanelViewService,premiumPanelDataService,reinsuranceViewBuilder,coReinsuranceViewBuilder,exchangeRateViewBuilder,geniusCoverageViewBuilder,geniusPolicyViewBuilder,participationViewBuilder,policyLocationsViewBuilder,policyPremiumViewBuilder,policyReferenceViewBuilder,terrorismViewBuilder,nonPoolTerrorismViewBuilder,catNatViewBuilder,gareatViewBuilder,geniusDeductionViewBuilder,norskDetailViewBuilder,consorcioDetailViewBuilder,foConverter,premiumPanelServiceTarget,propertyPolicyAdmin,foQueryService,coresToAegisPolicyConverter,geniusValidationService,bookingAuthorisationService,ignoredOes,geniusProductCodes,alternativeHome,geniusCoverageGridDao,geniusCoverageService,DominoLoginFilter,userProfileFilter,prembean]; root of factory hierarchy
                        15:28:16,827 INFO  [org.hibernate.cfg.Environment] (MSC service thread 1-4) Hibernate 3.3.1.GA
                        15:28:16,834 INFO  [org.hibernate.cfg.Environment] (MSC service thread 1-4) hibernate.properties not found
                        15:28:16,838 INFO  [org.hibernate.cfg.Environment] (MSC service thread 1-4) Bytecode provider name : javassist
                        15:28:16,899 INFO  [org.hibernate.cfg.Environment] (MSC service thread 1-4) using JDK 1.4 java.sql.Timestamp handling
                        15:28:17,055 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.AggregateDdbPeril -> AGGREGATE_DDB_PERILS
                        15:28:17,157 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.AggregateDeductible -> AGGREGATE_DEDUCTIBLES
                        15:28:17,161 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.AggregateDeductible.layers -> LAYER_AGGR_DDBS
                        15:28:17,163 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.AggregateDeductible.alternatives -> ALT_AGGR_DDBS
                        15:28:17,176 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.AggregateLimit -> AGGREGATE_LIMITS
                        15:28:17,177 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.AggregateLimit.reinsuranceSegments -> RI_SEGMENT_AGGR_LIMITS
                        15:28:17,181 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.AggregateLimit.alternatives -> ALT_AGGR_LIMITS
                        15:28:17,182 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.AggregateLimit.layers -> LAYER_AGGR_LIMITS
                        15:28:17,191 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.AggregateLimitPeril -> AGGREGATE_LIMIT_PERILS
                        15:28:17,206 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.Alternative -> ALTERNATIVES
                        15:28:17,209 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.aggregateDeductibles -> ALT_AGGR_DDBS
                        15:28:17,217 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.aggregateLimits_1 -> ALT_AGGR_LIMITS
                        15:28:17,225 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.AuditLog -> AUDIT_LOG
                        15:28:17,233 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.Coinsurer -> COINSURERS
                        15:28:17,241 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.Deduction -> DEDUCTIONS
                        15:28:17,256 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.normalPolicies -> GENIUS_POLICIES
                        15:28:17,266 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.normalXrates -> GENIUS_XRATES
                        15:28:17,278 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.Layer -> LAYERS
                        15:28:17,282 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Layer.aggregateDeductibles -> LAYER_AGGR_DDBS
                        15:28:17,283 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Layer.aggregateLimits -> LAYER_AGGR_LIMITS
                        15:28:17,291 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.LocationRule -> LOCATION_RULES
                        15:28:17,300 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.LocationRuleDetail -> LOCATION_RULE_DETAILS
                        15:28:17,310 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.Namedetail -> NAMEDETAIL
                        15:28:17,317 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.NameInvolvment -> NAME_INVOLVMENTS
                        15:28:17,326 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.Oe -> OE
                        15:28:17,333 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.Participation -> PARTICIPATIONS
                        15:28:17,341 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.PerilCoverage -> PERIL_COVERAGES
                        15:28:17,351 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.Period -> PERIODS
                        15:28:17,365 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.Policy -> POLICIES
                        15:28:17,374 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.normalCoverage -> GENIUS_COVERAGES
                        15:28:17,381 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.PricingXrate -> PRICING_XRATES
                        15:28:17,390 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.Program -> PROGRAMS
                        15:28:17,397 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.ProgramInterest -> PROGRAM_INTERESTS
                        15:28:17,404 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.ReferralCommentsLog -> REFERRAL_COMMENTS_LOG
                        15:28:17,410 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.ReferralsLog -> REFERRALS_LOG
                        15:28:17,417 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.ReinsuranceContract -> REINSURANCE_CONTRACTS
                        15:28:17,424 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.ReinsuranceLayer -> REINSURANCE_LAYERS
                        15:28:17,432 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.ReinsuranceLink -> REINSURANCE_LINK
                        15:28:17,438 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.ReinsuranceSegment -> REINSURANCE_SEGMENTS
                        15:28:17,440 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.ReinsuranceSegment.aggregateLimits -> RI_SEGMENT_AGGR_LIMITS
                        15:28:17,446 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.ReinsuranceSegmentPeril -> REINSURANCE_SEGMENT_PERILS
                        15:28:17,451 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.ReinsuranceSegmentExtension -> REINSURANCE_SEGMENT_EXTENSIONS
                        15:28:17,459 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.RulesAndPrincipalsLog -> RULES_AND_PRINCIPLES_LOG
                        15:28:17,469 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.Security -> SECURITIES
                        15:28:17,474 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.UwNote -> UW_NOTES
                        15:28:17,479 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.Version -> VERSIONS
                        15:28:17,488 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.VersionFixedXrate -> VERSION_FIXED_XRATES
                        15:28:17,493 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.Parameter -> PARAMETERS
                        15:28:17,498 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.DeductionCodes -> DEDUCTION_CODES
                        15:28:17,504 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.TerrorismQuoteLog -> TERRORISM_QUOTE_LOG
                        15:28:17,516 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.TerrorismPremiums -> TERRORISM_PREMIUMS
                        15:28:17,524 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.GgiTransactions -> GGI_TRANSACTIONS
                        15:28:17,530 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.PeriodAuditLog -> PERIOD_AUDIT_LOG
                        15:28:17,536 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.AccountEvaluation -> ACCOUNT_EVALUATION
                        15:28:17,544 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.normalRiAttachments -> GENIUS_RI_ATTACHMENTS
                        15:28:17,550 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.StandardExclusionsLog -> STANDARD_EXCLUSIONS_LOG
                        15:28:17,555 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.AccountEvaluationAction -> ACCOUNT_EVALUATION_ACTIONS
                        15:28:17,560 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.CatnatDetail -> CATNAT_DETAILS
                        15:28:17,566 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.GareatDetail -> GAREAT_DETAILS
                        15:28:17,571 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.GareatLayer -> GAREAT_LAYERS
                        15:28:17,579 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.NorskDetail -> NORSK_DETAILS
                        15:28:17,585 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.ConsorcioDetail -> CONSORCIO_DETAILS
                        15:28:17,591 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.ConsorcioLayer -> CONSORCIO_LAYERS
                        15:28:17,596 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.normalDeduction -> GENIUS_DEDUCTION
                        15:28:17,602 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.normalParticipation -> GENIUS_PARTICIPATION
                        15:28:17,619 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.CognosCoresAetInfo -> COGNOS_CORES_AET_INFO
                        15:28:17,632 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.normalValidationError -> GENIUS_VALIDATION_ERROR
                        15:28:17,646 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.Coreinsurer -> COREINSURERS
                        15:28:17,652 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.normalAuditLog -> GENIUS_AUDIT_LOG
                        15:28:17,658 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping class: com.spar.pot.fo.ws.AuditTrail -> AUDIT_TRAIL
                        15:28:17,665 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.AggregateDeductible.aggregateDdbPerils -> AGGREGATE_DDB_PERILS
                        15:28:17,667 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.AggregateLimit.reinsuranceContracts -> REINSURANCE_CONTRACTS
                        15:28:17,669 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.AggregateLimit.aggregateLimitPerils -> AGGREGATE_LIMIT_PERILS
                        15:28:17,670 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.reinsuranceContracts -> REINSURANCE_CONTRACTS
                        15:28:17,672 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.aggregateDeductibles_1 -> AGGREGATE_DEDUCTIBLES
                        15:28:17,673 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.auditLogs -> AUDIT_LOG
                        15:28:17,675 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.normalPolicieses -> GENIUS_POLICIES
                        15:28:17,676 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.aggregateLimits -> AGGREGATE_LIMITS
                        15:28:17,678 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.terrorismQuoteLogs -> TERRORISM_QUOTE_LOG
                        15:28:17,679 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.uwNotes -> UW_NOTES
                        15:28:17,680 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.programInterests -> PROGRAM_INTERESTS
                        15:28:17,682 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.deductions -> DEDUCTIONS
                        15:28:17,683 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.policies -> POLICIES
                        15:28:17,684 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.rulesAndPrincipalsLogs -> RULES_AND_PRINCIPLES_LOG
                        15:28:17,685 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.ggiTransactionses -> GGI_TRANSACTIONS
                        15:28:17,687 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.allLocationRules -> LOCATION_RULES
                        15:28:17,688 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.standardExclusionsLogs -> STANDARD_EXCLUSIONS_LOG
                        15:28:17,689 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.reinsuranceSegments -> REINSURANCE_SEGMENTS
                        15:28:17,691 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.perilCoverages -> PERIL_COVERAGES
                        15:28:17,692 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.referralsLogs -> REFERRALS_LOG
                        15:28:17,693 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.catnatDetails -> CATNAT_DETAILS
                        15:28:17,694 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.gareatDetails -> GAREAT_DETAILS
                        15:28:17,696 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.norskDetails -> NORSK_DETAILS
                        15:28:17,697 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Alternative.consorcioDetails -> CONSORCIO_DETAILS
                        15:28:17,698 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Coinsurer.coreinsurers -> COREINSURERS
                        15:28:17,699 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.normalPolicies.normalCoverages -> GENIUS_COVERAGES
                        15:28:17,701 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.normalPolicies.normalParticipations -> GENIUS_PARTICIPATION
                        15:28:17,702 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.normalPolicies.normalRiAttachmentsesForGeniusRiPolicyId -> GENIUS_RI_ATTACHMENTS
                        15:28:17,703 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.normalPolicies.normalRiAttachmentsesForGeniusPolicyId -> GENIUS_RI_ATTACHMENTS
                        15:28:17,705 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.normalPolicies.normalDeductions -> GENIUS_DEDUCTION
                        15:28:17,706 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Layer.terrorismQuoteLogs -> TERRORISM_QUOTE_LOG
                        15:28:17,708 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Layer.participations -> PARTICIPATIONS
                        15:28:17,709 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Layer.deductions -> DEDUCTIONS
                        15:28:17,710 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.LocationRule.reinsuranceSegments -> REINSURANCE_SEGMENTS
                        15:28:17,712 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.LocationRule.locationRuleDetails -> LOCATION_RULE_DETAILS
                        15:28:17,713 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.LocationRule.perilCoverages -> PERIL_COVERAGES
                        15:28:17,715 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.LocationRule.deductions -> DEDUCTIONS
                        15:28:17,716 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.LocationRule.aggregateDdbPerils -> AGGREGATE_DDB_PERILS
                        15:28:17,717 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.LocationRule.policies -> POLICIES
                        15:28:17,719 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.LocationRule.aggregateLimitPerils -> AGGREGATE_LIMIT_PERILS
                        15:28:17,720 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.LocationRule.alternatives -> ALTERNATIVES
                        15:28:17,722 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.LocationRule.programInterests -> PROGRAM_INTERESTS
                        15:28:17,723 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Namedetail.nameInvolvments -> NAME_INVOLVMENTS
                        15:28:17,725 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Participation.coinsurers -> COINSURERS
                        15:28:17,727 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Period.versions -> VERSIONS
                        15:28:17,728 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Period.periodAuditLogs -> PERIOD_AUDIT_LOG
                        15:28:17,729 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Policy.layers -> LAYERS
                        15:28:17,731 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Program.periods -> PERIODS
                        15:28:17,732 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.ReferralsLog.referralCommentsLogs -> REFERRAL_COMMENTS_LOG
                        15:28:17,733 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.ReinsuranceContract.reinsuranceLinks -> REINSURANCE_LINK
                        15:28:17,735 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.ReinsuranceContract.securities -> SECURITIES
                        15:28:17,736 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.ReinsuranceLayer.reinsuranceLinks -> REINSURANCE_LINK
                        15:28:17,737 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.ReinsuranceSegment.reinsuranceLinks -> REINSURANCE_LINK
                        15:28:17,739 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.ReinsuranceSegment.reinsuranceLayers -> REINSURANCE_LAYERS
                        15:28:17,741 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.ReinsuranceSegment.reinsuranceSegmentPerils -> REINSURANCE_SEGMENT_PERILS
                        15:28:17,743 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.ReinsuranceSegment.reinsuranceSegmentExtensions -> REINSURANCE_SEGMENT_EXTENSIONS
                        15:28:17,745 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Version.versionFixedXrates -> VERSION_FIXED_XRATES
                        15:28:17,746 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Version.accountEvaluations -> ACCOUNT_EVALUATION
                        15:28:17,748 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Version.pricingXrates -> PRICING_XRATES
                        15:28:17,749 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Version.nameInvolvments -> NAME_INVOLVMENTS
                        15:28:17,751 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.Version.alternatives -> ALTERNATIVES
                        15:28:17,752 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.TerrorismQuoteLog.terrorismPremiumses -> TERRORISM_PREMIUMS
                        15:28:17,753 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.AccountEvaluation.accountEvaluationActions -> ACCOUNT_EVALUATION_ACTIONS
                        15:28:17,756 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.GareatDetail.gareatLayers -> GAREAT_LAYERS
                        15:28:17,757 INFO  [org.hibernate.cfg.HbmBinder] (MSC service thread 1-4) Mapping collection: com.spar.pot.fo.ws.ConsorcioDetail.consorcioLayers -> CONSORCIO_LAYERS
                        15:28:17,760 INFO  [org.springframework.orm.hibernate3.LocalSessionFactoryBean] (MSC service thread 1-4) Building new Hibernate SessionFactory
                        15:28:17,795 WARN  [org.hibernate.mapping.RootClass] (MSC service thread 1-4) composite-id class does not override equals(): com.spar.pot.fo.ws.ReinsuranceSegmentExtensionId
                        15:28:17,797 WARN  [org.hibernate.mapping.RootClass] (MSC service thread 1-4) composite-id class does not override hashCode(): com.spar.pot.fo.ws.ReinsuranceSegmentExtensionId
                        15:28:17,803 WARN  [org.hibernate.mapping.RootClass] (MSC service thread 1-4) composite-id class does not override equals(): com.spar.pot.fo.ws.AggregateDdbPerilId
                        15:28:17,805 WARN  [org.hibernate.mapping.RootClass] (MSC service thread 1-4) composite-id class does not override hashCode(): com.spar.pot.fo.ws.AggregateDdbPerilId
                        15:28:17,806 WARN  [org.hibernate.mapping.RootClass] (MSC service thread 1-4) composite-id class does not override equals(): com.spar.pot.fo.ws.ReinsuranceSegmentPerilId
                        15:28:17,808 WARN  [org.hibernate.mapping.RootClass] (MSC service thread 1-4) composite-id class does not override hashCode(): com.spar.pot.fo.ws.ReinsuranceSegmentPerilId
                        15:28:17,810 WARN  [org.hibernate.mapping.RootClass] (MSC service thread 1-4) composite-id class does not override equals(): com.spar.pot.fo.ws.AggregateLimitPerilId
                        15:28:17,811 WARN  [org.hibernate.mapping.RootClass] (MSC service thread 1-4) composite-id class does not override hashCode(): com.spar.pot.fo.ws.AggregateLimitPerilId
                        15:28:17,820 INFO  [org.hibernate.connection.ConnectionProviderFactory] (MSC service thread 1-4) Initializing connection provider: org.springframework.orm.hibernate3.LocalDataSourceConnectionProvider
                        15:28:25,191 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) RDBMS: Oracle, version: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
                        With the Real Application Testing option
                        15:28:25,231 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) JDBC driver: Oracle JDBC driver, version: 11.2.0.1.0
                        15:28:25,266 INFO  [org.hibernate.dialect.Dialect] (MSC service thread 1-4) Using dialect: org.hibernate.dialect.Oracle10gDialect
                        15:28:25,300 INFO  [org.hibernate.transaction.TransactionFactoryFactory] (MSC service thread 1-4) Transaction strategy: org.springframework.orm.hibernate3.SpringTransactionFactory
                        15:28:25,319 INFO  [org.hibernate.transaction.TransactionManagerLookupFactory] (MSC service thread 1-4) No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
                        15:28:25,335 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Automatic flush during beforeCompletion(): disabled
                        15:28:25,355 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Automatic session close at end of transaction: disabled
                        15:28:25,373 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) JDBC batch size: 15
                        15:28:25,392 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) JDBC batch updates for versioned data: disabled
                        15:28:25,412 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Scrollable result sets: enabled
                        15:28:25,430 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) JDBC3 getGeneratedKeys(): disabled
                        15:28:25,451 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Connection release mode: auto
                        15:28:25,469 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Default batch fetch size: 1
                        15:28:25,489 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Generate SQL with comments: disabled
                        15:28:25,507 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Order SQL updates by primary key: disabled
                        15:28:25,524 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Order SQL inserts for batching: disabled
                        15:28:25,542 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
                        15:28:25,563 INFO  [org.hibernate.hql.ast.ASTQueryTranslatorFactory] (MSC service thread 1-4) Using ASTQueryTranslatorFactory
                        15:28:25,581 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Query language substitutions: {}
                        15:28:25,604 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) JPA-QL strict compliance: disabled
                        15:28:25,621 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Second-level cache: enabled
                        15:28:25,639 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Query cache: enabled
                        15:28:25,660 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Cache region factory : org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge
                        15:28:25,678 INFO  [org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge] (MSC service thread 1-4) Cache provider: net.sf.ehcache.hibernate.EhCacheProvider
                        15:28:25,700 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Optimize cache for minimal puts: disabled
                        15:28:25,719 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Structured second-level cache entries: disabled
                        15:28:25,739 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Query cache factory: org.hibernate.cache.StandardQueryCacheFactory
                        15:28:25,761 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Statistics: disabled
                        15:28:25,779 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Deleted entity synthetic identifier rollback: disabled
                        15:28:25,797 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Default entity-mode: pojo
                        15:28:25,815 INFO  [org.hibernate.cfg.SettingsFactory] (MSC service thread 1-4) Named query checking : enabled
                        15:28:25,858 INFO  [org.hibernate.impl.SessionFactoryImpl] (MSC service thread 1-4) building session factory
                        15:28:26,784 WARN  [net.sf.ehcache.hibernate.EhCacheProvider] (MSC service thread 1-4) Could not find a specific ehcache configuration for cache named [com.spar.pot.fo.ws.Parameter]; using defaults.
                        15:28:26,823 WARN  [org.hibernate.cache.impl.bridge.EntityRegionAdapter] (MSC service thread 1-4) read-only cache configured for mutable entity [com.spar.pot.fo.ws.Parameter]
                        15:28:26,854 INFO  [org.hibernate.tuple.PojoInstantiator] (MSC service thread 1-4) no default (no-argument) constructor for class: com.spar.pot.fo.ws.AuditTrail (class must be instantiated by Interceptor)
                        15:28:27,307 INFO  [org.hibernate.impl.SessionFactoryObjectFactory] (MSC service thread 1-4) Not binding factory to JNDI, no JNDI name configured
                        15:28:27,332 INFO  [org.hibernate.cache.UpdateTimestampsCache] (MSC service thread 1-4) starting update timestamps cache at region: org.hibernate.cache.UpdateTimestampsCache
                        15:28:27,351 WARN  [net.sf.ehcache.hibernate.EhCacheProvider] (MSC service thread 1-4) Could not find a specific ehcache configuration for cache named [org.hibernate.cache.UpdateTimestampsCache]; using defaults.
                        15:28:27,383 INFO  [org.hibernate.cache.StandardQueryCache] (MSC service thread 1-4) starting query cache at region: org.hibernate.cache.StandardQueryCache
                        15:28:27,573 INFO  [org.springframework.orm.hibernate3.HibernateTransactionManager] (MSC service thread 1-4) Using DataSource [org.jboss.jca.adapters.jdbc.WrapperDataSource@1fdcee] of Hibernate SessionFactory for HibernateTransactionManager
                        15:28:28,437 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.docprod.pot.spar.com}DocumentStoreService from class com.spar.pot.docprod.ws.DocumentStore
                        15:28:28,771 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {ws.pricing.spar.com}PricingServiceService from class com.spar.pricing.ws.PricingService
                        15:28:28,968 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://locationlookup.webservices.lmgmt.spar.com/}LocationLookUpServiceService from class com.spar.lmgmt.webservices.locationlookup.LocationLookUpService
                        15:28:29,400 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://userdefinedattributes.webservices.lmgmt.spar.com/}UserdefinedAttributesServiceService from class com.spar.lmgmt.webservices.userdefinedattributes.UserdefinedAttributesService
                        15:28:29,440 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.policy.aegis.spar.com}NormalPolicyServiceService from class com.spar.aegis.policy.ws.normalPolicyService
                        15:28:30,358 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.normal.aegis.spar.com}NormalDataServiceService from class com.spar.aegis.normal.ws.normalDataService
                        15:28:30,694 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://www.az.com/autobooking/}AutoBookingService from class com.az.autobooking.AutoBooking
                        15:28:30,949 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.fo.pot.spar.com/}CxfEchoImplService from class com.spar.pot.fo.ws.ICxfEcho
                        15:28:30,984 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be /cxfEcho
                        15:28:31,232 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.fo.pot.spar.com/}CAssessment from class com.spar.pot.fo.ws.CoverageAssessmentService
                        15:28:32,084 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be /CAssessment
                        15:28:32,103 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {urn:docmgmt.ws.fo.pot.spar.com}DocumentManagement from class com.spar.pot.fo.ws.dmgmt.DocumentManagement
                        15:28:32,135 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be /DocumentManagement
                        15:28:32,161 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.fo.pot.spar.com/}NameService from class com.spar.pot.fo.ws.NameService
                        15:28:33,538 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be /NameService
                        15:28:34,554 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.fo.pot.spar.com/}UpdateServicesImplService from class com.spar.pot.fo.ws.UpdateServices
                        15:28:34,591 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be /UpdateServices
                        15:28:38,495 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.fo.pot.spar.com/UpdateFOStatus/}UpdateFOStatus from class com.spar.pot.fo.ws.updatestatus.UpdateFOStatus
                        15:28:38,548 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be /UpdateFOStatus
                        15:28:38,571 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.fo.pot.spar.com/IALog/}IALog from class com.spar.pot.fo.ws.auditlog.AuditLogWebService
                        15:28:38,604 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be /AuditLog
                        15:28:38,634 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.fo.pot.spar.com/AdjustedLocationValues/}AdjustedLocationValues from class com.spar.pot.fo.ws.locationvalues.AdjustedLocationValues
                        15:28:38,683 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be /AdjustedLocationValues
                        15:28:38,710 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.fo.pot.spar.com/LVIds}LVIds from class com.spar.pot.fo.ws.lvids.lvids
                        15:28:38,739 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be /LVIds
                        15:28:38,776 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.fo.pot.spar.com/ProgramSummaryData/}ProgramSummaryData from class com.spar.pot.fo.ws.programsummary.ProgramSummaryData
                        15:28:38,806 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be /ProgramSummaryData
                        15:28:38,833 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://userdetails.ws.fo.pot.spar.com/}UserProfileService from class com.spar.pot.fo.ws.userdetails.IUserProfileService
                        15:28:38,891 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be /UserProfileService
                        15:28:38,909 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.ppl.normal.fo.pot.spar.com/PPlService/}PPlService from class com.spar.pot.fo.normal.ppl.ws.pplService
                        15:28:39,988 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be /PPlService
                        15:28:40,046 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.xrates.fo.pot.spar.com/}ExchangeRateServiceImplService from class com.spar.pot.fo.xrates.ws.ExchangeRateService
                        15:28:40,110 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be /ExchangeRateService
                        15:28:40,135 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.fo.pot.spar.com/PatchService/}PatchServiceImplService from class com.spar.pot.fo.ws.patches.PatchService
                        15:28:40,163 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be /PatchService
                        15:28:40,189 INFO  [org.apache.cxf.service.factory.ReflectionServiceFactoryBean] (MSC service thread 1-4) Creating Service {http://ws.normal.fo.pot.spar.com/NormalPyAService/}NormalPyAService from class com.spar.pot.fo.normal.ws.normalPolicyAdminService
                        15:28:40,226 INFO  [org.apache.cxf.endpoint.ServerImpl] (MSC service thread 1-4) Setting the server's publish address to be /NormalPyAService
                        15:28:40,536 WARN  [org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor] (MSC service thread 1-4) Autowired annotation is not supported on static fields: public static com.spar.pot.fo.service.CognosDataExtractService com.spar.pot.fo.service.CognosScheduleJob.cognosDataExtractService
                        15:28:40,559 INFO  [com.spar.pot.fo.service.CognosScheduleJob] (MSC service thread 1-4) Inside setCognosDataExtractService
                        15:28:40,600 INFO  [com.spar.pot.fo.service.CognosScheduleJob] (MSC service thread 1-4) Scheduling the task
                        15:28:40,618 INFO  [com.spar.pot.fo.service.CognosScheduleJob] (MSC service thread 1-4) Inside startCornTrigger
                        15:28:40,639 INFO  [com.spar.pot.fo.service.CognosScheduleJob] (MSC service thread 1-4) No. of times Cognos job scheduled: 1
                        15:28:40,683 INFO  [org.quartz.simpl.SimpleThreadPool] (MSC service thread 1-4) Job execution threads will use class loader of thread: MSC service thread 1-4
                        15:28:40,727 INFO  [org.quartz.core.QuartzScheduler] (MSC service thread 1-4) Quartz Scheduler v.1.5.2 created.
                        15:28:40,747 INFO  [org.quartz.simpl.RAMJobStore] (MSC service thread 1-4) RAMJobStore initialized.
                        15:28:40,764 INFO  [org.quartz.impl.StdSchedulerFactory] (MSC service thread 1-4) Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
                        15:28:40,783 INFO  [org.quartz.impl.StdSchedulerFactory] (MSC service thread 1-4) Quartz scheduler version: 1.5.2
                        15:28:40,824 INFO  [org.quartz.core.QuartzScheduler] (MSC service thread 1-4) Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
                        15:57:21,704 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS015870: Deploy of deployment "pot.war" was rolled back with failure message Operation cancelled
                        15:57:21,792 ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) JBAS015052: Did not receive a response to the deployment operation within the allowed timeout period [1800 seconds]. Check the server configuration file and the server logs to find more about the status of the deployment.
                        16:00:30,129 INFO  [org.jboss.as.osgi] (MSC service thread 1-1) JBAS011942: Stopping OSGi Framework

                        Could you please check it once and let me know if you need any more info.

                         

                        Your help will be appreciated.Thanks for your time.

                         

                        Thanks,

                        Poorna

                        • 9. Re: JBOSS 7.1.1.Final - Server Hanging Issue
                          nickarls

                          I think what Stephen was trying to say is that you got the jstack part correct the first time but you appear to have dumped the java.exe of Eclipse and not the one of the AS.

                          • 10. Re: JBOSS 7.1.1.Final - Server Hanging Issue
                            poorna.sama

                            Hi Nicklas,

                                Thanks for the reply.Please find the attached ThreadDump of JBOSS Application server 7.1.1.Final

                             

                            D:\jboss-as-7.1.1.Final-FO\bin>jps.exe -v
                            8060 Jps -Dapplication.home=D:\Softwares\jdk1.6.0_21 -Xms8m
                            6392 Main -Xms512m -Xmx512m -XX:MaxPermSize=256m -Djava.net.preferIPv4Stack=true -Dorg.jboss.resolver.warning=true -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Djboss.modules.system.pkgs=org.jboss.byteman -Djava.awt.headless=true -Dorg.jboss.boot.log.file=D:/jboss-as-7.1.1.Final-FO/standalone/log/boot.log -Dlogging.configuration=file:/D:/jboss-as-7.1.1.Final-FO/standalone/configuration/logging.properties -Djboss.home.dir=D:/jboss-as-7.1.1.Final-FO -Dfile.encoding=Cp1252
                            7684  -Dosgi.requiredJavaVersion=1.5 -Xms40m -Xmx384m -XX:MaxPermSize=256m
                            4592  -Dosgi.requiredJavaVersion=1.5 -Xms40m -Xmx512m -XX:MaxPermSize=256m

                            D:\jboss-as-7.1.1.Final-FO\bin>jstack -l 6392
                            2013-02-05 18:58:23
                            Full thread dump Java HotSpot(TM) Client VM (17.0-b16 mixed mode):

                            "DefaultQuartzScheduler_QuartzSchedulerThread" prio=6 tid=0x34f3b400 nid=0x1ab4 waiting on condition [0x35a8f000]
                               java.lang.Thread.State: TIMED_WAITING (sleeping)
                                    at java.lang.Thread.sleep(Native Method)
                                    at org.quartz.core.QuartzSchedulerThread.run(QuartzSchedulerThread.java:394)

                               Locked ownable synchronizers:
                                    - None

                            "DefaultQuartzScheduler_Worker-9" prio=6 tid=0x34f3cc00 nid=0x1078 in Object.wait() [0x35a3f000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:428)
                                    - locked <0x142dc980> (a java.lang.Object)
                                    at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:47)
                                    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:518)

                               Locked ownable synchronizers:
                                    - None

                            "DefaultQuartzScheduler_Worker-8" prio=6 tid=0x34f3c400 nid=0x1f28 in Object.wait() [0x359ef000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:428)
                                    - locked <0x142dc980> (a java.lang.Object)
                                    at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:47)
                                    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:518)

                               Locked ownable synchronizers:
                                    - None

                            "DefaultQuartzScheduler_Worker-7" prio=6 tid=0x34f36800 nid=0x1ee4 in Object.wait() [0x3599f000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:428)
                                    - locked <0x142dc980> (a java.lang.Object)
                                    at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:47)
                                    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:518)

                               Locked ownable synchronizers:
                                    - None

                            "DefaultQuartzScheduler_Worker-6" prio=6 tid=0x34f35800 nid=0x1074 in Object.wait() [0x3594f000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:428)
                                    - locked <0x142dc980> (a java.lang.Object)
                                    at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:47)
                                    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:518)

                               Locked ownable synchronizers:
                                    - None

                            "DefaultQuartzScheduler_Worker-5" prio=6 tid=0x34f35c00 nid=0x1ccc in Object.wait() [0x358ff000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:428)
                                    - locked <0x142dc980> (a java.lang.Object)
                                    at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:47)
                                    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:518)

                               Locked ownable synchronizers:
                                    - None

                            "DefaultQuartzScheduler_Worker-4" prio=6 tid=0x34f36400 nid=0xbd4 in Object.wait() [0x358af000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:428)
                                    - locked <0x142dc980> (a java.lang.Object)
                                    at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:47)
                                    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:518)

                               Locked ownable synchronizers:
                                    - None

                            "DefaultQuartzScheduler_Worker-3" prio=6 tid=0x34f38000 nid=0x16a8 in Object.wait() [0x355af000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:428)
                                    - locked <0x142dc980> (a java.lang.Object)
                                    at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:47)
                                    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:518)

                               Locked ownable synchronizers:
                                    - None

                            "DefaultQuartzScheduler_Worker-2" prio=6 tid=0x360b4c00 nid=0x1fb8 in Object.wait() [0x3555f000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:428)
                                    - locked <0x142dc980> (a java.lang.Object)
                                    at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:47)
                                    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:518)

                               Locked ownable synchronizers:
                                    - None

                            "DefaultQuartzScheduler_Worker-1" prio=6 tid=0x360b5000 nid=0x1ab0 in Object.wait() [0x3550f000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:428)
                                    - locked <0x142dc980> (a java.lang.Object)
                                    at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:47)
                                    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:518)

                               Locked ownable synchronizers:
                                    - None

                            "DefaultQuartzScheduler_Worker-0" prio=6 tid=0x360b5800 nid=0xa70 in Object.wait() [0x344cf000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:428)
                                    - locked <0x142dc980> (a java.lang.Object)
                                    at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:47)
                                    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:518)

                               Locked ownable synchronizers:
                                    - None

                            "Remoting "01hw186271:MANAGEMENT" task-4" prio=6 tid=0x360b4400 nid=0xffc waiting on condition [0x354bf000]
                               java.lang.Thread.State: WAITING (parking)
                                    at sun.misc.Unsafe.park(Native Method)
                                    - parking to wait for  <0x0f0817f8> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
                                    at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
                                    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
                                    at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
                                    at org.xnio.LimitedBlockingQueue.take(LimitedBlockingQueue.java:95)
                                    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
                                    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
                                    at java.lang.Thread.run(Thread.java:619)

                               Locked ownable synchronizers:
                                    - None

                            "Remoting "01hw186271:MANAGEMENT" task-3" prio=6 tid=0x360b4000 nid=0x1408 waiting on condition [0x3546f000]
                               java.lang.Thread.State: WAITING (parking)
                                    at sun.misc.Unsafe.park(Native Method)
                                    - parking to wait for  <0x0f0817f8> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
                                    at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
                                    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
                                    at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
                                    at org.xnio.LimitedBlockingQueue.take(LimitedBlockingQueue.java:95)
                                    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
                                    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
                                    at java.lang.Thread.run(Thread.java:619)

                               Locked ownable synchronizers:
                                    - None

                            "Remoting "01hw186271:MANAGEMENT" task-2" prio=6 tid=0x360b3800 nid=0x1f88 waiting on condition [0x3541f000]
                               java.lang.Thread.State: WAITING (parking)
                                    at sun.misc.Unsafe.park(Native Method)
                                    - parking to wait for  <0x0f0817f8> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
                                    at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
                                    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
                                    at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
                                    at org.xnio.LimitedBlockingQueue.take(LimitedBlockingQueue.java:95)
                                    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
                                    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
                                    at java.lang.Thread.run(Thread.java:619)

                               Locked ownable synchronizers:
                                    - None

                            "Remoting "01hw186271:MANAGEMENT" task-1" prio=6 tid=0x360b3400 nid=0x126c waiting on condition [0x353cf000]
                               java.lang.Thread.State: WAITING (parking)
                                    at sun.misc.Unsafe.park(Native Method)
                                    - parking to wait for  <0x0f0817f8> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
                                    at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
                                    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
                                    at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
                                    at org.xnio.LimitedBlockingQueue.take(LimitedBlockingQueue.java:95)
                                    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
                                    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
                                    at java.lang.Thread.run(Thread.java:619)

                               Locked ownable synchronizers:
                                    - None

                            "Thread-60" prio=6 tid=0x360b2c00 nid=0x38c runnable [0x3749f000]
                               java.lang.Thread.State: RUNNABLE
                                    at sun.nio.ch.WindowsSelectorImpl$SubSelector.poll0(Native Method)
                                    at sun.nio.ch.WindowsSelectorImpl$SubSelector.poll(WindowsSelectorImpl.java:273)
                                    at sun.nio.ch.WindowsSelectorImpl$SubSelector.access$400(WindowsSelectorImpl.java:255)
                                    at sun.nio.ch.WindowsSelectorImpl.doSelect(WindowsSelectorImpl.java:136)
                                    at sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:69)
                                    - locked <0x0f286528> (a sun.nio.ch.Util$1)
                                    - locked <0x0f286518> (a java.util.Collections$UnmodifiableSet)
                                    - locked <0x0f2862f8> (a sun.nio.ch.WindowsSelectorImpl)
                                    at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:80)
                                    at org.jboss.sun.net.httpserver.ServerImpl$Dispatcher.run(ServerImpl.java:382)
                                    at java.lang.Thread.run(Thread.java:619)

                               Locked ownable synchronizers:
                                    - None

                            "Transaction Reaper Worker 0" daemon prio=6 tid=0x360b2800 nid=0x1c8c in Object.wait() [0x3744f000]
                               java.lang.Thread.State: WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    - waiting on <0x0f573c18> (a java.util.LinkedList)
                                    at java.lang.Object.wait(Object.java:485)
                                    at com.arjuna.ats.arjuna.coordinator.TransactionReaper.waitForCancellations(TransactionReaper.java:321)
                                    - locked <0x0f573c18> (a java.util.LinkedList)
                                    at com.arjuna.ats.internal.arjuna.coordinator.ReaperWorkerThread.run(ReaperWorkerThread.java:65)

                               Locked ownable synchronizers:
                                    - None

                            "Transaction Reaper" daemon prio=6 tid=0x360b2000 nid=0x18ac in Object.wait() [0x373ff000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    - waiting on <0x0f572c78> (a com.arjuna.ats.arjuna.coordinator.TransactionReaper)
                                    at com.arjuna.ats.internal.arjuna.coordinator.ReaperThread.run(ReaperThread.java:90)
                                    - locked <0x0f572c78> (a com.arjuna.ats.arjuna.coordinator.TransactionReaper)

                               Locked ownable synchronizers:
                                    - None

                            "server-timer1" daemon prio=6 tid=0x3626a000 nid=0x1c44 in Object.wait() [0x373af000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at java.util.TimerThread.mainLoop(Timer.java:509)
                                    - locked <0x0f28a1e8> (a java.util.TaskQueue)
                                    at java.util.TimerThread.run(Timer.java:462)

                               Locked ownable synchronizers:
                                    - None

                            "server-timer" daemon prio=6 tid=0x36269c00 nid=0x12f4 in Object.wait() [0x3735f000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at java.util.TimerThread.mainLoop(Timer.java:509)
                                    - locked <0x0f289df0> (a java.util.TaskQueue)
                                    at java.util.TimerThread.run(Timer.java:462)

                               Locked ownable synchronizers:
                                    - None

                            "Periodic Recovery" prio=6 tid=0x36269400 nid=0x69c in Object.wait() [0x3730f000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.doPeriodicWait(PeriodicRecovery.java:672)
                                    at com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.run(PeriodicRecovery.java:392)
                                    - locked <0x0f460560> (a java.lang.Object)

                               Locked ownable synchronizers:
                                    - None

                            "DeploymentScanner-threads - 2" prio=6 tid=0x36269000 nid=0x1544 waiting on condition [0x372bf000]
                               java.lang.Thread.State: TIMED_WAITING (parking)
                                    at sun.misc.Unsafe.park(Native Method)
                                    - parking to wait for  <0x0f0b1db8> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
                                    at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:198)
                                    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2025)
                                    at java.util.concurrent.DelayQueue.take(DelayQueue.java:164)
                                    at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:583)
                                    at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:576)
                                    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
                                    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
                                    at java.lang.Thread.run(Thread.java:619)
                                    at org.jboss.threads.JBossThread.run(JBossThread.java:122)

                               Locked ownable synchronizers:
                                    - None

                            "Transaction Expired Entry Monitor" daemon prio=6 tid=0x36268800 nid=0x1658 in Object.wait() [0x3726f000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    - waiting on <0x0f4601e8> (a com.arjuna.ats.internal.arjuna.recovery.ExpiredEntryMonitor)
                                    at com.arjuna.ats.internal.arjuna.recovery.ExpiredEntryMonitor.run(ExpiredEntryMonitor.java:190)
                                    - locked <0x0f4601e8> (a com.arjuna.ats.internal.arjuna.recovery.ExpiredEntryMonitor)

                               Locked ownable synchronizers:
                                    - None

                            "http-localhost-127.0.0.1-8080-Acceptor-0" daemon prio=6 tid=0x36268400 nid=0x11d0 runnable [0x3721f000]
                               java.lang.Thread.State: RUNNABLE
                                    at java.net.PlainSocketImpl.socketAccept(Native Method)
                                    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:390)
                                    - locked <0x0f324630> (a java.net.SocksSocketImpl)
                                    at java.net.ServerSocket.implAccept(ServerSocket.java:453)
                                    at java.net.ServerSocket.accept(ServerSocket.java:421)
                                    at org.apache.tomcat.util.net.DefaultServerSocketFactory.acceptSocket(DefaultServerSocketFactory.java:61)
                                    at org.apache.tomcat.util.net.JIoEndpoint$Acceptor.run(JIoEndpoint.java:321)
                                    at java.lang.Thread.run(Thread.java:619)

                               Locked ownable synchronizers:
                                    - None

                            "http-localhost-127.0.0.1-8080-Poller" daemon prio=6 tid=0x36267c00 nid=0x1cec in Object.wait() [0x371cf000]
                               java.lang.Thread.State: TIMED_WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at org.apache.tomcat.util.net.JIoEndpoint$Poller.run(JIoEndpoint.java:742)
                                    - locked <0x0f325c28> (a org.apache.tomcat.util.net.JIoEndpoint$Poller)
                                    at java.lang.Thread.run(Thread.java:619)

                               Locked ownable synchronizers:
                                    - None

                            "DeploymentScanner-threads - 1" prio=6 tid=0x36267800 nid=0x364 waiting on condition [0x3717f000]
                               java.lang.Thread.State: TIMED_WAITING (parking)
                                    at sun.misc.Unsafe.park(Native Method)
                                    - parking to wait for  <0x0f0b1db8> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
                                    at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:198)
                                    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2025)
                                    at java.util.concurrent.DelayQueue.take(DelayQueue.java:164)
                                    at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:583)
                                    at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:576)
                                    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
                                    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
                                    at java.lang.Thread.run(Thread.java:619)
                                    at org.jboss.threads.JBossThread.run(JBossThread.java:122)

                               Locked ownable synchronizers:
                                    - None

                            "ContainerBackgroundProcessor[StandardEngine[jboss.web]]" daemon prio=6 tid=0x34e88000 nid=0x1ba8 waiting on condition [0x370df000]
                               java.lang.Thread.State: TIMED_WAITING (sleeping)
                                    at java.lang.Thread.sleep(Native Method)
                                    at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.run(ContainerBase.java:1579)
                                    at java.lang.Thread.run(Thread.java:619)

                               Locked ownable synchronizers:
                                    - None

                            "Timer-0" prio=6 tid=0x36266c00 nid=0xe50 in Object.wait() [0x3708f000]
                               java.lang.Thread.State: WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    - waiting on <0x0f178fe0> (a java.util.TaskQueue)
                                    at java.lang.Object.wait(Object.java:485)
                                    at java.util.TimerThread.mainLoop(Timer.java:483)
                                    - locked <0x0f178fe0> (a java.util.TaskQueue)
                                    at java.util.TimerThread.run(Timer.java:462)

                               Locked ownable synchronizers:
                                    - None

                            "ConnectionValidator" daemon prio=6 tid=0x34e87800 nid=0x1230 waiting on condition [0x3703f000]
                               java.lang.Thread.State: TIMED_WAITING (parking)
                                    at sun.misc.Unsafe.park(Native Method)
                                    - parking to wait for  <0x0f0b0e78> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
                                    at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:198)
                                    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2116)
                                    at org.jboss.jca.core.connectionmanager.pool.validator.ConnectionValidator$ConnectionValidatorRunner.run(ConnectionValidator.java:263)
                                    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
                                    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
                                    at java.lang.Thread.run(Thread.java:619)

                               Locked ownable synchronizers:
                                    - <0x0f0b1100> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)

                            "IdleRemover" daemon prio=6 tid=0x34e87400 nid=0x1708 waiting on condition [0x36fef000]
                               java.lang.Thread.State: TIMED_WAITING (parking)
                                    at sun.misc.Unsafe.park(Native Method)
                                    - parking to wait for  <0x0f0b03c8> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
                                    at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:198)
                                    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2116)
                                    at org.jboss.jca.core.connectionmanager.pool.idle.IdleRemover$IdleRemoverRunner.run(IdleRemover.java:261)
                                    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
                                    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
                                    at java.lang.Thread.run(Thread.java:619)

                               Locked ownable synchronizers:
                                    - <0x0f0b0650> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)

                            "Remoting "01hw186271" write-1" prio=6 tid=0x34e86c00 nid=0xc24 runnable [0x36f9f000]
                               java.lang.Thread.State: RUNNABLE
                                    at sun.nio.ch.WindowsSelectorImpl$SubSelector.poll0(Native Method)
                                    at sun.nio.ch.WindowsSelectorImpl$SubSelector.poll(WindowsSelectorImpl.java:273)
                                    at sun.nio.ch.WindowsSelectorImpl$SubSelector.access$400(WindowsSelectorImpl.java:255)
                                    at sun.nio.ch.WindowsSelectorImpl.doSelect(WindowsSelectorImpl.java:136)
                                    at sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:69)
                                    - locked <0x0f08d580> (a sun.nio.ch.Util$1)
                                    - locked <0x0f08d570> (a java.util.Collections$UnmodifiableSet)
                                    - locked <0x0f08d350> (a sun.nio.ch.WindowsSelectorImpl)
                                    at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:80)
                                    at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:84)
                                    at org.xnio.nio.WorkerThread.run(WorkerThread.java:153)

                               Locked ownable synchronizers:
                                    - None

                            "Remoting "01hw186271" read-1" prio=6 tid=0x34e86800 nid=0x1670 runnable [0x36f4f000]
                               java.lang.Thread.State: RUNNABLE
                                    at sun.nio.ch.WindowsSelectorImpl$SubSelector.poll0(Native Method)
                                    at sun.nio.ch.WindowsSelectorImpl$SubSelector.poll(WindowsSelectorImpl.java:273)
                                    at sun.nio.ch.WindowsSelectorImpl$SubSelector.access$400(WindowsSelectorImpl.java:255)
                                    at sun.nio.ch.WindowsSelectorImpl.doSelect(WindowsSelectorImpl.java:136)
                                    at sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:69)
                                    - locked <0x0f089ae0> (a sun.nio.ch.Util$1)
                                    - locked <0x0f089ad0> (a java.util.Collections$UnmodifiableSet)
                                    - locked <0x0f0898b0> (a sun.nio.ch.WindowsSelectorImpl)
                                    at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:80)
                                    at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:84)
                                    at org.xnio.nio.WorkerThread.run(WorkerThread.java:153)

                               Locked ownable synchronizers:
                                    - None

                            "Remoting "01hw186271:MANAGEMENT" write-1" prio=6 tid=0x34f3ac00 nid=0x1f18 runnable [0x3686f000]
                               java.lang.Thread.State: RUNNABLE
                                    at sun.nio.ch.WindowsSelectorImpl$SubSelector.poll0(Native Method)
                                    at sun.nio.ch.WindowsSelectorImpl$SubSelector.poll(WindowsSelectorImpl.java:273)
                                    at sun.nio.ch.WindowsSelectorImpl$SubSelector.access$400(WindowsSelectorImpl.java:255)
                                    at sun.nio.ch.WindowsSelectorImpl.doSelect(WindowsSelectorImpl.java:136)
                                    at sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:69)
                                    - locked <0x0f0a9928> (a sun.nio.ch.Util$1)
                                    - locked <0x0f0a9918> (a java.util.Collections$UnmodifiableSet)
                                    - locked <0x0f0a96f8> (a sun.nio.ch.WindowsSelectorImpl)
                                    at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:80)
                                    at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:84)
                                    at org.xnio.nio.WorkerThread.run(WorkerThread.java:153)

                               Locked ownable synchronizers:
                                    - None

                            "Remoting "01hw186271:MANAGEMENT" read-1" prio=6 tid=0x34f3a400 nid=0x12d0 runnable [0x367cf000]
                               java.lang.Thread.State: RUNNABLE
                                    at sun.nio.ch.WindowsSelectorImpl$SubSelector.poll0(Native Method)
                                    at sun.nio.ch.WindowsSelectorImpl$SubSelector.poll(WindowsSelectorImpl.java:273)
                                    at sun.nio.ch.WindowsSelectorImpl$SubSelector.access$400(WindowsSelectorImpl.java:255)
                                    at sun.nio.ch.WindowsSelectorImpl.doSelect(WindowsSelectorImpl.java:136)
                                    at sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:69)
                                    - locked <0x0f081dd8> (a sun.nio.ch.Util$1)
                                    - locked <0x0f081dc8> (a java.util.Collections$UnmodifiableSet)
                                    - locked <0x0f081ba8> (a sun.nio.ch.WindowsSelectorImpl)
                                    at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:80)
                                    at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:84)
                                    at org.xnio.nio.WorkerThread.run(WorkerThread.java:153)

                               Locked ownable synchronizers:
                                    - None

                            "DestroyJavaVM" prio=6 tid=0x0215a000 nid=0x1540 waiting on condition [0x00000000]
                               java.lang.Thread.State: RUNNABLE

                               Locked ownable synchronizers:
                                    - None

                            "MSC service thread 1-4" prio=6 tid=0x34ddc000 nid=0x1948 waiting on condition [0x3529f000]
                               java.lang.Thread.State: WAITING (parking)
                                    at sun.misc.Unsafe.park(Native Method)
                                    - parking to wait for  <0x0ed0d728> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
                                    at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
                                    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
                                    at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
                                    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
                                    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
                                    at java.lang.Thread.run(Thread.java:619)

                               Locked ownable synchronizers:
                                    - None

                            "MSC service thread 1-3" prio=6 tid=0x34e4ac00 nid=0x1954 waiting on condition [0x3524f000]
                               java.lang.Thread.State: WAITING (parking)
                                    at sun.misc.Unsafe.park(Native Method)
                                    - parking to wait for  <0x0ed0d728> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
                                    at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
                                    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
                                    at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
                                    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
                                    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
                                    at java.lang.Thread.run(Thread.java:619)

                               Locked ownable synchronizers:
                                    - None

                            "MSC service thread 1-2" prio=6 tid=0x34e4b800 nid=0x1bc0 waiting on condition [0x351ff000]
                               java.lang.Thread.State: WAITING (parking)
                                    at sun.misc.Unsafe.park(Native Method)
                                    - parking to wait for  <0x0ed0d728> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
                                    at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
                                    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
                                    at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
                                    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
                                    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
                                    at java.lang.Thread.run(Thread.java:619)

                               Locked ownable synchronizers:
                                    - None

                            "MSC service thread 1-1" prio=6 tid=0x34e4a400 nid=0x1a14 waiting on condition [0x351af000]
                               java.lang.Thread.State: WAITING (parking)
                                    at sun.misc.Unsafe.park(Native Method)
                                    - parking to wait for  <0x0ed0d728> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
                                    at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
                                    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987)
                                    at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:399)
                                    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
                                    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
                                    at java.lang.Thread.run(Thread.java:619)

                               Locked ownable synchronizers:
                                    - None

                            "Reference Reaper" daemon prio=6 tid=0x34ad1c00 nid=0x1138 in Object.wait() [0x34caf000]
                               java.lang.Thread.State: WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    - waiting on <0x0ec20860> (a java.lang.ref.ReferenceQueue$Lock)
                                    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:118)
                                    - locked <0x0ec20860> (a java.lang.ref.ReferenceQueue$Lock)
                                    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:134)
                                    at org.jboss.modules.ref.References$ReaperThread.run(References.java:68)

                               Locked ownable synchronizers:
                                    - None

                            "Low Memory Detector" daemon prio=6 tid=0x020c3400 nid=0x1adc runnable [0x00000000]
                               java.lang.Thread.State: RUNNABLE

                               Locked ownable synchronizers:
                                    - None

                            "CompilerThread0" daemon prio=10 tid=0x020be400 nid=0x1164 waiting on condition [0x00000000]
                               java.lang.Thread.State: RUNNABLE

                               Locked ownable synchronizers:
                                    - None

                            "Attach Listener" daemon prio=10 tid=0x020bb400 nid=0x1788 waiting on condition [0x00000000]
                               java.lang.Thread.State: RUNNABLE

                               Locked ownable synchronizers:
                                    - None

                            "Signal Dispatcher" daemon prio=10 tid=0x020b8400 nid=0x159c runnable [0x00000000]
                               java.lang.Thread.State: RUNNABLE

                               Locked ownable synchronizers:
                                    - None

                            "Finalizer" daemon prio=8 tid=0x0208e000 nid=0x1404 in Object.wait() [0x3447f000]
                               java.lang.Thread.State: WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:118)
                                    - locked <0x0ec009b0> (a java.lang.ref.ReferenceQueue$Lock)
                                    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:134)
                                    at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)

                               Locked ownable synchronizers:
                                    - None

                            "Reference Handler" daemon prio=10 tid=0x02089400 nid=0xb88 in Object.wait() [0x0214f000]
                               java.lang.Thread.State: WAITING (on object monitor)
                                    at java.lang.Object.wait(Native Method)
                                    at java.lang.Object.wait(Object.java:485)
                                    at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
                                    - locked <0x0ec008b8> (a java.lang.ref.Reference$Lock)

                               Locked ownable synchronizers:
                                    - None

                            "VM Thread" prio=10 tid=0x02086800 nid=0x1814 runnable

                            "VM Periodic Task Thread" prio=10 tid=0x020d5000 nid=0x15e0 waiting on condition

                            JNI global references: 1622


                            D:\jboss-as-7.1.1.Final-FO\bin>

                             

                            Could you please check it once.Is it correct or not let me know.

                             

                            Thanks for your time.

                             

                            Thanks,

                            Poorna

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                             

                            • 11. Re: JBOSS 7.1.1.Final - Server Hanging Issue
                              nickarls

                              In what way are you using quarts? Are you sure you're not accessing a DB resource in some @PostConstruct?

                              • 12. Re: JBOSS 7.1.1.Final - Server Hanging Issue
                                poorna.sama

                                Hi Nicklas,

                                 

                                    Thanks for the reply.

                                 

                                    I am able to resolve this problem with the below change in stand-alone.xml.

                                 

                                   <deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000" deployment-timeout="5400"/>

                                 

                                I have increased to the deployment-timeout from 1800 to 5400.I am able to deploy the war file.

                                 

                                But 5400 sec means 90 minutes.

                                 

                                Here i am not happy with this solution.Could you please suggest me how to resolve this issue with less time-out.

                                 

                                Could you please check it once.Your help will be appreciated.Thanks for your time.

                                 

                                Thanks,

                                Poorna