-
1. Re: High CPU usages after start Gossip server.
swapsralhi May 29, 2014 12:25 AM (in response to swapsralhi)Can anyone help me on it please...!!!
-
2. Re: High CPU usages after start Gossip server.
belaban May 29, 2014 2:59 AM (in response to swapsralhi)You provided close to zero information, I nobody will be able to help you unless you provide
- Setup and configuration
- Perhaps a small demo program which reproduces the issue
- JGroups version used
- Stack trace of the GossipRouter
When this happens, it should be simple to see what the GosipRouter is doing which causes the high CPU spikes
-
3. Re: High CPU usages after start Gossip server.
swapsralhi May 29, 2014 3:25 AM (in response to belaban)My apology here is the information that you want from my side.
- JGroups version: 2.6.10
- JBoss 5.1.0.GA
- i am using JBoss clustering in Amazon EC2 my both server in a different zone. my configuration is as follows and i am using TCPGOSSIP.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE protocol_stacks [
<!ENTITY shared-udp '
<!-- UDP transport config meant to be shared between different channels
with different requirements. Message bundling is disabled in this
general-purpose config as it can add latency to synchronous RPCs. -->
<UDP
singleton_name="shared-udp"
mcast_port="${jboss.jgroups.udp.mcast_port:45688}"
mcast_addr="${jboss.partition.udpGroup:228.11.11.11}"
tos="8"
ucast_recv_buf_size="20000000"
ucast_send_buf_size="640000"
mcast_recv_buf_size="25000000"
mcast_send_buf_size="640000"
loopback="true"
discard_incompatible_packets="true"
enable_bundling="false"
max_bundle_size="64000"
max_bundle_timeout="30"
use_incoming_packet_handler="true"
ip_ttl="${jgroups.udp.ip_ttl:2}"
thread_naming_pattern="cl"
timer.num_threads="12"
enable_diagnostics="${jboss.jgroups.enable_diagnostics:true}"
diagnostics_addr="${jboss.jgroups.diagnostics_addr:224.0.0.75}"
diagnostics_port="${jboss.jgroups.diagnostics_port:7500}"
use_concurrent_stack="true"
thread_pool.enabled="true"
thread_pool.min_threads="20"
thread_pool.max_threads="200"
thread_pool.keep_alive_time="5000"
thread_pool.queue_enabled="true"
thread_pool.queue_max_size="1000"
thread_pool.rejection_policy="discard"
oob_thread_pool.enabled="true"
oob_thread_pool.min_threads="1"
oob_thread_pool.max_threads="20"
oob_thread_pool.keep_alive_time="5000"
oob_thread_pool.queue_enabled="false"
oob_thread_pool.queue_max_size="100"
oob_thread_pool.rejection_policy="run"/>
'>
]>
<!--
Standard JGroups protocol stacks definitions, used by the JChannelFactory bean.
Author: Bela Ban, Brian Stansberry
Version: $Id:jgroups-channelfactory-stacks.xml 71313 2008-03-26 19:46:59Z bstansberry@jboss.com $
-->
<protocol_stacks>
<stack name="udp"
description="Default: IP multicast based stack, with flow control.">
<config>
<!-- UDP transport config meant to be shared between different channels,
including a JBoss Messaging channel that uses the 'jbm-control'
stack listed below. Message bundling is disabled, as it can add
latency to synchronous group RPCs. Services that only make
asynchronous RPCs (e.g. JBoss Cache configured for REPL_ASYNC)
and do so in high volume may be able to improve performance by
configuring their cache to use the udp-async stack below.
Services that only make synchronous RPCs (e.g. JBoss Cache
configured for REPL_SYNC or INVALIDATION_SYNC) may be able
to improve performance by using the udp-sync stack below, which
does not include flow control.
The UDP config is included via an XML entity to ensure that
it remains consistent between this stack and the 'jbm-control'
stack below.
-->
&shared-udp;
<PING timeout="2000" num_initial_members="3"/>
<MERGE2 max_interval="100000" min_interval="20000"/>
<FD_SOCK/>
<FD timeout="6000" max_tries="5" shun="true"/>
<VERIFY_SUSPECT timeout="1500"/>
<pbcast.NAKACK use_mcast_xmit="false" gc_lag="0"
retransmit_timeout="300,600,1200,2400,4800"
discard_delivered_msgs="true"/>
<UNICAST timeout="300,600,1200,2400,3600"/>
<pbcast.STABLE stability_delay="1000" desired_avg_gossip="50000"
max_bytes="400000"/>
<pbcast.GMS print_local_addr="true" join_timeout="3000"
shun="true"
view_bundling="true"
view_ack_collection_timeout="5000"/>
<FC max_credits="2000000" min_threshold="0.10"
ignore_synchronous_response="true"/>
<FRAG2 frag_size="60000"/>
<!-- pbcast.STREAMING_STATE_TRANSFER/ -->
<pbcast.STATE_TRANSFER/>
<pbcast.FLUSH timeout="0"/>
</config>
</stack>
<stack name="udp-async"
description="Same as the default 'udp' stack above, except message bundling
is enabled in the transport protocol (enable_bundling=true).
Useful for services that make high-volume asynchronous
RPCs (e.g. high volume JBoss Cache instances configured
for REPL_ASYNC) where message bundling may improve performance.">
<config>
<UDP
singleton_name="udp-async"
mcast_port="${jboss.jgroups.udp_async.mcast_port:45689}"
mcast_addr="${jboss.partition.udpGroup:228.11.11.11}"
tos="8"
ucast_recv_buf_size="20000000"
ucast_send_buf_size="640000"
mcast_recv_buf_size="25000000"
mcast_send_buf_size="640000"
loopback="true"
discard_incompatible_packets="true"
enable_bundling="false"
max_bundle_size="64000"
max_bundle_timeout="30"
use_incoming_packet_handler="true"
ip_ttl="${jgroups.udp.ip_ttl:2}"
thread_naming_pattern="cl"
timer.num_threads="12"
enable_diagnostics="${jboss.jgroups.enable_diagnostics:true}"
diagnostics_addr="${jboss.jgroups.diagnostics_addr:224.0.0.75}"
diagnostics_port="${jboss.jgroups.diagnostics_port:7500}"
use_concurrent_stack="true"
thread_pool.enabled="true"
thread_pool.min_threads="8"
thread_pool.max_threads="200"
thread_pool.keep_alive_time="5000"
thread_pool.queue_enabled="true"
thread_pool.queue_max_size="1000"
thread_pool.rejection_policy="discard"
oob_thread_pool.enabled="true"
oob_thread_pool.min_threads="1"
oob_thread_pool.max_threads="8"
oob_thread_pool.keep_alive_time="5000"
oob_thread_pool.queue_enabled="false"
oob_thread_pool.queue_max_size="100"
oob_thread_pool.rejection_policy="run"/>
<PING timeout="2000" num_initial_members="3"/>
<MERGE2 max_interval="100000" min_interval="20000"/>
<FD_SOCK/>
<FD timeout="6000" max_tries="5" shun="true"/>
<VERIFY_SUSPECT timeout="1500"/>
<pbcast.NAKACK use_mcast_xmit="false" gc_lag="0"
retransmit_timeout="300,600,1200,2400,4800"
discard_delivered_msgs="true"/>
<UNICAST timeout="300,600,1200,2400,3600"/>
<pbcast.STABLE stability_delay="1000" desired_avg_gossip="50000"
max_bytes="400000"/>
<pbcast.GMS print_local_addr="true" join_timeout="3000"
shun="true"
view_bundling="true"
view_ack_collection_timeout="5000"/>
<FC max_credits="2000000" min_threshold="0.10"
ignore_synchronous_response="true"/>
<FRAG2 frag_size="60000"/>
<!-- pbcast.STREAMING_STATE_TRANSFER/ -->
<pbcast.STATE_TRANSFER/>
<pbcast.FLUSH timeout="0"/>
</config>
</stack>
<stack name="udp-sync"
description="IP multicast based stack, without flow control and
without message bundling. This should be used instead
of 'udp' if (1) synchronous calls are used and (2) the
message volume (rate and size) is not that large. Don't
use this configuration if you send messages at a high
sustained rate, or you might run out of memory">
<config>
<UDP
singleton_name="udp_sync"
mcast_port="${jboss.jgroups.udp_sync.mcast_port:45699}"
mcast_addr="${jboss.partition.udpGroup:229.11.11.11}"
tos="8"
ucast_recv_buf_size="20000000"
ucast_send_buf_size="640000"
mcast_recv_buf_size="25000000"
mcast_send_buf_size="640000"
loopback="true"
discard_incompatible_packets="true"
enable_bundling="false"
max_bundle_size="64000"
max_bundle_timeout="30"
use_incoming_packet_handler="true"
ip_ttl="${jgroups.udp.ip_ttl:2}"
enable_diagnostics="${jboss.jgroups.enable_diagnostics:true}"
diagnostics_addr="${jboss.jgroups.diagnostics_addr:224.0.0.75}"
diagnostics_port="${jboss.jgroups.diagnostics_port:7500}"
use_concurrent_stack="true"
thread_pool.enabled="true"
thread_pool.min_threads="8"
thread_pool.max_threads="200"
thread_pool.keep_alive_time="5000"
thread_pool.queue_enabled="true"
thread_pool.queue_max_size="1000"
thread_pool.rejection_policy="discard"
oob_thread_pool.enabled="true"
oob_thread_pool.min_threads="1"
oob_thread_pool.max_threads="8"
oob_thread_pool.keep_alive_time="5000"
oob_thread_pool.queue_enabled="false"
oob_thread_pool.queue_max_size="100"
oob_thread_pool.rejection_policy="run"/>
<PING timeout="2000" num_initial_members="3"/>
<MERGE2 max_interval="100000" min_interval="20000"/>
<FD_SOCK/>
<FD timeout="6000" max_tries="5" shun="true"/>
<VERIFY_SUSPECT timeout="1500"/>
<pbcast.NAKACK use_mcast_xmit="false" gc_lag="0"
retransmit_timeout="300,600,1200,2400,4800"
discard_delivered_msgs="true"/>
<UNICAST timeout="300,600,1200,2400,3600"/>
<pbcast.STABLE stability_delay="1000" desired_avg_gossip="50000"
max_bytes="400000"/>
<pbcast.GMS print_local_addr="true" join_timeout="3000"
shun="true"
view_bundling="true"
view_ack_collection_timeout="5000"/>
<FRAG2 frag_size="60000"/>
<!--pbcast.STREAMING_STATE_TRANSFER/ -->
<pbcast.STATE_TRANSFER/>
<pbcast.FLUSH timeout="0"/>
</config>
</stack>
<stack name="tcp"
description="TCP based stack, with flow control and message bundling.
TCP stacks are usually used when IP multicasting cannot
be used in a network, e.g. because it is disabled (e.g.
routers discard multicast)">
<config>
<TCP
singleton_name="tcp"
start_port="${jboss.jgroups.tcp.tcp_port:7600}"
tcp_nodelay="true"
loopback="false"
recv_buf_size="20000000"
send_buf_size="640000"
discard_incompatible_packets="true"
max_bundle_size="64000"
max_bundle_timeout="30"
use_incoming_packet_handler="true"
enable_bundling="true"
use_send_queues="false"
sock_conn_timeout="300"
skip_suspected_members="true"
timer.num_threads="12"
enable_diagnostics="${jboss.jgroups.enable_diagnostics:true}"
diagnostics_addr="${jboss.jgroups.diagnostics_addr:224.0.0.75}"
diagnostics_port="${jboss.jgroups.diagnostics_port:7500}"
use_concurrent_stack="true"
thread_pool.enabled="true"
thread_pool.min_threads="20"
thread_pool.max_threads="200"
thread_pool.keep_alive_time="5000"
thread_pool.queue_enabled="true"
thread_pool.queue_max_size="1000"
thread_pool.rejection_policy="discard"
oob_thread_pool.enabled="true"
oob_thread_pool.min_threads="1"
oob_thread_pool.max_threads="20"
oob_thread_pool.keep_alive_time="5000"
oob_thread_pool.queue_enabled="false"
oob_thread_pool.queue_max_size="100"
oob_thread_pool.rejection_policy="run"/>
<!-- Alternative 1: multicast-based automatic discovery. -->
<MPING timeout="3000"
num_initial_members="3"
mcast_addr="${jboss.partition.udpGroup:230.11.11.11}"
mcast_port="${jgroups.tcp.mping_mcast_port:45700}"
ip_ttl="${jgroups.udp.ip_ttl:2}"/>
<!-- Alternative 2: non multicast-based replacement for MPING. Requires a static configuration
of *all* possible cluster members.-->
<!-- <TCPPING timeout="3000"
initial_hosts="${jgroups.tcpping.initial_hosts:localhost[7600],localhost[7601]}"
port_range="1"
num_initial_members="3"/> -->
<TCPGOSSIP initial_hosts="X.X.X.X[5555],X.X.X.X[5555]"
gossip_refresh_rate="60000"
num_initial_members="3"
up_thread="true" down_thread="true"/>
<MERGE2 max_interval="100000" min_interval="20000"/>
<FD_SOCK/>
<FD timeout="6000" max_tries="5" shun="true"/>
<VERIFY_SUSPECT timeout="1500"/>
<pbcast.NAKACK use_mcast_xmit="false" gc_lag="0"
retransmit_timeout="300,600,1200,2400,4800"
discard_delivered_msgs="true"/>
<UNICAST timeout="300,600,1200,2400,3600"/>
<pbcast.STABLE stability_delay="1000" desired_avg_gossip="50000"
max_bytes="400000"/>
<pbcast.GMS print_local_addr="true" join_timeout="3000"
shun="true"
view_bundling="true"
view_ack_collection_timeout="5000"/>
<FC max_credits="2000000" min_threshold="0.10"
ignore_synchronous_response="true"/>
<FRAG2 frag_size="60000"/>
<!-- pbcast.STREAMING_STATE_TRANSFER/ -->
<pbcast.STATE_TRANSFER/>
<pbcast.FLUSH timeout="0"/>
</config>
</stack>
<stack name="tcp-sync"
description="TCP based stack, without flow control and without
message bundling. TCP stacks are usually used when IP
multicasting cannot be used in a network (e.g.routers
discard multicast). This configuration should be used
instead of 'tcp' above when (1) synchronous calls are
used and (2) the message volume (rate and size) is not
that large.">
<config>
<TCP
singleton_name="tcp_sync"
start_port="${jboss.jgroups.tcp_sync.tcp_port:7650}"
tcp_nodelay="true"
loopback="false"
recv_buf_size="20000000"
send_buf_size="640000"
discard_incompatible_packets="true"
max_bundle_size="64000"
max_bundle_timeout="30"
use_incoming_packet_handler="true"
enable_bundling="false"
use_send_queues="false"
sock_conn_timeout="300"
skip_suspected_members="true"
enable_diagnostics="${jboss.jgroups.enable_diagnostics:true}"
diagnostics_addr="${jboss.jgroups.diagnostics_addr:224.0.0.75}"
diagnostics_port="${jboss.jgroups.diagnostics_port:7500}"
use_concurrent_stack="true"
thread_pool.enabled="true"
thread_pool.min_threads="8"
thread_pool.max_threads="200"
thread_pool.keep_alive_time="5000"
thread_pool.queue_enabled="true"
thread_pool.queue_max_size="1000"
thread_pool.rejection_policy="discard"
oob_thread_pool.enabled="true"
oob_thread_pool.min_threads="1"
oob_thread_pool.max_threads="8"
oob_thread_pool.keep_alive_time="5000"
oob_thread_pool.queue_enabled="false"
oob_thread_pool.queue_max_size="100"
oob_thread_pool.rejection_policy="run"/>
<!-- Alternative 1: multicast-based automatic discovery. -->
<MPING timeout="3000"
num_initial_members="3"
mcast_addr="${jboss.partition.udpGroup:231.11.11.11}"
mcast_port="${jboss.jgroups.tcp_sync.mping_mcast_port:45701}"
ip_ttl="${jgroups.udp.ip_ttl:2}"/>
<!-- Alternative 2: non multicast-based replacement for MPING. Requires a static configuration
of all possible cluster members.
<TCPPING timeout="3000"
initial_hosts="${jgroups.tcpping.initial_hosts:localhost[7650],localhost[7651]}"
port_range="1"
num_initial_members="3"/>
-->
<MERGE2 max_interval="100000" min_interval="20000"/>
<FD_SOCK/>
<FD timeout="6000" max_tries="5" shun="true"/>
<VERIFY_SUSPECT timeout="1500"/>
<pbcast.NAKACK use_mcast_xmit="false" gc_lag="0"
retransmit_timeout="300,600,1200,2400,4800"
discard_delivered_msgs="true"/>
<UNICAST timeout="300,600,1200,2400,3600"/>
<pbcast.STABLE stability_delay="1000" desired_avg_gossip="50000"
max_bytes="400000"/>
<pbcast.GMS print_local_addr="true" join_timeout="3000"
shun="true"
view_bundling="true"
view_ack_collection_timeout="5000"/>
<!-- pbcast.STREAMING_STATE_TRANSFER/ -->
<pbcast.STATE_TRANSFER/>
<pbcast.FLUSH timeout="0"/>
</config>
</stack>
<stack name="jbm-control"
description="Stack optimized for the JBoss Messaging Control Channel">
<config>
<!-- By default we use the same UDP transport protocol config as is
used for the default 'udp' stack defined above. This allows
the JBoss Messaging Control Channel to use the same sockets,
network buffers and thread pools as are used by the other
standard JBoss AS clustered services.
The UDP config is included via an XML entity to ensure that
it remains consistent between this stack and the 'udp'
stack above.
-->
&shared-udp;
<PING timeout="2000"
num_initial_members="3"/>
<MERGE2 max_interval="100000"
min_interval="20000"/>
<FD_SOCK />
<FD timeout="6000" max_tries="5" shun="true"/>
<VERIFY_SUSPECT timeout="1500" />
<BARRIER />
<pbcast.NAKACK use_stats_for_retransmission="false"
exponential_backoff="150"
use_mcast_xmit="true" gc_lag="0"
retransmit_timeout="50,300,600,1200"
discard_delivered_msgs="true"/>
<UNICAST timeout="300,600,1200,2400,3600"/>
<pbcast.STABLE stability_delay="1000" desired_avg_gossip="50000"
max_bytes="400000"/>
<VIEW_SYNC avg_send_interval="10000"/>
<pbcast.GMS print_local_addr="true" join_timeout="3000"
shun="true"
view_bundling="true"/>
<FC max_credits="500000" min_threshold="0.20"
ignore_synchronous_response="true"/>
<FRAG2 frag_size="60000" />
<pbcast.STATE_TRANSFER/>
<pbcast.FLUSH timeout="20000"/>
</config>
</stack>
<stack name="jbm-data"
description="Stack optimized for the JBoss Messaging Data Channel">
<config>
<TCP singleton_name="jbm-data"
start_port="${jboss.messaging.datachanneltcpport:7900}"
loopback="true"
recv_buf_size="20000000"
send_buf_size="640000"
discard_incompatible_packets="true"
max_bundle_size="64000"
max_bundle_timeout="30"
use_incoming_packet_handler="true"
enable_bundling="false"
use_send_queues="false"
sock_conn_timeout="300"
skip_suspected_members="true"
enable_diagnostics="${jboss.jgroups.enable_diagnostics:true}"
diagnostics_addr="${jboss.jgroups.diagnostics_addr:224.0.0.75}"
diagnostics_port="${jboss.jgroups.diagnostics_port:7500}"
use_concurrent_stack="true"
thread_pool.enabled="true"
thread_pool.min_threads="8"
thread_pool.max_threads="200"
thread_pool.keep_alive_time="5000"
thread_pool.queue_enabled="true"
thread_pool.queue_max_size="500"
thread_pool.rejection_policy="discard"
oob_thread_pool.enabled="true"
oob_thread_pool.min_threads="1"
oob_thread_pool.max_threads="100"
oob_thread_pool.keep_alive_time="5000"
oob_thread_pool.queue_enabled="false"
oob_thread_pool.queue_max_size="100"
oob_thread_pool.rejection_policy="run"/>
<MPING timeout="5000"
mcast_addr="${jboss.partition.udpGroup:228.6.6.6}"
mcast_port="${jboss.messaging.datachanneludpport:45710}"
ip_ttl="${jboss.messaging.ipttl:8}"
num_initial_members="5"
num_ping_requests="3"/>
<MERGE2 max_interval="100000" min_interval="20000"/>
<FD_SOCK/>
<FD timeout="6000" max_tries="5" shun="true"/>
<VERIFY_SUSPECT timeout="1500"/>
<BARRIER/>
<pbcast.NAKACK use_mcast_xmit="false" gc_lag="0"
retransmit_timeout="300,600,1200,2400,4800"
discard_delivered_msgs="true"/>
<UNICAST timeout="300,600,1200,2400,3600"/>
<pbcast.STABLE stability_delay="1000" desired_avg_gossip="50000"
max_bytes="400000"/>
<VIEW_SYNC avg_send_interval="10000"/>
<pbcast.GMS print_local_addr="true" join_timeout="3000"
shun="true" view_bundling="true"/>
</config>
</stack>
</protocol_stacks>
- To start gossip server i am using this configuration in a file called gossip.sh.
export JBOSS_HOME="/media/ephemeral0/home/iocs/jboss-5.1.0.GA"
export JAVA_HOME=/usr/local/java
export PATH=$JAVA_HOME/bin:$PATH
java -cp $JBOSS_HOME/server/sw/lib/jgroups.jar:$JBOSS_HOME/lib/commons-logging.jar:$JBOSS_HOME/lib/concurrent-1.3.2.jar org.jgroups.stack.GossipRouter -port 5555 -expiry 300000 -bindaddress 0.0.0.0- When i run gossip.sh command i am getting this output in console
GossipRouter is starting (JGroups version: 2.6.10)
GossipRouter started at Thu May 29 07:05:17 UTC 2014
Listening on port 5555 bound on address /0.0.0.0
Backlog is 1000, linger timeout is 2000, and read timeout is 3000
-
4. Re: High CPU usages after start Gossip server.
belaban May 29, 2014 8:47 AM (in response to swapsralhi)I don't support 2.6.x anymore, you should upgrade to a more recent release.
What's the stack trace of the GR when this is happening ?
Also, you define X.X.X.X[5555] as location of the GR *twice*, I assume you're using 2 separate GRs ?
-
5. Re: High CPU usages after start Gossip server.
swapsralhi May 30, 2014 5:19 AM (in response to belaban)- for my environment which version you suggest?
- I am getting nothing in monitor.
- Yes i am using 2 separate GRs
-
6. Re: High CPU usages after start Gossip server.
belaban May 30, 2014 5:47 AM (in response to swapsralhi)3.4.x. Can you provide a stack trace of the GossipRouter ?
-
7. Re: High CPU usages after start Gossip server.
swapsralhi May 30, 2014 9:02 AM (in response to belaban)I got something
when i start gossip server manual it's working properly but when i start my server automatically my CPU usages go high.
trace of my gossip server....
starting GOSSIP for
GossipRouter is starting (JGroups version: 2.6.10)
GossipRouter started at Fri May 30 12:59:56 UTC 2014
Listening on port 5555 bound on address /0.0.0.0
Backlog is 1000, linger timeout is 2000, and read timeout is 3000
-
8. Re: High CPU usages after start Gossip server.
belaban May 30, 2014 11:50 AM (in response to swapsralhi)That's still not a stack trace...
-
9. Re: High CPU usages after start Gossip server.
swapsralhi Jun 3, 2014 3:38 AM (in response to belaban)Apology for delay
server 1 stack trace.....
2014-06-03 08:30:23,468 INFO [org.jboss.web.WebService] (main) Using RMI server codebase: http://10.43.2.200:8083/
2014-06-03 08:30:29,405 INFO [org.jboss.wsf.stack.jbws.NativeServerConfig] (main) JBoss Web Services - Stack Native Core
2014-06-03 08:30:29,405 INFO [org.jboss.wsf.stack.jbws.NativeServerConfig] (main) 3.1.2.GA
2014-06-03 08:30:30,430 INFO [org.jboss.dependency.plugins.AttributeCallbackItem] (main) Owner callback not implemented.
2014-06-03 08:30:31,797 INFO [org.jboss.logbridge.LogNotificationListener] (main) Adding notification listener for logging mbean "jboss.system:service=Logging,type=Log4jService" to server org.jboss.mx.server.MBeanServerImpl@4ab34646[ defaultDomain='null' ]
2014-06-03 08:31:18,975 INFO [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] (main) Encountered deployment AbstractVFSDeploymentContext@739742560{vfsfile:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/profileservice-secured.jar/}
2014-06-03 08:31:18,976 INFO [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] (main) Encountered deployment AbstractVFSDeploymentContext@739742560{vfsfile:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/profileservice-secured.jar/}
2014-06-03 08:31:18,976 INFO [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] (main) Encountered deployment AbstractVFSDeploymentContext@739742560{vfsfile:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/profileservice-secured.jar/}
2014-06-03 08:31:18,976 INFO [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] (main) Encountered deployment AbstractVFSDeploymentContext@739742560{vfsfile:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/profileservice-secured.jar/}
2014-06-03 08:31:21,587 INFO [org.jboss.mail.MailService] (main) Mail Service bound to java:/Mail
2014-06-03 08:31:22,073 INFO [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] (main) SNMP agent going active
2014-06-03 08:31:24,058 WARN [org.jgroups.protocols.TCPGOSSIP] (main) down_thread was deprecated and is ignored
2014-06-03 08:31:24,059 WARN [org.jgroups.protocols.TCPGOSSIP] (main) up_thread was deprecated and is ignored
2014-06-03 08:31:24,075 ERROR [org.jgroups.protocols.TCPGOSSIP] (main) exeption is java.lang.NumberFormatException: For input string: ""
2014-06-03 08:31:24,249 INFO [org.jboss.ha.framework.interfaces.HAPartition.DocsPartition] (main) Initializing partition DocsPartition
2014-06-03 08:31:24,329 INFO [STDOUT] (JBoss System Threads(1)-3)
---------------------------------------------------------
GMS: address is 10.43.2.200:7600 (cluster=DocsPartition)
---------------------------------------------------------
2014-06-03 08:31:24,428 INFO [org.jboss.cache.jmx.PlatformMBeanServerRegistration] (main) JBossCache MBeans were successfully registered to the platform mbean server.
2014-06-03 08:31:24,435 WARN [org.jgroups.protocols.TCPGOSSIP] (main) down_thread was deprecated and is ignored
2014-06-03 08:31:24,435 WARN [org.jgroups.protocols.TCPGOSSIP] (main) up_thread was deprecated and is ignored
2014-06-03 08:31:24,436 ERROR [org.jgroups.protocols.TCPGOSSIP] (main) exeption is java.lang.NumberFormatException: For input string: ""
2014-06-03 08:31:24,510 INFO [STDOUT] (main)
---------------------------------------------------------
GMS: address is 10.43.2.200:7600 (cluster=DocsPartition-HAPartitionCache)
---------------------------------------------------------
2014-06-03 08:31:24,709 INFO [org.jboss.ha.framework.interfaces.HAPartition.DocsPartition] (JBoss System Threads(1)-3) Number of cluster members: 2
2014-06-03 08:31:24,711 INFO [org.jboss.ha.framework.interfaces.HAPartition.DocsPartition] (JBoss System Threads(1)-3) Other members: 1
2014-06-03 08:31:24,761 INFO [org.jboss.cache.RPCManagerImpl] (main) Received new cluster view: [10.43.3.200:7600|1] [10.43.3.200:7600, 10.43.2.200:7600]
2014-06-03 08:31:24,876 INFO [org.jboss.cache.statetransfer.LegacyStateTransferIntegrator] (Incoming-5,10.43.2.200:7600) Using version 4096
2014-06-03 08:31:24,922 INFO [org.jboss.cache.RPCManagerImpl] (main) Cache local address is 10.43.2.200:7600
2014-06-03 08:31:24,924 INFO [org.jboss.cache.RPCManagerImpl] (main) state was retrieved successfully (in 457 milliseconds)
2014-06-03 08:31:24,945 INFO [org.jboss.cache.factories.ComponentRegistry] (main) JBoss Cache version: JBossCache 'Cascabel' 3.1.0.GA
2014-06-03 08:31:24,945 INFO [org.jboss.ha.framework.interfaces.HAPartition.DocsPartition] (main) Fetching serviceState (will wait for 30000 milliseconds):
2014-06-03 08:31:25,188 INFO [org.jboss.ha.framework.interfaces.HAPartition.DocsPartition] (main) serviceState was retrieved successfully (in 243 milliseconds)
2014-06-03 08:31:25,302 INFO [org.jboss.ha.jndi.HANamingService] (main) Started HAJNDI bootstrap; jnpPort=1100, backlog=50, bindAddress=/0.0.0.0
2014-06-03 08:31:25,306 INFO [org.jboss.ha.jndi.DetachedHANamingService$AutomaticDiscovery] (main) Listening on /0.0.0.0:1102, group=230.0.0.4, HA-JNDI address=10.43.2.200:1100
2014-06-03 08:31:26,044 INFO [org.jboss.invocation.unified.server.UnifiedInvokerHA] (main) Service name is jboss:service=invoker,type=unifiedha
2014-06-03 08:31:26,623 WARN [org.jboss.jms.server.jbosssx.JBossASSecurityMetadataStore] (main) WARNING! POTENTIAL SECURITY RISK. It has been detected that the MessageSucker component which sucks messages from one node to another has not had its password changed from the installation default. Please see the JBoss Messaging user guide for instructions on how to do this.
2014-06-03 08:31:26,645 WARN [org.jboss.annotation.factory.AnnotationCreator] (main) No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent
2014-06-03 08:31:26,885 WARN [org.jboss.annotation.factory.AnnotationCreator] (main) No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent
2014-06-03 08:31:26,935 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) JBossTS Transaction Service (JTA version - tag:JBOSSTS_4_6_1_GA) - JBoss Inc.
2014-06-03 08:31:26,936 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) Setting up property manager MBean and JMX layer
2014-06-03 08:31:27,144 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) Initializing recovery manager
2014-06-03 08:31:27,254 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) Recovery manager configured
2014-06-03 08:31:27,254 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) Binding TransactionManager JNDI Reference
2014-06-03 08:31:27,283 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) Starting transaction recovery manager
2014-06-03 08:31:27,676 INFO [org.apache.catalina.core.AprLifecycleListener] (main) The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/local/jdk1.6.0_45/jre/lib/amd64/server:/usr/local/jdk1.6.0_45/jre/lib/amd64:/usr/local/jdk1.6.0_45/jre/../lib/amd64:/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
2014-06-03 08:31:27,737 INFO [org.apache.coyote.http11.Http11Protocol] (main) Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
2014-06-03 08:31:27,738 INFO [org.apache.coyote.ajp.AjpProtocol] (main) Initializing Coyote AJP/1.3 on ajp-0.0.0.0-8009
2014-06-03 08:31:27,759 INFO [org.apache.catalina.core.StandardService] (main) Starting service jboss.web
2014-06-03 08:31:27,761 INFO [org.apache.catalina.core.StandardEngine] (main) Starting Servlet Engine: JBoss Web/2.1.3.GA
2014-06-03 08:31:27,808 INFO [org.apache.catalina.startup.Catalina] (main) Server startup in 70 ms
2014-06-03 08:31:27,827 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/invoker
2014-06-03 08:31:28,323 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/jbossws
2014-06-03 08:31:28,351 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/web-console
2014-06-03 08:31:28,615 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/juddi
2014-06-03 08:31:28,647 INFO [org.apache.juddi.registry.RegistryServlet] (main) Loading jUDDI configuration.
2014-06-03 08:31:28,648 INFO [org.apache.juddi.registry.RegistryServlet] (main) Resources loaded from: /WEB-INF/juddi.properties
2014-06-03 08:31:28,648 INFO [org.apache.juddi.registry.RegistryServlet] (main) Initializing jUDDI components.
2014-06-03 08:31:28,854 INFO [org.jboss.resource.deployers.RARDeployment] (main) Required license terms exist, view vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/jboss-local-jdbc.rar/META-INF/ra.xml
2014-06-03 08:31:28,868 INFO [org.jboss.resource.deployers.RARDeployment] (main) Required license terms exist, view vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/jboss-xa-jdbc.rar/META-INF/ra.xml
2014-06-03 08:31:28,888 INFO [org.jboss.resource.deployers.RARDeployment] (main) Required license terms exist, view vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/jms-ra.rar/META-INF/ra.xml
2014-06-03 08:31:29,046 INFO [org.jboss.resource.deployers.RARDeployment] (main) Required license terms exist, view vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/mail-ra.rar/META-INF/ra.xml
2014-06-03 08:31:29,072 INFO [org.jboss.resource.deployers.RARDeployment] (main) Required license terms exist, view vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/quartz-ra.rar/META-INF/ra.xml
2014-06-03 08:31:29,154 INFO [org.quartz.simpl.SimpleThreadPool] (main) Job execution threads will use class loader of thread: main
2014-06-03 08:31:29,186 INFO [org.quartz.core.QuartzScheduler] (main) Quartz Scheduler v.1.5.2 created.
2014-06-03 08:31:29,189 INFO [org.quartz.simpl.RAMJobStore] (main) RAMJobStore initialized.
2014-06-03 08:31:29,189 INFO [org.quartz.impl.StdSchedulerFactory] (main) Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
2014-06-03 08:31:29,190 INFO [org.quartz.impl.StdSchedulerFactory] (main) Quartz scheduler version: 1.5.2
2014-06-03 08:31:29,190 INFO [org.quartz.core.QuartzScheduler] (main) Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
2014-06-03 08:31:29,848 INFO [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] (main) Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
2014-06-03 08:31:30,340 INFO [org.jboss.jms.server.ServerPeer] (main) JBoss Messaging 1.4.3.GA server [100] started
2014-06-03 08:31:30,576 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) Connector bisocket://ip-10-43-2-200:4457 has leasing enabled, lease period 10000 milliseconds
2014-06-03 08:31:30,588 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) org.jboss.jms.server.connectionfactory.ConnectionFactory@4f446b05 started
2014-06-03 08:31:30,633 INFO [org.jboss.jms.server.destination.QueueService] (main) Queue[/queue/ExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
2014-06-03 08:31:30,658 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) Connector bisocket://ip-10-43-2-200:4457 has leasing enabled, lease period 10000 milliseconds
2014-06-03 08:31:30,659 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) org.jboss.jms.server.connectionfactory.ConnectionFactory@559e45f4 started
2014-06-03 08:31:30,662 INFO [org.jboss.jms.server.destination.QueueService] (main) Queue[/queue/IOCSIAcceptNotificationQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
2014-06-03 08:31:30,665 INFO [org.jboss.jms.server.destination.QueueService] (main) Queue[/queue/DLQ] started, fullSize=200000, pageSize=2000, downCacheSize=2000
2014-06-03 08:31:30,669 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactoryJNDIMapper] (main) supportsFailover attribute is true on connection factory: jboss.messaging.connectionfactory:service=ClusteredConnectionFactory but post office is non clustered. So connection factory will *not* support failover
2014-06-03 08:31:30,669 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactoryJNDIMapper] (main) supportsLoadBalancing attribute is true on connection factory: jboss.messaging.connectionfactory:service=ClusteredConnectionFactory but post office is non clustered. So connection factory will *not* support load balancing
2014-06-03 08:31:30,679 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) Connector bisocket://ip-10-43-2-200:4457 has leasing enabled, lease period 10000 milliseconds
2014-06-03 08:31:30,679 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) org.jboss.jms.server.connectionfactory.ConnectionFactory@63917066 started
2014-06-03 08:31:30,805 INFO [org.jboss.resource.adapter.jdbc.remote.WrapperDataSourceService] (main) Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=jdbc/iocs-cbu-ds' to JNDI name 'jdbc/iocs-cbu-ds'
2014-06-03 08:31:30,874 INFO [org.jboss.resource.adapter.jdbc.remote.WrapperDataSourceService] (main) Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=jdbc/iocs-ds' to JNDI name 'jdbc/iocs-ds'
2014-06-03 08:31:30,955 INFO [org.jboss.resource.adapter.jdbc.remote.WrapperDataSourceService] (main) Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=jdbc/iocs-vault-ds' to JNDI name 'jdbc/iocs-vault-ds'
2014-06-03 08:31:31,075 INFO [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] (main) Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
2014-06-03 08:31:31,629 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Created KernelDeployment for: profileservice-secured.jar
2014-06-03 08:31:31,634 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) installing bean: jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3
2014-06-03 08:31:31,634 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) with dependencies:
2014-06-03 08:31:31,634 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and demands:
2014-06-03 08:31:31,635 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SecureManagementView/remote-org.jboss.deployers.spi.management.ManagementView
2014-06-03 08:31:31,635 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jboss.ejb:service=EJBTimerService
2014-06-03 08:31:31,635 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and supplies:
2014-06-03 08:31:31,635 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Class:org.jboss.profileservice.spi.ProfileService
2014-06-03 08:31:31,636 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SecureProfileService/remote
2014-06-03 08:31:31,636 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SecureProfileService/remote-org.jboss.profileservice.spi.ProfileService
2014-06-03 08:31:31,636 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Added bean(jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3) to KernelDeployment of: profileservice-secured.jar
2014-06-03 08:31:31,637 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) installing bean: jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3
2014-06-03 08:31:31,638 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) with dependencies:
2014-06-03 08:31:31,638 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and demands:
2014-06-03 08:31:31,638 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jboss.ejb:service=EJBTimerService
2014-06-03 08:31:31,638 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and supplies:
2014-06-03 08:31:31,638 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SecureDeploymentManager/remote-org.jboss.deployers.spi.management.deploy.DeploymentManager
2014-06-03 08:31:31,638 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Class:org.jboss.deployers.spi.management.deploy.DeploymentManager
2014-06-03 08:31:31,639 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SecureDeploymentManager/remote
2014-06-03 08:31:31,639 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Added bean(jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3) to KernelDeployment of: profileservice-secured.jar
2014-06-03 08:31:31,640 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) installing bean: jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3
2014-06-03 08:31:31,640 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) with dependencies:
2014-06-03 08:31:31,640 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and demands:
2014-06-03 08:31:31,640 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jboss.ejb:service=EJBTimerService
2014-06-03 08:31:31,640 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and supplies:
2014-06-03 08:31:31,641 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SecureManagementView/remote-org.jboss.deployers.spi.management.ManagementView
2014-06-03 08:31:31,641 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Class:org.jboss.deployers.spi.management.ManagementView
2014-06-03 08:31:31,641 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SecureManagementView/remote
2014-06-03 08:31:31,641 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Added bean(jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3) to KernelDeployment of: profileservice-secured.jar
2014-06-03 08:31:31,647 INFO [org.jboss.ejb3.endpoint.deployers.EJB3EndpointDeployer] (main) Deploy AbstractBeanMetaData@5fddc74a{name=jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl properties=[container] constructor=null autowireCandidate=true}
2014-06-03 08:31:31,648 INFO [org.jboss.ejb3.endpoint.deployers.EJB3EndpointDeployer] (main) Deploy AbstractBeanMetaData@43678c81{name=jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl properties=[container] constructor=null autowireCandidate=true}
2014-06-03 08:31:31,648 INFO [org.jboss.ejb3.endpoint.deployers.EJB3EndpointDeployer] (main) Deploy AbstractBeanMetaData@77044129{name=jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl properties=[container] constructor=null autowireCandidate=true}
2014-06-03 08:31:31,745 INFO [org.jboss.ejb3.session.SessionSpecContainer] (main) Starting jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3
2014-06-03 08:31:31,757 INFO [org.jboss.ejb3.EJBContainer] (main) STARTED EJB: org.jboss.profileservice.ejb.SecureDeploymentManager ejbName: SecureDeploymentManager
2014-06-03 08:31:31,817 INFO [org.jboss.ejb3.proxy.impl.jndiregistrar.JndiSessionRegistrarBase] (main) Binding the following Entries in Global JNDI:
SecureDeploymentManager/remote - EJB3.x Default Remote Business Interface
SecureDeploymentManager/remote-org.jboss.deployers.spi.management.deploy.DeploymentManager - EJB3.x Remote Business Interface
2014-06-03 08:31:31,937 INFO [org.jboss.ejb3.session.SessionSpecContainer] (main) Starting jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3
2014-06-03 08:31:31,938 INFO [org.jboss.ejb3.EJBContainer] (main) STARTED EJB: org.jboss.profileservice.ejb.SecureManagementView ejbName: SecureManagementView
2014-06-03 08:31:31,959 INFO [org.jboss.ejb3.proxy.impl.jndiregistrar.JndiSessionRegistrarBase] (main) Binding the following Entries in Global JNDI:
SecureManagementView/remote - EJB3.x Default Remote Business Interface
SecureManagementView/remote-org.jboss.deployers.spi.management.ManagementView - EJB3.x Remote Business Interface
2014-06-03 08:31:32,021 INFO [org.jboss.ejb3.session.SessionSpecContainer] (main) Starting jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3
2014-06-03 08:31:32,023 INFO [org.jboss.ejb3.EJBContainer] (main) STARTED EJB: org.jboss.profileservice.ejb.SecureProfileServiceBean ejbName: SecureProfileService
2014-06-03 08:31:32,033 INFO [org.jboss.ejb3.proxy.impl.jndiregistrar.JndiSessionRegistrarBase] (main) Binding the following Entries in Global JNDI:
SecureProfileService/remote - EJB3.x Default Remote Business Interface
SecureProfileService/remote-org.jboss.profileservice.spi.ProfileService - EJB3.x Remote Business Interface
2014-06-03 08:31:32,170 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/admin-console
2014-06-03 08:31:32,242 INFO [javax.enterprise.resource.webcontainer.jsf.config] (main) Initializing Mojarra (1.2_12-b01-FCS) for context '/admin-console'
2014-06-03 08:31:35,673 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/IOCS
2014-06-03 08:31:36,056 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/IOCS]] (main) Initializing Spring root WebApplicationContext
2014-06-03 08:31:36,056 INFO [org.springframework.web.context.ContextLoader] (main) Root WebApplicationContext: initialization started
2014-06-03 08:31:36,139 INFO [org.springframework.web.context.support.XmlWebApplicationContext] (main) Refreshing Root WebApplicationContext: startup date [Tue Jun 03 08:31:36 GMT+01:00 2014]; root of context hierarchy
2014-06-03 08:31:36,305 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (main) Loading XML bean definitions from ServletContext resource [/WEB-INF/spring-ws-servlet.xml]
2014-06-03 08:31:36,401 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (main) Loading XML bean definitions from ServletContext resource [/WEB-INF/hibernateContext.xml]
2014-06-03 08:31:36,555 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (main) Loading XML bean definitions from ServletContext resource [/WEB-INF/applicationContext.xml]
2014-06-03 08:31:36,642 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (main) Loading XML bean definitions from ServletContext resource [/WEB-INF/eSignatureContext.xml]
2014-06-03 08:31:36,676 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (main) Loading XML bean definitions from ServletContext resource [/WEB-INF/eIDnVContext.xml]
2014-06-03 08:31:36,692 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (main) Loading XML bean definitions from ServletContext resource [/WEB-INF/bespoke-applicationContext.xml]
2014-06-03 08:31:36,728 INFO [org.springframework.beans.factory.support.DefaultListableBeanFactory] (main) Overriding bean definition for bean 'faxService': replacing [Generic bean: class [com.iocs.client.silanis.impl.fax.faxserviceimpl.FaxServiceImpl]; 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/eSignatureContext.xml]] with [Generic bean: class [com.iocs.client.silanis.impl.fax.faxserviceimpl.FaxServiceImpl]; 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/spring-ws-servlet.xml]]
2014-06-03 08:31:37,031 INFO [org.springframework.beans.factory.config.PropertyPlaceholderConfigurer] (main) Loading properties file from URL [file:/media/ephemeral0/home/iocs/external_properties/iocs//silanis-client.properties]
2014-06-03 08:31:37,031 INFO [org.springframework.beans.factory.config.PropertyPlaceholderConfigurer] (main) Loading properties file from URL [file:/media/ephemeral0/home/iocs/external_properties/iocs//callcredit-client.properties]
2014-06-03 08:31:37,031 INFO [org.springframework.beans.factory.config.PropertyPlaceholderConfigurer] (main) Loading properties file from URL [file:/media/ephemeral0/home/iocs/external_properties/iocs//hibernate-config.properties]
2014-06-03 08:31:37,032 INFO [org.springframework.beans.factory.config.PropertyPlaceholderConfigurer] (main) Loading properties file from URL [file:/media/ephemeral0/home/iocs/external_properties/iocs//retailer-config.properties]
2014-06-03 08:31:37,032 INFO [org.springframework.beans.factory.config.PropertyPlaceholderConfigurer] (main) Loading properties file from URL [file:/media/ephemeral0/home/iocs/external_properties/iocs//amazons3-config.properties]
2014-06-03 08:31:37,108 INFO [org.springframework.beans.factory.support.DefaultListableBeanFactory] (main) Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@27ad9523: defining beans [propertyConfigurer,propertyFileLocations,dataSource,sessionFactory,txManager,hibernateTemplate,log4jInitializer,retailerDAOImpl,txAdvice,org.springframework.aop.config.internalAutoProxyCreator,loggingPointCut,databaseHelperOperation,exceptionhandler,org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor#0,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,springApplicationContextProvider,businessDelegate,MessageDAOInf,errorMessageMapping,authenticateBO,applicantsBO,partnerSystemsBO,agentBO,partnerBO,publishLogoBO,partnerSystemRefDAO,retailerDAO,idChecksDAO,identificationItemDAO,transactionDAO,helperServices,financialDetailsDAO,phoneNumberDAO,applicantAddressDAO,partnerDAO,publishLogoDAO,agentDAO,userDAO,customBrandDAO,templateDAO,documentDAO,persistenceManager,connectionFactory,jmsTemplate,sendDestination,messageListener,jmsContainer,deleteUtil,storedProcedureDAO,s3FileUtility,eSignatureClient,processManager,singleSigneeDocumentManager,faxService,callCreditClient,bespokeBusinessDelegate,bespokeAuthenticateBO,bespokeAuthenticateDAO,internal-schema,external-schema,messagFactory,webServiceTemplate12,marshaller,iocs-internal,iocs-global,org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping#0,InitiateTransactionEndpoint,CancelTransactionEndpoint,autoSignEndpoint,downloadEvidenceEndpoint,IsAliveEndPoint,ProcessIDCheckEndpoint,ProcessURLBasedEsignatureEndpoint,ProcessTransactionEndpoint,ResumeTransactionEndpoint,verifyUserEndpoint,authenticateUserEndpoint,customBrandingEndpoint,processESignatureEndpoint,DownloadAgreementPackageServiceEndpoint,BespokeAuthenticationEndpoint,processESignatureService,verifyUserService,downloadAgreementPackageService,downloadEvidenceService,genericMarshallingMethodEndpointAdapter]; root of factory hierarchy
2014-06-03 08:31:37,507 INFO [org.hibernate.cfg.Environment] (main) Hibernate 3.2.0.cr5
2014-06-03 08:31:37,513 INFO [org.hibernate.cfg.Environment] (main) hibernate.properties not found
2014-06-03 08:31:37,527 INFO [org.hibernate.cfg.Environment] (main) Bytecode provider name : cglib
2014-06-03 08:31:37,531 INFO [org.hibernate.cfg.Environment] (main) using JDK 1.4 java.sql.Timestamp handling
2014-06-03 08:31:37,685 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.AddressTypes -> address_types
2014-06-03 08:31:37,705 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.AddressTypes.applicantAddresseses -> address_usages
2014-06-03 08:31:37,728 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.ApplicantAddresses -> applicant_addresses
2014-06-03 08:31:37,800 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.ApplicantAddresses.addressTypeses -> address_usages
2014-06-03 08:31:37,818 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.ApplicantCategories -> applicant_categories
2014-06-03 08:31:37,837 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.ApplicantCategoryTypes -> applicant_category_types
2014-06-03 08:31:37,860 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.Applicants -> applicants
2014-06-03 08:31:37,884 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.AuthenticationTokenRefs -> authentication_token_refs
2014-06-03 08:31:37,905 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.CardProviderType -> card_provider_type
2014-06-03 08:31:37,923 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.CreditCardDetails -> credit_card_details
2014-06-03 08:31:37,947 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.Documents -> documents
2014-06-03 08:31:37,972 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DocumentStatuses -> document_statuses
2014-06-03 08:31:37,996 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DocumentStatusHistory -> document_status_history
2014-06-03 08:31:38,016 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DocumentTypes -> document_types
2014-06-03 08:31:38,034 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.FinancialDetails -> financial_details
2014-06-03 08:31:38,053 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IdentificationItems -> identification_items
2014-06-03 08:31:38,072 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IdentificationTypes -> identification_types
2014-06-03 08:31:38,090 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IdItemDetails -> id_item_details
2014-06-03 08:31:38,108 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IdTypeDetails -> id_type_details
2014-06-03 08:31:38,127 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerRoles -> partner_roles
2014-06-03 08:31:38,145 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerRoleTypes -> partner_role_types
2014-06-03 08:31:38,165 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.Partners -> partners
2014-06-03 08:31:38,184 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerSystemRefs -> partner_system_refs
2014-06-03 08:31:38,205 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerSystems -> partner_systems
2014-06-03 08:31:38,238 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PdfTemplates -> PDF_templates
2014-06-03 08:31:38,274 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PhoneNumbers -> phone_numbers
2014-06-03 08:31:38,307 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.TemplatePage -> template_page
2014-06-03 08:31:38,346 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.Transactions -> transactions
2014-06-03 08:31:38,380 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.TransactionStatuses -> transaction_statuses
2014-06-03 08:31:38,397 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.TransactionStatusHistory -> transaction_status_history
2014-06-03 08:31:38,415 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.Users -> users
2014-06-03 08:31:38,432 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerMessages -> partner_messages
2014-06-03 08:31:38,448 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.SystemParameters -> system_parameters
2014-06-03 08:31:38,465 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.MessageMappings -> message_mappings
2014-06-03 08:31:38,482 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.AgreementTypes -> agreement_types
2014-06-03 08:31:38,499 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.EsignatureAnchorType -> esignature_anchor_type
2014-06-03 08:31:38,517 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.EsignaturePositions -> esignature_positions
2014-06-03 08:31:38,534 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IdCheckTypes -> id_check_types
2014-06-03 08:31:38,552 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IdChecks -> id_checks
2014-06-03 08:31:38,569 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerChecksConfiguration -> partner_checks_configuration
2014-06-03 08:31:38,586 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerChecksCompositions -> partner_checks_compositions
2014-06-03 08:31:38,603 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.RetailerFiParams -> retailer_fi_params
2014-06-03 08:31:38,620 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.EsignatureParams -> esignature_params
2014-06-03 08:31:38,637 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerSystemCreds -> partner_system_creds
2014-06-03 08:31:38,655 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.RetailerEidnvParams -> retailer_eidnv_params
2014-06-03 08:31:38,672 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IocsMessages -> iocs_messages
2014-06-03 08:31:38,688 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IocsErrorType -> iocs_error_type
2014-06-03 08:31:38,705 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.RetailerRedirectUrl -> retailer_redirect_url
2014-06-03 08:31:38,722 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.UrlTypes -> url_types
2014-06-03 08:31:38,738 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.FormFieldEsignaturePositions -> form_field_esignature_positions
2014-06-03 08:31:38,755 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerSystemCustomBrand -> partner_system_custom_brand
2014-06-03 08:31:38,773 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.AgentDetails -> agent_details
2014-06-03 08:31:38,790 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.AwsTemplateMaster -> aws_template_master
2014-06-03 08:31:38,807 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DocumentFormat -> document_format
2014-06-03 08:31:38,825 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.EsignatureDocuments -> esignature_documents
2014-06-03 08:31:38,843 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.TemplateReferences -> template_references
2014-06-03 08:31:38,860 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.TransactionAgents -> transaction_agents
2014-06-03 08:31:38,878 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.TransactionApplicants -> transaction_applicants
2014-06-03 08:31:38,895 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.TemplateReferencesRoles -> template_references_roles
2014-06-03 08:31:38,913 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.EsignatureRoles -> esignature_roles
2014-06-03 08:31:38,927 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.bespoke.domain.NextUserDetails -> next_user_details
2014-06-03 08:31:38,941 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.bespoke.domain.DummyTable -> dummy_table
2014-06-03 08:31:38,955 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.CallValidateResult -> callvalidate_details
2014-06-03 08:31:38,968 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerBespokeParams -> partner_bespoke_params
2014-06-03 08:31:38,981 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerBespokeDetails -> partner_bespoke_details
2014-06-03 08:31:38,993 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DealerTransactionURL -> dealer_transaction_url
2014-06-03 08:31:39,008 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DrivingLicenceCheck -> dricing_licence_check
2014-06-03 08:31:39,023 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DataCaptureField -> data_capture_field
2014-06-03 08:31:39,036 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.Question -> question
2014-06-03 08:31:39,049 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.AgreementTypeNameMapping -> agreement_type_name_mapping
2014-06-03 08:31:39,062 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.EmailTemplateNameMapping -> email_template_name_mapping
2014-06-03 08:31:39,074 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PublishLogo -> cbu_logo
2014-06-03 08:31:39,087 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IocsFaxNotification -> iocs_fax_notification
2014-06-03 08:31:39,100 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DeleteTransactions -> delete_transactions
2014-06-03 08:31:39,113 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.CustomerVerificationDtls -> customer_verification_dtls
2014-06-03 08:31:39,126 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerSystemCustomerVerificationMasters -> partner_system_customer_verification_masters
2014-06-03 08:31:39,127 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.ApplicantCategoryTypes.applicantCategorieses -> applicant_categories
2014-06-03 08:31:39,128 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Applicants.financialDetailses -> financial_details
2014-06-03 08:31:39,128 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Applicants.creditCardDetailses -> credit_card_details
2014-06-03 08:31:39,128 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Applicants.applicantAddresseses -> applicant_addresses
2014-06-03 08:31:39,128 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Applicants.transactionApplicantses -> transaction_applicants
2014-06-03 08:31:39,129 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Applicants.identificationItemses -> identification_items
2014-06-03 08:31:39,129 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Applicants.applicantCategorieses -> applicant_categories
2014-06-03 08:31:39,129 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Applicants.phoneNumberses -> phone_numbers
2014-06-03 08:31:39,129 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.CardProviderType.creditCardDetailses -> credit_card_details
2014-06-03 08:31:39,130 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Documents.esignatureDocumentses -> esignature_documents
2014-06-03 08:31:39,130 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Documents.documentStatusHistories -> document_status_history
2014-06-03 08:31:39,130 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.DocumentStatuses.documentStatusHistories -> document_status_history
2014-06-03 08:31:39,130 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.DocumentTypes.pdfTemplateses -> PDF_templates
2014-06-03 08:31:39,131 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.IdentificationItems.creditCardDetailses -> credit_card_details
2014-06-03 08:31:39,131 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.IdentificationItems.idItemDetailses -> id_item_details
2014-06-03 08:31:39,131 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.IdentificationTypes.identificationItemses -> identification_items
2014-06-03 08:31:39,131 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.IdentificationTypes.idTypeDetailses -> id_type_details
2014-06-03 08:31:39,132 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.IdTypeDetails.idItemDetailses -> id_item_details
2014-06-03 08:31:39,132 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.PartnerRoleTypes.partnerRoleses -> partner_roles
2014-06-03 08:31:39,132 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Partners.partnerSystemses -> partner_systems
2014-06-03 08:31:39,132 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Partners.partnerChecksConfigurations -> partner_checks_configuration
2014-06-03 08:31:39,133 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Partners.idCheckses -> id_checks
2014-06-03 08:31:39,133 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Partners.partnerRoleses -> partner_roles
2014-06-03 08:31:39,141 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Partners.userses -> users
2014-06-03 08:31:39,141 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Partners.pdfTemplateses -> PDF_templates
2014-06-03 08:31:39,141 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Partners.agreementTypeses -> agreement_types
2014-06-03 08:31:39,142 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.PartnerSystems.partnerSystemRefses -> partner_system_refs
2014-06-03 08:31:39,142 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.PartnerSystems.partnerMessageses -> partner_messages
2014-06-03 08:31:39,142 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.PartnerSystems.partnerSystemCustVeriConfigs -> partner_system_customer_verification_masters
2014-06-03 08:31:39,142 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.PdfTemplates.templatePages -> template_page
2014-06-03 08:31:39,143 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Transactions.transactionApplicantses -> transaction_applicants
2014-06-03 08:31:39,143 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Transactions.transactionAgentses -> transaction_agents
2014-06-03 08:31:39,143 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Transactions.transactionStatusHistories -> transaction_status_history
2014-06-03 08:31:39,143 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Transactions.partnerSystemRefses -> partner_system_refs
2014-06-03 08:31:39,144 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Transactions.partnerRoleses -> partner_roles
2014-06-03 08:31:39,144 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.TransactionStatuses.transactionStatusHistories -> transaction_status_history
2014-06-03 08:31:39,144 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Users.partnerChecksConfigurations -> partner_checks_configuration
2014-06-03 08:31:39,144 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.PartnerMessages.messageMappingses -> message_mappings
2014-06-03 08:31:39,145 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.AgreementTypes.formFieldEsignaturePositionses -> form_field_esignature_positions
2014-06-03 08:31:39,145 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.AgreementTypes.esignaturePositionses -> esignature_positions
2014-06-03 08:31:39,145 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.EsignatureAnchorType.esignaturePositionses -> esignature_positions
2014-06-03 08:31:39,145 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.IdCheckTypes.idCheckses -> id_checks
2014-06-03 08:31:39,146 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.IocsMessages.messageMappingses -> message_mappings
2014-06-03 08:31:39,146 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.AgentDetails.transactionAgentses -> transaction_agents
2014-06-03 08:31:39,146 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.AwsTemplateMaster.esignatureDocumentses -> esignature_documents
2014-06-03 08:31:39,146 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.AwsTemplateMaster.templateReferenceses -> template_references
2014-06-03 08:31:39,147 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.DocumentFormat.documentses -> documents
2014-06-03 08:31:39,147 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.TemplateReferences.templateReferencesRoleses -> template_references_roles
2014-06-03 08:31:39,147 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.EsignatureRoles.esignaturePositionses -> esignature_positions
2014-06-03 08:31:39,147 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.EsignatureRoles.formFieldEsignaturePositionses -> form_field_esignature_positions
2014-06-03 08:31:39,147 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.EsignatureRoles.templateReferencesRoleses -> template_references_roles
2014-06-03 08:31:39,157 INFO [org.springframework.orm.hibernate3.LocalSessionFactoryBean] (main) Building new Hibernate SessionFactory
2014-06-03 08:31:39,226 INFO [org.hibernate.connection.ConnectionProviderFactory] (main) Initializing connection provider: org.springframework.orm.hibernate3.LocalDataSourceConnectionProvider
2014-06-03 08:31:39,738 INFO [org.hibernate.cfg.SettingsFactory] (main) RDBMS: Microsoft SQL Server, version: 10.50.4297
2014-06-03 08:31:39,738 INFO [org.hibernate.cfg.SettingsFactory] (main) JDBC driver: Microsoft SQL Server JDBC Driver 2.0, version: 2.0.1803.100
2014-06-03 08:31:39,775 INFO [org.hibernate.dialect.Dialect] (main) Using dialect: com.iocs.dao.impl.SQLServerNativeDialect
2014-06-03 08:31:39,802 INFO [org.hibernate.transaction.TransactionFactoryFactory] (main) Transaction strategy: org.springframework.orm.hibernate3.SpringTransactionFactory
2014-06-03 08:31:39,804 INFO [org.hibernate.transaction.TransactionManagerLookupFactory] (main) No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
2014-06-03 08:31:39,804 INFO [org.hibernate.cfg.SettingsFactory] (main) Automatic flush during beforeCompletion(): disabled
2014-06-03 08:31:39,805 INFO [org.hibernate.cfg.SettingsFactory] (main) Automatic session close at end of transaction: disabled
2014-06-03 08:31:39,805 INFO [org.hibernate.cfg.SettingsFactory] (main) JDBC batch size: 50
2014-06-03 08:31:39,805 INFO [org.hibernate.cfg.SettingsFactory] (main) JDBC batch updates for versioned data: disabled
2014-06-03 08:31:39,807 INFO [org.hibernate.cfg.SettingsFactory] (main) Scrollable result sets: enabled
2014-06-03 08:31:39,808 INFO [org.hibernate.cfg.SettingsFactory] (main) JDBC3 getGeneratedKeys(): enabled
2014-06-03 08:31:39,811 INFO [org.hibernate.cfg.SettingsFactory] (main) Connection release mode: auto
2014-06-03 08:31:39,812 INFO [org.hibernate.cfg.SettingsFactory] (main) Default batch fetch size: 1
2014-06-03 08:31:39,814 INFO [org.hibernate.cfg.SettingsFactory] (main) Generate SQL with comments: disabled
2014-06-03 08:31:39,814 INFO [org.hibernate.cfg.SettingsFactory] (main) Order SQL updates by primary key: disabled
2014-06-03 08:31:39,821 INFO [org.hibernate.cfg.SettingsFactory] (main) Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
2014-06-03 08:31:39,824 INFO [org.hibernate.hql.ast.ASTQueryTranslatorFactory] (main) Using ASTQueryTranslatorFactory
2014-06-03 08:31:39,826 INFO [org.hibernate.cfg.SettingsFactory] (main) Query language substitutions: {}
2014-06-03 08:31:39,826 INFO [org.hibernate.cfg.SettingsFactory] (main) JPA-QL strict compliance: disabled
2014-06-03 08:31:39,826 INFO [org.hibernate.cfg.SettingsFactory] (main) Second-level cache: enabled
2014-06-03 08:31:39,826 INFO [org.hibernate.cfg.SettingsFactory] (main) Query cache: disabled
2014-06-03 08:31:39,827 INFO [org.hibernate.cfg.SettingsFactory] (main) Cache provider: org.hibernate.cache.NoCacheProvider
2014-06-03 08:31:39,827 INFO [org.hibernate.cfg.SettingsFactory] (main) Optimize cache for minimal puts: disabled
2014-06-03 08:31:39,827 INFO [org.hibernate.cfg.SettingsFactory] (main) Structured second-level cache entries: disabled
2014-06-03 08:31:39,840 INFO [org.hibernate.cfg.SettingsFactory] (main) Statistics: enabled
2014-06-03 08:31:39,851 INFO [org.hibernate.cfg.SettingsFactory] (main) Deleted entity synthetic identifier rollback: disabled
2014-06-03 08:31:39,851 INFO [org.hibernate.cfg.SettingsFactory] (main) Default entity-mode: pojo
2014-06-03 08:31:39,935 INFO [org.hibernate.impl.SessionFactoryImpl] (main) building session factory
2014-06-03 08:31:41,270 INFO [org.hibernate.impl.SessionFactoryObjectFactory] (main) Not binding factory to JNDI, no JNDI name configured
2014-06-03 08:31:41,275 INFO [org.hibernate.tool.hbm2ddl.SchemaValidator] (main) Running schema validator
2014-06-03 08:31:41,276 INFO [org.hibernate.tool.hbm2ddl.SchemaValidator] (main) fetching database metadata
2014-06-03 08:31:41,330 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.PDF_templates
2014-06-03 08:31:41,330 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [document_rules, id, template_name, end_datetime, document_types_code, partners_id, file_location, start_datetime]
2014-06-03 08:31:41,351 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.address_types
2014-06-03 08:31:41,351 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:41,359 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.address_usages
2014-06-03 08:31:41,359 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [address_types_code, applicant_address_id]
2014-06-03 08:31:41,368 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.agreement_type_name_mapping
2014-06-03 08:31:41,368 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, source, creation_datetime, agreement_name, agreement_type_id, partner_systems_id]
2014-06-03 08:31:41,377 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.agreement_types
2014-06-03 08:31:41,377 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [signature_type, agreement_type, id, agreement_types_version, agreement_type_desc, partners_id]
2014-06-03 08:31:41,390 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.applicant_addresses
2014-06-03 08:31:41,390 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [building_name, end_year, applicants_id, town_name, start_month, start_year, street_name, sub_building, mortgage_status, postcode, country_name, end_month, id, sequence_number, district_name, sub_street, building_number, residential_status, county_name]
2014-06-03 08:31:41,405 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.applicant_categories
2014-06-03 08:31:41,405 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [applicants_id, created_datetime, applicant_category_types_code]
2014-06-03 08:31:41,413 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.applicant_category_types
2014-06-03 08:31:41,413 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:41,429 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.applicants
2014-06-03 08:31:41,429 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [occupation, employment_status, work_street, middle_name, employer_name, surname, alternate_name, birth_year, id, first_name, username, children_under_18, title, employed_months, birth_month, work_town, work_department, former_surname, birth_day, gender, employed_years, marital_status, residence_type, email_address]
2014-06-03 08:31:41,449 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.callvalidate_details
2014-06-03 08:31:41,449 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [applicants, creation_datetime, id_check_status, ofa_namedata, ofa_addressmismatch, ofa_mismatchlevel, partner_systems_id, transaction_id, id, ofa_namemismatch, ofa_type, idcheckidentifier, ofa_accountmatchconfidence, ofa_postcodefound, ofa_potentiallyunconsented, resultxml, ofa_jointaccount]
2014-06-03 08:31:41,456 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.card_provider_type
2014-06-03 08:31:41,456 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:41,465 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.cbu_logo
2014-06-03 08:31:41,465 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, logo, partner_id, brandname, updateddate, createddate]
2014-06-03 08:31:41,476 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.credit_card_details
2014-06-03 08:31:41,476 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [applicants_id, card_number, start_month, start_year, expiry_year, cardholder_name, country, expiry_month, id, identification_items_id, card_provider_type_code, test_transaction_amount, deposit_ind, issue_number, security_code]
2014-06-03 08:31:41,491 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.customer_verification_dtls
2014-06-03 08:31:41,491 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [applicant_id, failcount, status, digit15, digit14, digit16, id, digit6, digit5, updateddatetime, digit8, digit7, digit10, digit9, digit11, digit12, digit13, partner_system_cust_veri_type, digit2, digit1, digit4, digit3]
2014-06-03 08:31:41,513 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.data_capture_field
2014-06-03 08:31:41,518 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [group_name, document_name, data_capature_method, page_number, size_x, size_y, id, default_selected, data_capture_label, esignature_roles_id, rotation, data_type, default_value, occurrence, question_id, agreement_type_id, anchor_point, disabled, offset_y, offset_x]
2014-06-03 08:31:41,530 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.dealer_transaction_url
2014-06-03 08:31:41,530 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, expiry_datetime, creation_datetime, activeflag, transactionuuid, call_validate_result_id, partner_systems_id, transactionurl]
2014-06-03 08:31:41,539 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.delete_transactions
2014-06-03 08:31:41,539 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, partner_system_id, updated_datetime, status, created_datetime, transactionuuid, transactionid, transaction_call_status, processguid]
2014-06-03 08:31:41,546 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.document_status_history
2014-06-03 08:31:41,546 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [document_statuses_code, documents_id, recorded_datetime]
2014-06-03 08:31:41,553 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.document_statuses
2014-06-03 08:31:41,553 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:41,559 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.document_types
2014-06-03 08:31:41,559 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:41,564 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.documents
2014-06-03 08:31:41,565 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, display_name, header_description, document_name, document_types_code, document_format_code]
2014-06-03 08:31:41,596 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.dricing_licence_check
2014-06-03 08:31:41,597 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [town_name, driving_licence_number, start_month, id_check_status, street_name, start_year, surname, alternate_name, partners_id, transactions_id, id, first_name, title, sub_street, former_surname, gender, status_updated_date, building_name, end_year, middle_name, sub_building, postcode, birth_year, number_attempts, status_change_datetime, end_month, birth_month, district_name, birth_day, building_number, county_name, zone, email_address]
2014-06-03 08:31:41,606 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.dummy_table
2014-06-03 08:31:41,606 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, reasons, password, iterationno, emailid]
2014-06-03 08:31:41,614 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.email_template_name_mapping
2014-06-03 08:31:41,615 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, source, creation_datetime, email_template_id, partner_systems_id, accept_template_file_name, initiate_template_file_name]
2014-06-03 08:31:41,621 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.esignature_anchor_type
2014-06-03 08:31:41,621 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [code, anchor_type]
2014-06-03 08:31:41,631 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.esignature_positions
2014-06-03 08:31:41,631 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [page_number, size_x, size_y, anchor_character, id, anchor_text, anchor_type_code, rotation, esignature_roles_id, occurrence, agreement_type_id, offset_y, offset_x]
2014-06-03 08:31:41,640 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.financial_details
2014-06-03 08:31:41,640 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [sort_code3, id, sort_code2, applicants_id, bank_name, account_holder_name, sort_code1, account_holder_months, bank_account_number, account_holder_years]
2014-06-03 08:31:41,647 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.id_item_details
2014-06-03 08:31:41,647 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, identification_items_id, item_value, id_type_details_id]
2014-06-03 08:31:41,654 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.id_type_details
2014-06-03 08:31:41,654 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, label_sequence, item_label, identification_types_code]
2014-06-03 08:31:41,660 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.identification_items
2014-06-03 08:31:41,660 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, applicants_id, identification_type_code]
2014-06-03 08:31:41,667 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.identification_types
2014-06-03 08:31:41,667 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:41,674 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.agent_details
2014-06-03 08:31:41,674 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, first_name, title, surname, agent_id, email_address]
2014-06-03 08:31:41,681 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.authentication_token_refs
2014-06-03 08:31:41,682 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, authentication_token, end_datetime, transactionuuid, retailer_reference_name, user_id, token_accessed_datetime, start_datetime]
2014-06-03 08:31:41,687 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.aws_template_master
2014-06-03 08:31:41,688 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, description, name]
2014-06-03 08:31:41,693 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.document_format
2014-06-03 08:31:41,693 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:41,700 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.esignature_documents
2014-06-03 08:31:41,700 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, aws_template_id, context_id, document_id, doc_index, document_roles]
2014-06-03 08:31:41,707 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.esignature_params
2014-06-03 08:31:41,707 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, esign_param_value, esign_param_name, fi_partner_systems_id]
2014-06-03 08:31:41,713 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.esignature_roles
2014-06-03 08:31:41,713 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, description, role]
2014-06-03 08:31:41,719 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.form_field_esignature_positions
2014-06-03 08:31:41,719 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, form_field_name, esignature_roles_id, agreement_type_id]
2014-06-03 08:31:41,725 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.id_check_types
2014-06-03 08:31:41,725 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:41,731 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.id_checks
2014-06-03 08:31:41,732 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [mandatory_pass, id, end_datetime, partners_id, check_type_code, start_datetime]
2014-06-03 08:31:41,738 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_checks_compositions
2014-06-03 08:31:41,738 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, config_id, end_datetime, eidv_checks_expr, start_datetime]
2014-06-03 08:31:41,745 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_checks_configuration
2014-06-03 08:31:41,745 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, end_datetime, eidv_checks_expr, user_id, partners_id, start_datetime]
2014-06-03 08:31:41,751 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_messages
2014-06-03 08:31:41,752 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, description, created_datetime, partner_message_code, partner_systems_id]
2014-06-03 08:31:41,759 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_system_creds
2014-06-03 08:31:41,759 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, username, end_datetime, destination_partner_system_id, source_partner_system_id, password, start_datetime]
2014-06-03 08:31:41,765 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_system_custom_brand
2014-06-03 08:31:41,766 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, retailer_partner_systems_id, brandname, location, brand_name, version]
2014-06-03 08:31:41,772 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.retailer_fi_params
2014-06-03 08:31:41,772 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [param_value, id, retailer_partner_systems_id, param_name, fi_partner_systems_id]
2014-06-03 08:31:41,779 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.template_references
2014-06-03 08:31:41,779 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, consent_flow, aws_template_id, partner_system_id, template_reference]
2014-06-03 08:31:41,784 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.template_references_roles
2014-06-03 08:31:41,784 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [esignature_roles_id, template_references_id]
2014-06-03 08:31:41,790 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.transaction_agents
2014-06-03 08:31:41,790 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [creation_datetime, agent_id, transactions_id]
2014-06-03 08:31:41,796 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.transaction_applicants
2014-06-03 08:31:41,796 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [applicants_id, primary_applicant_ind, transactions_id]
2014-06-03 08:31:41,802 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.iocs_error_type
2014-06-03 08:31:41,803 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:41,811 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.iocs_fax_notification
2014-06-03 08:31:41,811 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [esign_guid, id, creation_datetime, is_fax_status, documentid, transactionuuid, document_process_status, status_change_date, reject_reason]
2014-06-03 08:31:41,818 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.iocs_messages
2014-06-03 08:31:41,818 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [end_datetime, iocs_error_code, iocs_error_type, iocs_message, start_datetime]
2014-06-03 08:31:41,825 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.message_mappings
2014-06-03 08:31:41,825 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [end_datetime, iocs_error_code, partner_message_id, created_datetime, start_datetime]
2014-06-03 08:31:41,834 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.next_user_details
2014-06-03 08:31:41,834 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, creditlimit, creation_datetime, transactionuuid, userid, attemptnumber, accountstatus, amountpayable, chargeforcredit, transactionurl, password, emailid]
2014-06-03 08:31:41,841 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_bespoke_details
2014-06-03 08:31:41,841 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, partner_bespoke_params_id, creation_datetime, transactionuuid, paramvalue]
2014-06-03 08:31:41,848 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_bespoke_params
2014-06-03 08:31:41,848 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [paramname, id, partnersystemid, creation_datetime, request_response_param, ismandatory]
2014-06-03 08:31:41,854 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_role_types
2014-06-03 08:31:41,855 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:41,864 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_roles
2014-06-03 08:31:41,864 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, partner_role_types_code, partners_id, transactions_id]
2014-06-03 08:31:41,872 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_system_customer_verification_masters
2014-06-03 08:31:41,872 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [max_length, id, isactive, min_length, verification_type, partner_systems_id]
2014-06-03 08:31:41,879 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_system_refs
2014-06-03 08:31:41,879 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, partner_system_reference_name, partner_systems_id, partner_system_reference_value, transactions_id]
2014-06-03 08:31:41,886 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_systems
2014-06-03 08:31:41,886 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, ip_address, description, system_name, partners_id]
2014-06-03 08:31:41,890 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partners
2014-06-03 08:31:41,891 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [collaterol_directory, css_directory, id, end_datetime, partner_name, pdf_directory, start_datetime]
2014-06-03 08:31:41,898 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.phone_numbers
2014-06-03 08:31:41,898 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, mobile_phone, applicants_id, home_ex_directory, work_phone, home_phone]
2014-06-03 08:31:41,901 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.question
2014-06-03 08:31:41,901 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, question_text]
2014-06-03 08:31:41,909 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.retailer_eidnv_params
2014-06-03 08:31:41,909 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [param_value, id, retailer_partner_systems_id, end_datetime, param_name, eidnv_partner_systems_id, start_datetime]
2014-06-03 08:31:41,916 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.retailer_redirect_url
2014-06-03 08:31:41,916 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [url_type_code, id, environment, end_datetime, partner_systems_id, url, start_datetime]
2014-06-03 08:31:41,922 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.system_parameters
2014-06-03 08:31:41,922 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [variable_name, variable_value]
2014-06-03 08:31:41,929 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.template_page
2014-06-03 08:31:41,929 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [pdf_templates_id, page_number, page_name]
2014-06-03 08:31:41,935 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.transaction_status_history
2014-06-03 08:31:41,935 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [transaction_statuses_code, status_change_datetime, transactions_id]
2014-06-03 08:31:41,941 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.transaction_statuses
2014-06-03 08:31:41,941 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:41,947 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.transactions
2014-06-03 08:31:41,947 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [loan_amount, consent_flow, contract_status, creation_datetime, id, basket_amount, deposit_amount, eidv_response, latest_silanis_status, repayment_count, transactionuuid, channel, repayment_period]
2014-06-03 08:31:41,953 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.url_types
2014-06-03 08:31:41,953 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:41,958 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.users
2014-06-03 08:31:41,959 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, username, end_datetime, forename, surname, partners_id, password, start_datetime]
2014-06-03 08:31:42,092 INFO [org.springframework.orm.hibernate3.HibernateTransactionManager] (main) Using DataSource [org.jboss.resource.adapter.jdbc.WrapperDataSource@2bf16eab] of Hibernate SessionFactory for HibernateTransactionManager
2014-06-03 08:31:43,273 INFO [com.iocs.client.silanis.impl.ProcessManager] (main) AWS URL: http://internal-IRD-BE-Int-201384671.eu-west-1.elb.amazonaws.com:8080/aws/ws/services/Aws
2014-06-03 08:31:44,891 INFO [org.springframework.xml.xsd.commons.CommonsXsdSchemaCollection] (main) Loaded ServletContext resource [/WEB-INF/wsdl/internal-service-messages.xsd]
2014-06-03 08:31:44,941 INFO [org.springframework.xml.xsd.commons.CommonsXsdSchemaCollection] (main) Loaded ServletContext resource [/WEB-INF/wsdl/external-service-messages.xsd]
2014-06-03 08:31:45,038 INFO [org.springframework.oxm.jaxb.Jaxb2Marshaller] (main) Creating JAXBContext with classes to be bound [class com.iocs.service.generated.VerifyUserRequest,class com.iocs.service.generated.VerifyUserResponse,class com.iocs.service.generated.ProcessESignatureRequest,class com.iocs.service.generated.ProcessESignatureResponse,class com.iocs.service.generated.DownloadAgreementPackageRequest,class com.iocs.service.generated.DownloadAgreementPackageResponse,class com.iocs.service.generated.IsAliveRequest,class com.iocs.service.generated.IsAliveResponse,class com.iocs.service.generated.InitiateTransactionRequest,class com.iocs.service.generated.InitiateTransactionResponse,class com.iocs.service.generated.ResumeTransactionRequest,class com.iocs.service.generated.ResumeTransactionResponse,class com.iocs.service.generated.ProcessTransactionRequest,class com.iocs.service.generated.ProcessTransactionResponse,class com.iocs.service.generated.AuthenticateUserRequest,class com.iocs.service.generated.AuthenticateUserResponse,class com.iocs.client.callcredit.generated.Callvalidate,class com.iocs.client.callcredit.generated.Result,class com.iocs.service.generated.BespokeAuthRequest,class com.iocs.service.generated.BespokeAuthResponse,class com.iocs.service.generated.ProcessIDCheckRequest,class com.iocs.service.generated.ProcessIDCheckResponse,class com.iocs.service.generated.CancelTransactionRequest,class com.iocs.service.generated.CancelTransactionResponse,class com.iocs.service.generated.ProcessURLBasedEsignatureRequest,class com.iocs.service.generated.ProcessCustomBrandLogoRequest,class com.iocs.service.generated.ProcessCustomBrandLogoResponse,class com.iocs.service.generated.AutoSignRequest,class com.iocs.service.generated.AutoSignResponse,class com.iocs.service.generated.DownloadEvidenceRequest,class com.iocs.service.generated.DownloadEvidenceResponse]
2014-06-03 08:31:47,326 INFO [org.springframework.web.context.ContextLoader] (main) Root WebApplicationContext: initialization completed in 11270 ms
2014-06-03 08:31:47,371 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/
2014-06-03 08:31:47,477 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/counter
2014-06-03 08:31:47,958 INFO [org.jboss.cache.jmx.PlatformMBeanServerRegistration] (main) JBossCache MBeans were successfully registered to the platform mbean server.
2014-06-03 08:31:47,969 WARN [org.jgroups.protocols.TCPGOSSIP] (main) down_thread was deprecated and is ignored
2014-06-03 08:31:47,969 WARN [org.jgroups.protocols.TCPGOSSIP] (main) up_thread was deprecated and is ignored
2014-06-03 08:31:47,969 ERROR [org.jgroups.protocols.TCPGOSSIP] (main) exeption is java.lang.NumberFormatException: For input string: ""
2014-06-03 08:31:48,054 INFO [STDOUT] (main)
---------------------------------------------------------
GMS: address is 10.43.2.200:7600 (cluster=DocsPartition-SessionCache)
---------------------------------------------------------
2014-06-03 08:31:51,060 INFO [org.jboss.cache.RPCManagerImpl] (main) Received new cluster view: [10.43.2.200:7600|0] [10.43.2.200:7600]
2014-06-03 08:31:51,069 INFO [org.jboss.cache.RPCManagerImpl] (main) Cache local address is 10.43.2.200:7600
2014-06-03 08:31:51,070 INFO [org.jboss.cache.RPCManagerImpl] (main) state was retrieved successfully (in 3.02 seconds)
2014-06-03 08:31:51,083 INFO [org.jboss.cache.factories.ComponentRegistry] (main) JBoss Cache version: JBossCache 'Cascabel' 3.1.0.GA
2014-06-03 08:31:52,977 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/iocs-cbu-application
2014-06-03 08:31:53,199 ERROR [STDERR] (main) SLF4J: Class path contains multiple SLF4J bindings.
2014-06-03 08:31:53,200 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/common/lib/slf4j-jboss-logging.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:31:53,200 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/iocs-cbu-application.war/WEB-INF/lib/slf4j-log4j12-1.5.8.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:31:53,200 ERROR [STDERR] (main) SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
2014-06-03 08:31:54,444 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: sit
2014-06-03 08:31:54,447 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: uat
2014-06-03 08:31:54,451 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: feuser1
2014-06-03 08:31:54,453 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: feuser2
2014-06-03 08:31:54,456 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: pefeuser1
2014-06-03 08:31:54,467 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: pefeuser2
2014-06-03 08:31:54,573 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/iocs-cbu-application]] (main) Initializing Spring root WebApplicationContext
2014-06-03 08:32:00,676 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [logo] of domain class com.iocs.util.LogoMaster has type [[B] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:00,677 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [user] of domain class com.iocs.util.LogoMaster has type [com.iocs.users.ReportingUsers] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:00,678 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [status] of domain class com.iocs.util.LogoMaster has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:32:00,678 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [status] of domain class com.iocs.util.LogoMaster has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:00,678 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [publishDate] of domain class com.iocs.util.LogoMaster has type [java.util.Date] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:00,681 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [partnerSystem] of domain class com.iocs.util.BrandList has type [com.iocs.partnersystem.PartnerSystem] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:00,686 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role] of domain class com.iocs.users.ReportingUsers has type [com.iocs.roles.Roles] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:00,700 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:00,701 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:32:00,702 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:00,702 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:32:00,951 INFO [STDOUT] (main) config.ConfigurationFactory No configuration found. Configuring ehcache from ehcache-failsafe.xml found in the classpath: vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/iocs-cbu-application.war/WEB-INF/lib/ehcache-core-1.7.1.jar/ehcache-failsafe.xml
2014-06-03 08:32:02,351 INFO [STDOUT] (main) scaffolding.DefaultGrailsTemplateGenerator Scaffolding template generator set to use resource loader org.codehaus.groovy.grails.commons.spring.GrailsWebApplicationContext@70d76bbb: startup date [Tue Jun 03 08:31:59 GMT+01:00 2014]; parent: Root WebApplicationContext
2014-06-03 08:32:04,095 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:04,096 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:32:04,096 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:04,096 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:32:04,097 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role] of domain class com.iocs.users.ReportingUsers has type [com.iocs.roles.Roles] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:04,098 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [partnerSystem] of domain class com.iocs.util.BrandList has type [com.iocs.partnersystem.PartnerSystem] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:04,098 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [logo] of domain class com.iocs.util.LogoMaster has type [[B] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:04,099 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [user] of domain class com.iocs.util.LogoMaster has type [com.iocs.users.ReportingUsers] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:04,099 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [status] of domain class com.iocs.util.LogoMaster has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:32:04,099 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [status] of domain class com.iocs.util.LogoMaster has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:04,099 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [publishDate] of domain class com.iocs.util.LogoMaster has type [java.util.Date] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:04,101 INFO [STDOUT] (main) context.GrailsConfigUtils [GrailsContextLoader] Grails application loaded.
2014-06-03 08:32:04,254 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/iocs-cbu-application]] (main) Initializing Spring FrameworkServlet 'grails'
2014-06-03 08:32:05,977 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/iocs-vaulting
2014-06-03 08:32:06,191 ERROR [STDERR] (main) SLF4J: Class path contains multiple SLF4J bindings.
2014-06-03 08:32:06,192 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/common/lib/slf4j-jboss-logging.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:32:06,192 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/iocs-vaulting.war/WEB-INF/lib/slf4j-log4j12-1.5.8.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:32:06,192 ERROR [STDERR] (main) SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
2014-06-03 08:32:07,282 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: sit
2014-06-03 08:32:07,284 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: uat
2014-06-03 08:32:07,288 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: feuser1
2014-06-03 08:32:07,291 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: feuser2
2014-06-03 08:32:07,320 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: sit
2014-06-03 08:32:07,323 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: uat
2014-06-03 08:32:07,325 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: feuser1
2014-06-03 08:32:07,327 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: feuser2
2014-06-03 08:32:07,353 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/iocs-vaulting]] (main) Initializing Spring root WebApplicationContext
2014-06-03 08:32:11,977 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:11,979 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:32:11,980 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:11,980 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:32:12,065 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role] of domain class com.iocs.users.ReportingUsers has type [com.iocs.roles.Roles] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:12,308 INFO [STDOUT] (main) config.ConfigurationFactory No configuration found. Configuring ehcache from ehcache-failsafe.xml found in the classpath: vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/iocs-vaulting.war/WEB-INF/lib/ehcache-core-1.7.1.jar/ehcache-failsafe.xml
2014-06-03 08:32:13,525 INFO [STDOUT] (main) scaffolding.DefaultGrailsTemplateGenerator Scaffolding template generator set to use resource loader org.codehaus.groovy.grails.commons.spring.GrailsWebApplicationContext@10dacd47: startup date [Tue Jun 03 08:32:11 GMT+01:00 2014]; parent: Root WebApplicationContext
2014-06-03 08:32:14,729 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:14,729 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:32:14,730 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:14,730 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:32:14,730 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role] of domain class com.iocs.users.ReportingUsers has type [com.iocs.roles.Roles] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:32:14,733 INFO [STDOUT] (main) context.GrailsConfigUtils [GrailsContextLoader] Grails application loaded.
2014-06-03 08:32:14,885 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/iocs-vaulting]] (main) Initializing Spring FrameworkServlet 'grails'
2014-06-03 08:32:15,430 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/iocs-web
2014-06-03 08:32:15,521 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/jmx-console
2014-06-03 08:32:15,931 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/next-web
2014-06-03 08:32:16,433 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/soap-handback-handler
2014-06-03 08:32:16,542 ERROR [STDERR] (main) SLF4J: Class path contains multiple SLF4J bindings.
2014-06-03 08:32:16,542 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/soap-handback-handler.war/WEB-INF/lib/slf4j-log4j12-1.6.1.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:32:16,542 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/common/lib/slf4j-jboss-logging.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:32:16,542 ERROR [STDERR] (main) SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
2014-06-03 08:32:18,306 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/training
2014-06-03 08:32:18,510 ERROR [STDERR] (main) SLF4J: Class path contains multiple SLF4J bindings.
2014-06-03 08:32:18,511 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/common/lib/slf4j-jboss-logging.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:32:18,511 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/training.war/WEB-INF/lib/slf4j-log4j12-1.5.8.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:32:18,511 ERROR [STDERR] (main) SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
2014-06-03 08:32:19,516 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/training]] (main) Initializing Spring root WebApplicationContext
2014-06-03 08:32:22,406 WARN [org.jgroups.protocols.pbcast.NAKACK] (OOB-2,10.43.2.200:7600) 10.43.2.200:7600] discarded message from non-member 10.43.3.200:7600, my view is [10.43.2.200:7600|0] [10.43.2.200:7600]
2014-06-03 08:32:23,287 WARN [org.jgroups.protocols.pbcast.NAKACK] (OOB-2,10.43.2.200:7600) 10.43.2.200:7600] discarded message from non-member 10.43.3.200:7600, my view is [10.43.2.200:7600|0] [10.43.2.200:7600]
2014-06-03 08:32:27,041 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/training]] (main) Initializing Spring FrameworkServlet 'grails'
2014-06-03 08:32:27,507 INFO [org.apache.coyote.http11.Http11Protocol] (main) Starting Coyote HTTP/1.1 on http-0.0.0.0-8080
2014-06-03 08:32:27,586 INFO [org.apache.coyote.ajp.AjpProtocol] (main) Starting Coyote AJP/1.3 on ajp-0.0.0.0-8009
2014-06-03 08:32:27,636 INFO [org.jboss.bootstrap.microcontainer.ServerImpl] (main) JBoss (Microcontainer) [5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221053)] Started in 2m:12s:315ms
Server2 Stack trace.....
2014-06-03 08:29:44,892 INFO [org.jboss.web.WebService] (main) Using RMI server codebase: http://10.43.3.200:8083/
2014-06-03 08:29:50,889 INFO [org.jboss.wsf.stack.jbws.NativeServerConfig] (main) JBoss Web Services - Stack Native Core
2014-06-03 08:29:50,889 INFO [org.jboss.wsf.stack.jbws.NativeServerConfig] (main) 3.1.2.GA
2014-06-03 08:29:51,945 INFO [org.jboss.dependency.plugins.AttributeCallbackItem] (main) Owner callback not implemented.
2014-06-03 08:29:53,122 INFO [org.jboss.logbridge.LogNotificationListener] (main) Adding notification listener for logging mbean "jboss.system:service=Logging,type=Log4jService" to server org.jboss.mx.server.MBeanServerImpl@7080ed90[ defaultDomain='null' ]
2014-06-03 08:30:39,798 INFO [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] (main) Encountered deployment AbstractVFSDeploymentContext@924334713{vfsfile:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/profileservice-secured.jar/}
2014-06-03 08:30:39,799 INFO [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] (main) Encountered deployment AbstractVFSDeploymentContext@924334713{vfsfile:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/profileservice-secured.jar/}
2014-06-03 08:30:39,799 INFO [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] (main) Encountered deployment AbstractVFSDeploymentContext@924334713{vfsfile:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/profileservice-secured.jar/}
2014-06-03 08:30:39,799 INFO [org.jboss.ejb3.deployers.Ejb3DependenciesDeployer] (main) Encountered deployment AbstractVFSDeploymentContext@924334713{vfsfile:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/profileservice-secured.jar/}
2014-06-03 08:30:42,417 INFO [org.jboss.mx.remoting.service.JMXConnectorServerService] (main) JMX Connector server: service:jmx:rmi://10.43.3.200/jndi/rmi://10.43.3.200:1090/jmxconnector
2014-06-03 08:30:42,538 INFO [org.jboss.mail.MailService] (main) Mail Service bound to java:/Mail
2014-06-03 08:30:45,206 WARN [org.jgroups.protocols.TCPGOSSIP] (main) down_thread was deprecated and is ignored
2014-06-03 08:30:45,206 WARN [org.jgroups.protocols.TCPGOSSIP] (main) up_thread was deprecated and is ignored
2014-06-03 08:30:45,401 INFO [org.jboss.ha.framework.interfaces.HAPartition.DocsPartition] (main) Initializing partition DocsPartition
2014-06-03 08:30:45,525 INFO [STDOUT] (JBoss System Threads(1)-3)
---------------------------------------------------------
GMS: address is 10.43.3.200:7600 (cluster=DocsPartition)
---------------------------------------------------------
2014-06-03 08:30:45,611 INFO [org.jboss.cache.jmx.PlatformMBeanServerRegistration] (main) JBossCache MBeans were successfully registered to the platform mbean server.
2014-06-03 08:30:45,618 WARN [org.jgroups.protocols.TCPGOSSIP] (main) down_thread was deprecated and is ignored
2014-06-03 08:30:45,618 WARN [org.jgroups.protocols.TCPGOSSIP] (main) up_thread was deprecated and is ignored
2014-06-03 08:30:45,651 INFO [STDOUT] (main)
---------------------------------------------------------
GMS: address is 10.43.3.200:7600 (cluster=DocsPartition-HAPartitionCache)
---------------------------------------------------------
2014-06-03 08:30:48,566 INFO [org.jboss.ha.framework.interfaces.HAPartition.DocsPartition] (JBoss System Threads(1)-3) Number of cluster members: 1
2014-06-03 08:30:48,566 INFO [org.jboss.ha.framework.interfaces.HAPartition.DocsPartition] (JBoss System Threads(1)-3) Other members: 0
2014-06-03 08:30:48,656 INFO [org.jboss.cache.RPCManagerImpl] (main) Received new cluster view: [10.43.3.200:7600|0] [10.43.3.200:7600]
2014-06-03 08:30:48,658 INFO [org.jboss.cache.RPCManagerImpl] (main) Cache local address is 10.43.3.200:7600
2014-06-03 08:30:48,661 INFO [org.jboss.cache.RPCManagerImpl] (main) state was retrieved successfully (in 3.01 seconds)
2014-06-03 08:30:48,682 INFO [org.jboss.cache.factories.ComponentRegistry] (main) JBoss Cache version: JBossCache 'Cascabel' 3.1.0.GA
2014-06-03 08:30:48,682 INFO [org.jboss.ha.framework.interfaces.HAPartition.DocsPartition] (main) Fetching serviceState (will wait for 30000 milliseconds):
2014-06-03 08:30:48,684 INFO [org.jboss.ha.framework.interfaces.HAPartition.DocsPartition] (main) State could not be retrieved (we are the first member in group)
2014-06-03 08:30:48,775 INFO [org.jboss.ha.jndi.HANamingService] (main) Started HAJNDI bootstrap; jnpPort=1100, backlog=50, bindAddress=/0.0.0.0
2014-06-03 08:30:48,779 INFO [org.jboss.ha.jndi.DetachedHANamingService$AutomaticDiscovery] (main) Listening on /0.0.0.0:1102, group=230.0.0.4, HA-JNDI address=10.43.3.200:1100
2014-06-03 08:30:49,375 INFO [org.jboss.invocation.unified.server.UnifiedInvokerHA] (main) Service name is jboss:service=invoker,type=unifiedha
2014-06-03 08:30:50,094 WARN [org.jboss.jms.server.jbosssx.JBossASSecurityMetadataStore] (main) WARNING! POTENTIAL SECURITY RISK. It has been detected that the MessageSucker component which sucks messages from one node to another has not had its password changed from the installation default. Please see the JBoss Messaging user guide for instructions on how to do this.
2014-06-03 08:30:50,113 WARN [org.jboss.annotation.factory.AnnotationCreator] (main) No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent
2014-06-03 08:30:50,208 WARN [org.jboss.annotation.factory.AnnotationCreator] (main) No ClassLoader provided, using TCCL: org.jboss.managed.api.annotation.ManagementComponent
2014-06-03 08:30:50,259 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) JBossTS Transaction Service (JTA version - tag:JBOSSTS_4_6_1_GA) - JBoss Inc.
2014-06-03 08:30:50,259 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) Setting up property manager MBean and JMX layer
2014-06-03 08:30:50,486 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) Initializing recovery manager
2014-06-03 08:30:50,693 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) Recovery manager configured
2014-06-03 08:30:50,693 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) Binding TransactionManager JNDI Reference
2014-06-03 08:30:50,747 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] (main) Starting transaction recovery manager
2014-06-03 08:30:51,182 INFO [org.apache.catalina.core.AprLifecycleListener] (main) The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/local/jdk1.6.0_45/jre/lib/amd64/server:/usr/local/jdk1.6.0_45/jre/lib/amd64:/usr/local/jdk1.6.0_45/jre/../lib/amd64:/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
2014-06-03 08:30:51,243 INFO [org.apache.coyote.http11.Http11Protocol] (main) Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080
2014-06-03 08:30:51,243 INFO [org.apache.coyote.ajp.AjpProtocol] (main) Initializing Coyote AJP/1.3 on ajp-0.0.0.0-8009
2014-06-03 08:30:51,264 INFO [org.apache.catalina.core.StandardService] (main) Starting service jboss.web
2014-06-03 08:30:51,266 INFO [org.apache.catalina.core.StandardEngine] (main) Starting Servlet Engine: JBoss Web/2.1.3.GA
2014-06-03 08:30:51,313 INFO [org.apache.catalina.startup.Catalina] (main) Server startup in 69 ms
2014-06-03 08:30:51,332 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/web-console
2014-06-03 08:30:52,030 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/invoker
2014-06-03 08:30:52,079 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/jbossws
2014-06-03 08:30:52,163 INFO [org.jboss.resource.deployers.RARDeployment] (main) Required license terms exist, view vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/jboss-local-jdbc.rar/META-INF/ra.xml
2014-06-03 08:30:52,178 INFO [org.jboss.resource.deployers.RARDeployment] (main) Required license terms exist, view vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/jboss-xa-jdbc.rar/META-INF/ra.xml
2014-06-03 08:30:52,206 INFO [org.jboss.resource.deployers.RARDeployment] (main) Required license terms exist, view vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/jms-ra.rar/META-INF/ra.xml
2014-06-03 08:30:52,228 INFO [org.jboss.resource.deployers.RARDeployment] (main) Required license terms exist, view vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/mail-ra.rar/META-INF/ra.xml
2014-06-03 08:30:52,250 INFO [org.jboss.resource.deployers.RARDeployment] (main) Required license terms exist, view vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/quartz-ra.rar/META-INF/ra.xml
2014-06-03 08:30:52,329 INFO [org.quartz.simpl.SimpleThreadPool] (main) Job execution threads will use class loader of thread: main
2014-06-03 08:30:52,360 INFO [org.quartz.core.QuartzScheduler] (main) Quartz Scheduler v.1.5.2 created.
2014-06-03 08:30:52,363 INFO [org.quartz.simpl.RAMJobStore] (main) RAMJobStore initialized.
2014-06-03 08:30:52,363 INFO [org.quartz.impl.StdSchedulerFactory] (main) Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
2014-06-03 08:30:52,364 INFO [org.quartz.impl.StdSchedulerFactory] (main) Quartz scheduler version: 1.5.2
2014-06-03 08:30:52,364 INFO [org.quartz.core.QuartzScheduler] (main) Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
2014-06-03 08:30:52,970 INFO [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] (main) Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
2014-06-03 08:30:53,458 INFO [org.jboss.jms.server.ServerPeer] (main) JBoss Messaging 1.4.3.GA server [200] started
2014-06-03 08:30:53,610 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) Connector bisocket://ip-10-43-3-200:4457 has leasing enabled, lease period 10000 milliseconds
2014-06-03 08:30:53,610 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) org.jboss.jms.server.connectionfactory.ConnectionFactory@70346bb started
2014-06-03 08:30:53,632 INFO [org.jboss.jms.server.destination.QueueService] (main) Queue[/queue/IOCSIAcceptNotificationQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
2014-06-03 08:30:53,687 INFO [org.jboss.jms.server.destination.QueueService] (main) Queue[/queue/DLQ] started, fullSize=200000, pageSize=2000, downCacheSize=2000
2014-06-03 08:30:53,690 INFO [org.jboss.jms.server.destination.QueueService] (main) Queue[/queue/ExpiryQueue] started, fullSize=200000, pageSize=2000, downCacheSize=2000
2014-06-03 08:30:53,698 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) Connector bisocket://ip-10-43-3-200:4457 has leasing enabled, lease period 10000 milliseconds
2014-06-03 08:30:53,699 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) org.jboss.jms.server.connectionfactory.ConnectionFactory@16ea4323 started
2014-06-03 08:30:53,700 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactoryJNDIMapper] (main) supportsFailover attribute is true on connection factory: jboss.messaging.connectionfactory:service=ClusteredConnectionFactory but post office is non clustered. So connection factory will *not* support failover
2014-06-03 08:30:53,700 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactoryJNDIMapper] (main) supportsLoadBalancing attribute is true on connection factory: jboss.messaging.connectionfactory:service=ClusteredConnectionFactory but post office is non clustered. So connection factory will *not* support load balancing
2014-06-03 08:30:53,701 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) Connector bisocket://ip-10-43-3-200:4457 has leasing enabled, lease period 10000 milliseconds
2014-06-03 08:30:53,702 INFO [org.jboss.jms.server.connectionfactory.ConnectionFactory] (main) org.jboss.jms.server.connectionfactory.ConnectionFactory@5fce4c17 started
2014-06-03 08:30:53,791 INFO [org.jboss.resource.adapter.jdbc.remote.WrapperDataSourceService] (main) Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=jdbc/iocs-cbu-ds' to JNDI name 'jdbc/iocs-cbu-ds'
2014-06-03 08:30:53,849 INFO [org.jboss.resource.adapter.jdbc.remote.WrapperDataSourceService] (main) Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=jdbc/iocs-ds' to JNDI name 'jdbc/iocs-ds'
2014-06-03 08:30:53,906 INFO [org.jboss.resource.adapter.jdbc.remote.WrapperDataSourceService] (main) Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=jdbc/iocs-vault-ds' to JNDI name 'jdbc/iocs-vault-ds'
2014-06-03 08:30:53,977 INFO [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] (main) Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
2014-06-03 08:30:54,674 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Created KernelDeployment for: profileservice-secured.jar
2014-06-03 08:30:54,679 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) installing bean: jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3
2014-06-03 08:30:54,679 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) with dependencies:
2014-06-03 08:30:54,680 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and demands:
2014-06-03 08:30:54,680 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SecureManagementView/remote-org.jboss.deployers.spi.management.ManagementView
2014-06-03 08:30:54,680 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jboss.ejb:service=EJBTimerService
2014-06-03 08:30:54,680 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and supplies:
2014-06-03 08:30:54,680 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Class:org.jboss.profileservice.spi.ProfileService
2014-06-03 08:30:54,680 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SecureProfileService/remote
2014-06-03 08:30:54,681 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SecureProfileService/remote-org.jboss.profileservice.spi.ProfileService
2014-06-03 08:30:54,681 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Added bean(jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3) to KernelDeployment of: profileservice-secured.jar
2014-06-03 08:30:54,682 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) installing bean: jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3
2014-06-03 08:30:54,682 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) with dependencies:
2014-06-03 08:30:54,682 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and demands:
2014-06-03 08:30:54,682 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jboss.ejb:service=EJBTimerService
2014-06-03 08:30:54,682 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and supplies:
2014-06-03 08:30:54,683 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SecureDeploymentManager/remote-org.jboss.deployers.spi.management.deploy.DeploymentManager
2014-06-03 08:30:54,683 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Class:org.jboss.deployers.spi.management.deploy.DeploymentManager
2014-06-03 08:30:54,683 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SecureDeploymentManager/remote
2014-06-03 08:30:54,683 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Added bean(jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3) to KernelDeployment of: profileservice-secured.jar
2014-06-03 08:30:54,684 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) installing bean: jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3
2014-06-03 08:30:54,690 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) with dependencies:
2014-06-03 08:30:54,690 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and demands:
2014-06-03 08:30:54,690 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jboss.ejb:service=EJBTimerService
2014-06-03 08:30:54,691 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) and supplies:
2014-06-03 08:30:54,691 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SecureManagementView/remote-org.jboss.deployers.spi.management.ManagementView
2014-06-03 08:30:54,691 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Class:org.jboss.deployers.spi.management.ManagementView
2014-06-03 08:30:54,691 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) jndi:SecureManagementView/remote
2014-06-03 08:30:54,691 INFO [org.jboss.ejb3.deployers.JBossASKernel] (main) Added bean(jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3) to KernelDeployment of: profileservice-secured.jar
2014-06-03 08:30:54,698 INFO [org.jboss.ejb3.endpoint.deployers.EJB3EndpointDeployer] (main) Deploy AbstractBeanMetaData@2e4263ee{name=jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl properties=[container] constructor=null autowireCandidate=true}
2014-06-03 08:30:54,706 INFO [org.jboss.ejb3.endpoint.deployers.EJB3EndpointDeployer] (main) Deploy AbstractBeanMetaData@62db7d8{name=jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl properties=[container] constructor=null autowireCandidate=true}
2014-06-03 08:30:54,707 INFO [org.jboss.ejb3.endpoint.deployers.EJB3EndpointDeployer] (main) Deploy AbstractBeanMetaData@5c11109a{name=jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3_endpoint bean=org.jboss.ejb3.endpoint.deployers.impl.EndpointImpl properties=[container] constructor=null autowireCandidate=true}
2014-06-03 08:30:54,811 INFO [org.jboss.ejb3.session.SessionSpecContainer] (main) Starting jboss.j2ee:jar=profileservice-secured.jar,name=SecureDeploymentManager,service=EJB3
2014-06-03 08:30:54,823 INFO [org.jboss.ejb3.EJBContainer] (main) STARTED EJB: org.jboss.profileservice.ejb.SecureDeploymentManager ejbName: SecureDeploymentManager
2014-06-03 08:30:54,886 INFO [org.jboss.ejb3.proxy.impl.jndiregistrar.JndiSessionRegistrarBase] (main) Binding the following Entries in Global JNDI:
SecureDeploymentManager/remote - EJB3.x Default Remote Business Interface
SecureDeploymentManager/remote-org.jboss.deployers.spi.management.deploy.DeploymentManager - EJB3.x Remote Business Interface
2014-06-03 08:30:54,957 INFO [org.jboss.ejb3.session.SessionSpecContainer] (main) Starting jboss.j2ee:jar=profileservice-secured.jar,name=SecureManagementView,service=EJB3
2014-06-03 08:30:54,958 INFO [org.jboss.ejb3.EJBContainer] (main) STARTED EJB: org.jboss.profileservice.ejb.SecureManagementView ejbName: SecureManagementView
2014-06-03 08:30:54,973 INFO [org.jboss.ejb3.proxy.impl.jndiregistrar.JndiSessionRegistrarBase] (main) Binding the following Entries in Global JNDI:
SecureManagementView/remote - EJB3.x Default Remote Business Interface
SecureManagementView/remote-org.jboss.deployers.spi.management.ManagementView - EJB3.x Remote Business Interface
2014-06-03 08:30:55,026 INFO [org.jboss.ejb3.session.SessionSpecContainer] (main) Starting jboss.j2ee:jar=profileservice-secured.jar,name=SecureProfileService,service=EJB3
2014-06-03 08:30:55,028 INFO [org.jboss.ejb3.EJBContainer] (main) STARTED EJB: org.jboss.profileservice.ejb.SecureProfileServiceBean ejbName: SecureProfileService
2014-06-03 08:30:55,042 INFO [org.jboss.ejb3.proxy.impl.jndiregistrar.JndiSessionRegistrarBase] (main) Binding the following Entries in Global JNDI:
SecureProfileService/remote - EJB3.x Default Remote Business Interface
SecureProfileService/remote-org.jboss.profileservice.spi.ProfileService - EJB3.x Remote Business Interface
2014-06-03 08:30:55,249 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/admin-console
2014-06-03 08:30:55,391 INFO [javax.enterprise.resource.webcontainer.jsf.config] (main) Initializing Mojarra (1.2_12-b01-FCS) for context '/admin-console'
2014-06-03 08:30:58,925 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/IOCS
2014-06-03 08:30:59,478 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/IOCS]] (main) Initializing Spring root WebApplicationContext
2014-06-03 08:30:59,479 INFO [org.springframework.web.context.ContextLoader] (main) Root WebApplicationContext: initialization started
2014-06-03 08:30:59,586 INFO [org.springframework.web.context.support.XmlWebApplicationContext] (main) Refreshing Root WebApplicationContext: startup date [Tue Jun 03 08:30:59 GMT+01:00 2014]; root of context hierarchy
2014-06-03 08:30:59,670 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (main) Loading XML bean definitions from ServletContext resource [/WEB-INF/spring-ws-servlet.xml]
2014-06-03 08:30:59,735 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (main) Loading XML bean definitions from ServletContext resource [/WEB-INF/hibernateContext.xml]
2014-06-03 08:30:59,871 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (main) Loading XML bean definitions from ServletContext resource [/WEB-INF/applicationContext.xml]
2014-06-03 08:30:59,968 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (main) Loading XML bean definitions from ServletContext resource [/WEB-INF/eSignatureContext.xml]
2014-06-03 08:30:59,989 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (main) Loading XML bean definitions from ServletContext resource [/WEB-INF/eIDnVContext.xml]
2014-06-03 08:31:00,008 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (main) Loading XML bean definitions from ServletContext resource [/WEB-INF/bespoke-applicationContext.xml]
2014-06-03 08:31:00,055 INFO [org.springframework.beans.factory.support.DefaultListableBeanFactory] (main) Overriding bean definition for bean 'faxService': replacing [Generic bean: class [com.iocs.client.silanis.impl.fax.faxserviceimpl.FaxServiceImpl]; 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/eSignatureContext.xml]] with [Generic bean: class [com.iocs.client.silanis.impl.fax.faxserviceimpl.FaxServiceImpl]; 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/spring-ws-servlet.xml]]
2014-06-03 08:31:00,360 INFO [org.springframework.beans.factory.config.PropertyPlaceholderConfigurer] (main) Loading properties file from URL [file:/media/ephemeral0/home/iocs/external_properties/iocs//silanis-client.properties]
2014-06-03 08:31:00,361 INFO [org.springframework.beans.factory.config.PropertyPlaceholderConfigurer] (main) Loading properties file from URL [file:/media/ephemeral0/home/iocs/external_properties/iocs//callcredit-client.properties]
2014-06-03 08:31:00,361 INFO [org.springframework.beans.factory.config.PropertyPlaceholderConfigurer] (main) Loading properties file from URL [file:/media/ephemeral0/home/iocs/external_properties/iocs//hibernate-config.properties]
2014-06-03 08:31:00,361 INFO [org.springframework.beans.factory.config.PropertyPlaceholderConfigurer] (main) Loading properties file from URL [file:/media/ephemeral0/home/iocs/external_properties/iocs//retailer-config.properties]
2014-06-03 08:31:00,362 INFO [org.springframework.beans.factory.config.PropertyPlaceholderConfigurer] (main) Loading properties file from URL [file:/media/ephemeral0/home/iocs/external_properties/iocs//amazons3-config.properties]
2014-06-03 08:31:00,439 INFO [org.springframework.beans.factory.support.DefaultListableBeanFactory] (main) Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@5abe029d: defining beans [propertyConfigurer,propertyFileLocations,dataSource,sessionFactory,txManager,hibernateTemplate,log4jInitializer,retailerDAOImpl,txAdvice,org.springframework.aop.config.internalAutoProxyCreator,loggingPointCut,databaseHelperOperation,exceptionhandler,org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor#0,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,springApplicationContextProvider,businessDelegate,MessageDAOInf,errorMessageMapping,authenticateBO,applicantsBO,partnerSystemsBO,agentBO,partnerBO,publishLogoBO,partnerSystemRefDAO,retailerDAO,idChecksDAO,identificationItemDAO,transactionDAO,helperServices,financialDetailsDAO,phoneNumberDAO,applicantAddressDAO,partnerDAO,publishLogoDAO,agentDAO,userDAO,customBrandDAO,templateDAO,documentDAO,persistenceManager,connectionFactory,jmsTemplate,sendDestination,messageListener,jmsContainer,deleteUtil,storedProcedureDAO,s3FileUtility,eSignatureClient,processManager,singleSigneeDocumentManager,faxService,callCreditClient,bespokeBusinessDelegate,bespokeAuthenticateBO,bespokeAuthenticateDAO,internal-schema,external-schema,messagFactory,webServiceTemplate12,marshaller,iocs-internal,iocs-global,org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping#0,InitiateTransactionEndpoint,CancelTransactionEndpoint,autoSignEndpoint,downloadEvidenceEndpoint,IsAliveEndPoint,ProcessIDCheckEndpoint,ProcessURLBasedEsignatureEndpoint,ProcessTransactionEndpoint,ResumeTransactionEndpoint,verifyUserEndpoint,authenticateUserEndpoint,customBrandingEndpoint,processESignatureEndpoint,DownloadAgreementPackageServiceEndpoint,BespokeAuthenticationEndpoint,processESignatureService,verifyUserService,downloadAgreementPackageService,downloadEvidenceService,genericMarshallingMethodEndpointAdapter]; root of factory hierarchy
2014-06-03 08:31:00,860 INFO [org.hibernate.cfg.Environment] (main) Hibernate 3.2.0.cr5
2014-06-03 08:31:00,868 INFO [org.hibernate.cfg.Environment] (main) hibernate.properties not found
2014-06-03 08:31:00,870 INFO [org.hibernate.cfg.Environment] (main) Bytecode provider name : cglib
2014-06-03 08:31:00,874 INFO [org.hibernate.cfg.Environment] (main) using JDK 1.4 java.sql.Timestamp handling
2014-06-03 08:31:01,039 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.AddressTypes -> address_types
2014-06-03 08:31:01,062 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.AddressTypes.applicantAddresseses -> address_usages
2014-06-03 08:31:01,086 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.ApplicantAddresses -> applicant_addresses
2014-06-03 08:31:01,162 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.ApplicantAddresses.addressTypeses -> address_usages
2014-06-03 08:31:01,180 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.ApplicantCategories -> applicant_categories
2014-06-03 08:31:01,200 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.ApplicantCategoryTypes -> applicant_category_types
2014-06-03 08:31:01,222 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.Applicants -> applicants
2014-06-03 08:31:01,246 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.AuthenticationTokenRefs -> authentication_token_refs
2014-06-03 08:31:01,268 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.CardProviderType -> card_provider_type
2014-06-03 08:31:01,286 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.CreditCardDetails -> credit_card_details
2014-06-03 08:31:01,311 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.Documents -> documents
2014-06-03 08:31:01,331 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DocumentStatuses -> document_statuses
2014-06-03 08:31:01,349 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DocumentStatusHistory -> document_status_history
2014-06-03 08:31:01,367 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DocumentTypes -> document_types
2014-06-03 08:31:01,385 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.FinancialDetails -> financial_details
2014-06-03 08:31:01,404 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IdentificationItems -> identification_items
2014-06-03 08:31:01,423 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IdentificationTypes -> identification_types
2014-06-03 08:31:01,441 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IdItemDetails -> id_item_details
2014-06-03 08:31:01,460 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IdTypeDetails -> id_type_details
2014-06-03 08:31:01,478 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerRoles -> partner_roles
2014-06-03 08:31:01,496 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerRoleTypes -> partner_role_types
2014-06-03 08:31:01,516 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.Partners -> partners
2014-06-03 08:31:01,535 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerSystemRefs -> partner_system_refs
2014-06-03 08:31:01,556 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerSystems -> partner_systems
2014-06-03 08:31:01,580 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PdfTemplates -> PDF_templates
2014-06-03 08:31:01,601 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PhoneNumbers -> phone_numbers
2014-06-03 08:31:01,619 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.TemplatePage -> template_page
2014-06-03 08:31:01,640 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.Transactions -> transactions
2014-06-03 08:31:01,679 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.TransactionStatuses -> transaction_statuses
2014-06-03 08:31:01,713 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.TransactionStatusHistory -> transaction_status_history
2014-06-03 08:31:01,755 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.Users -> users
2014-06-03 08:31:01,790 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerMessages -> partner_messages
2014-06-03 08:31:01,822 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.SystemParameters -> system_parameters
2014-06-03 08:31:01,856 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.MessageMappings -> message_mappings
2014-06-03 08:31:01,891 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.AgreementTypes -> agreement_types
2014-06-03 08:31:01,931 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.EsignatureAnchorType -> esignature_anchor_type
2014-06-03 08:31:01,964 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.EsignaturePositions -> esignature_positions
2014-06-03 08:31:01,989 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IdCheckTypes -> id_check_types
2014-06-03 08:31:02,018 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IdChecks -> id_checks
2014-06-03 08:31:02,046 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerChecksConfiguration -> partner_checks_configuration
2014-06-03 08:31:02,066 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerChecksCompositions -> partner_checks_compositions
2014-06-03 08:31:02,093 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.RetailerFiParams -> retailer_fi_params
2014-06-03 08:31:02,112 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.EsignatureParams -> esignature_params
2014-06-03 08:31:02,134 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerSystemCreds -> partner_system_creds
2014-06-03 08:31:02,162 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.RetailerEidnvParams -> retailer_eidnv_params
2014-06-03 08:31:02,181 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IocsMessages -> iocs_messages
2014-06-03 08:31:02,199 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IocsErrorType -> iocs_error_type
2014-06-03 08:31:02,209 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.RetailerRedirectUrl -> retailer_redirect_url
2014-06-03 08:31:02,218 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.UrlTypes -> url_types
2014-06-03 08:31:02,227 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.FormFieldEsignaturePositions -> form_field_esignature_positions
2014-06-03 08:31:02,237 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerSystemCustomBrand -> partner_system_custom_brand
2014-06-03 08:31:02,246 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.AgentDetails -> agent_details
2014-06-03 08:31:02,256 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.AwsTemplateMaster -> aws_template_master
2014-06-03 08:31:02,266 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DocumentFormat -> document_format
2014-06-03 08:31:02,276 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.EsignatureDocuments -> esignature_documents
2014-06-03 08:31:02,286 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.TemplateReferences -> template_references
2014-06-03 08:31:02,295 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.TransactionAgents -> transaction_agents
2014-06-03 08:31:02,305 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.TransactionApplicants -> transaction_applicants
2014-06-03 08:31:02,314 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.TemplateReferencesRoles -> template_references_roles
2014-06-03 08:31:02,324 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.EsignatureRoles -> esignature_roles
2014-06-03 08:31:02,335 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.bespoke.domain.NextUserDetails -> next_user_details
2014-06-03 08:31:02,345 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.bespoke.domain.DummyTable -> dummy_table
2014-06-03 08:31:02,356 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.CallValidateResult -> callvalidate_details
2014-06-03 08:31:02,366 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerBespokeParams -> partner_bespoke_params
2014-06-03 08:31:02,376 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerBespokeDetails -> partner_bespoke_details
2014-06-03 08:31:02,386 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DealerTransactionURL -> dealer_transaction_url
2014-06-03 08:31:02,398 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DrivingLicenceCheck -> dricing_licence_check
2014-06-03 08:31:02,410 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DataCaptureField -> data_capture_field
2014-06-03 08:31:02,419 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.Question -> question
2014-06-03 08:31:02,429 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.AgreementTypeNameMapping -> agreement_type_name_mapping
2014-06-03 08:31:02,456 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.EmailTemplateNameMapping -> email_template_name_mapping
2014-06-03 08:31:02,474 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PublishLogo -> cbu_logo
2014-06-03 08:31:02,492 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.IocsFaxNotification -> iocs_fax_notification
2014-06-03 08:31:02,502 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.DeleteTransactions -> delete_transactions
2014-06-03 08:31:02,513 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.CustomerVerificationDtls -> customer_verification_dtls
2014-06-03 08:31:02,523 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping class: com.iocs.domain.PartnerSystemCustomerVerificationMasters -> partner_system_customer_verification_masters
2014-06-03 08:31:02,525 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.ApplicantCategoryTypes.applicantCategorieses -> applicant_categories
2014-06-03 08:31:02,525 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Applicants.financialDetailses -> financial_details
2014-06-03 08:31:02,525 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Applicants.creditCardDetailses -> credit_card_details
2014-06-03 08:31:02,526 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Applicants.applicantAddresseses -> applicant_addresses
2014-06-03 08:31:02,526 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Applicants.transactionApplicantses -> transaction_applicants
2014-06-03 08:31:02,526 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Applicants.identificationItemses -> identification_items
2014-06-03 08:31:02,526 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Applicants.applicantCategorieses -> applicant_categories
2014-06-03 08:31:02,527 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Applicants.phoneNumberses -> phone_numbers
2014-06-03 08:31:02,527 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.CardProviderType.creditCardDetailses -> credit_card_details
2014-06-03 08:31:02,527 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Documents.esignatureDocumentses -> esignature_documents
2014-06-03 08:31:02,527 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Documents.documentStatusHistories -> document_status_history
2014-06-03 08:31:02,528 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.DocumentStatuses.documentStatusHistories -> document_status_history
2014-06-03 08:31:02,528 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.DocumentTypes.pdfTemplateses -> PDF_templates
2014-06-03 08:31:02,528 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.IdentificationItems.creditCardDetailses -> credit_card_details
2014-06-03 08:31:02,528 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.IdentificationItems.idItemDetailses -> id_item_details
2014-06-03 08:31:02,529 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.IdentificationTypes.identificationItemses -> identification_items
2014-06-03 08:31:02,529 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.IdentificationTypes.idTypeDetailses -> id_type_details
2014-06-03 08:31:02,529 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.IdTypeDetails.idItemDetailses -> id_item_details
2014-06-03 08:31:02,529 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.PartnerRoleTypes.partnerRoleses -> partner_roles
2014-06-03 08:31:02,530 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Partners.partnerSystemses -> partner_systems
2014-06-03 08:31:02,530 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Partners.partnerChecksConfigurations -> partner_checks_configuration
2014-06-03 08:31:02,530 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Partners.idCheckses -> id_checks
2014-06-03 08:31:02,530 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Partners.partnerRoleses -> partner_roles
2014-06-03 08:31:02,531 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Partners.userses -> users
2014-06-03 08:31:02,531 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Partners.pdfTemplateses -> PDF_templates
2014-06-03 08:31:02,531 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Partners.agreementTypeses -> agreement_types
2014-06-03 08:31:02,531 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.PartnerSystems.partnerSystemRefses -> partner_system_refs
2014-06-03 08:31:02,532 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.PartnerSystems.partnerMessageses -> partner_messages
2014-06-03 08:31:02,532 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.PartnerSystems.partnerSystemCustVeriConfigs -> partner_system_customer_verification_masters
2014-06-03 08:31:02,532 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.PdfTemplates.templatePages -> template_page
2014-06-03 08:31:02,532 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Transactions.transactionApplicantses -> transaction_applicants
2014-06-03 08:31:02,533 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Transactions.transactionAgentses -> transaction_agents
2014-06-03 08:31:02,533 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Transactions.transactionStatusHistories -> transaction_status_history
2014-06-03 08:31:02,533 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Transactions.partnerSystemRefses -> partner_system_refs
2014-06-03 08:31:02,533 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Transactions.partnerRoleses -> partner_roles
2014-06-03 08:31:02,533 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.TransactionStatuses.transactionStatusHistories -> transaction_status_history
2014-06-03 08:31:02,534 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.Users.partnerChecksConfigurations -> partner_checks_configuration
2014-06-03 08:31:02,534 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.PartnerMessages.messageMappingses -> message_mappings
2014-06-03 08:31:02,534 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.AgreementTypes.formFieldEsignaturePositionses -> form_field_esignature_positions
2014-06-03 08:31:02,534 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.AgreementTypes.esignaturePositionses -> esignature_positions
2014-06-03 08:31:02,535 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.EsignatureAnchorType.esignaturePositionses -> esignature_positions
2014-06-03 08:31:02,535 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.IdCheckTypes.idCheckses -> id_checks
2014-06-03 08:31:02,535 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.IocsMessages.messageMappingses -> message_mappings
2014-06-03 08:31:02,535 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.AgentDetails.transactionAgentses -> transaction_agents
2014-06-03 08:31:02,536 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.AwsTemplateMaster.esignatureDocumentses -> esignature_documents
2014-06-03 08:31:02,536 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.AwsTemplateMaster.templateReferenceses -> template_references
2014-06-03 08:31:02,536 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.DocumentFormat.documentses -> documents
2014-06-03 08:31:02,536 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.TemplateReferences.templateReferencesRoleses -> template_references_roles
2014-06-03 08:31:02,537 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.EsignatureRoles.esignaturePositionses -> esignature_positions
2014-06-03 08:31:02,537 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.EsignatureRoles.formFieldEsignaturePositionses -> form_field_esignature_positions
2014-06-03 08:31:02,537 INFO [org.hibernate.cfg.HbmBinder] (main) Mapping collection: com.iocs.domain.EsignatureRoles.templateReferencesRoleses -> template_references_roles
2014-06-03 08:31:02,547 INFO [org.springframework.orm.hibernate3.LocalSessionFactoryBean] (main) Building new Hibernate SessionFactory
2014-06-03 08:31:02,664 INFO [org.hibernate.connection.ConnectionProviderFactory] (main) Initializing connection provider: org.springframework.orm.hibernate3.LocalDataSourceConnectionProvider
2014-06-03 08:31:03,091 INFO [org.hibernate.cfg.SettingsFactory] (main) RDBMS: Microsoft SQL Server, version: 10.50.4297
2014-06-03 08:31:03,091 INFO [org.hibernate.cfg.SettingsFactory] (main) JDBC driver: Microsoft SQL Server JDBC Driver 2.0, version: 2.0.1803.100
2014-06-03 08:31:03,135 INFO [org.hibernate.dialect.Dialect] (main) Using dialect: com.iocs.dao.impl.SQLServerNativeDialect
2014-06-03 08:31:03,156 INFO [org.hibernate.transaction.TransactionFactoryFactory] (main) Transaction strategy: org.springframework.orm.hibernate3.SpringTransactionFactory
2014-06-03 08:31:03,158 INFO [org.hibernate.transaction.TransactionManagerLookupFactory] (main) No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
2014-06-03 08:31:03,158 INFO [org.hibernate.cfg.SettingsFactory] (main) Automatic flush during beforeCompletion(): disabled
2014-06-03 08:31:03,158 INFO [org.hibernate.cfg.SettingsFactory] (main) Automatic session close at end of transaction: disabled
2014-06-03 08:31:03,159 INFO [org.hibernate.cfg.SettingsFactory] (main) JDBC batch size: 50
2014-06-03 08:31:03,159 INFO [org.hibernate.cfg.SettingsFactory] (main) JDBC batch updates for versioned data: disabled
2014-06-03 08:31:03,160 INFO [org.hibernate.cfg.SettingsFactory] (main) Scrollable result sets: enabled
2014-06-03 08:31:03,160 INFO [org.hibernate.cfg.SettingsFactory] (main) JDBC3 getGeneratedKeys(): enabled
2014-06-03 08:31:03,160 INFO [org.hibernate.cfg.SettingsFactory] (main) Connection release mode: auto
2014-06-03 08:31:03,161 INFO [org.hibernate.cfg.SettingsFactory] (main) Default batch fetch size: 1
2014-06-03 08:31:03,161 INFO [org.hibernate.cfg.SettingsFactory] (main) Generate SQL with comments: disabled
2014-06-03 08:31:03,161 INFO [org.hibernate.cfg.SettingsFactory] (main) Order SQL updates by primary key: disabled
2014-06-03 08:31:03,162 INFO [org.hibernate.cfg.SettingsFactory] (main) Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
2014-06-03 08:31:03,166 INFO [org.hibernate.hql.ast.ASTQueryTranslatorFactory] (main) Using ASTQueryTranslatorFactory
2014-06-03 08:31:03,174 INFO [org.hibernate.cfg.SettingsFactory] (main) Query language substitutions: {}
2014-06-03 08:31:03,174 INFO [org.hibernate.cfg.SettingsFactory] (main) JPA-QL strict compliance: disabled
2014-06-03 08:31:03,175 INFO [org.hibernate.cfg.SettingsFactory] (main) Second-level cache: enabled
2014-06-03 08:31:03,175 INFO [org.hibernate.cfg.SettingsFactory] (main) Query cache: disabled
2014-06-03 08:31:03,175 INFO [org.hibernate.cfg.SettingsFactory] (main) Cache provider: org.hibernate.cache.NoCacheProvider
2014-06-03 08:31:03,175 INFO [org.hibernate.cfg.SettingsFactory] (main) Optimize cache for minimal puts: disabled
2014-06-03 08:31:03,175 INFO [org.hibernate.cfg.SettingsFactory] (main) Structured second-level cache entries: disabled
2014-06-03 08:31:03,182 INFO [org.hibernate.cfg.SettingsFactory] (main) Statistics: enabled
2014-06-03 08:31:03,183 INFO [org.hibernate.cfg.SettingsFactory] (main) Deleted entity synthetic identifier rollback: disabled
2014-06-03 08:31:03,183 INFO [org.hibernate.cfg.SettingsFactory] (main) Default entity-mode: pojo
2014-06-03 08:31:03,220 INFO [org.hibernate.impl.SessionFactoryImpl] (main) building session factory
2014-06-03 08:31:04,439 INFO [org.hibernate.impl.SessionFactoryObjectFactory] (main) Not binding factory to JNDI, no JNDI name configured
2014-06-03 08:31:04,450 INFO [org.hibernate.tool.hbm2ddl.SchemaValidator] (main) Running schema validator
2014-06-03 08:31:04,455 INFO [org.hibernate.tool.hbm2ddl.SchemaValidator] (main) fetching database metadata
2014-06-03 08:31:04,513 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.PDF_templates
2014-06-03 08:31:04,513 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [document_rules, id, template_name, end_datetime, document_types_code, partners_id, file_location, start_datetime]
2014-06-03 08:31:04,523 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.address_types
2014-06-03 08:31:04,523 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:04,532 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.address_usages
2014-06-03 08:31:04,532 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [address_types_code, applicant_address_id]
2014-06-03 08:31:04,543 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.agreement_type_name_mapping
2014-06-03 08:31:04,543 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, source, creation_datetime, agreement_name, agreement_type_id, partner_systems_id]
2014-06-03 08:31:04,553 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.agreement_types
2014-06-03 08:31:04,553 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [signature_type, agreement_type, id, agreement_types_version, agreement_type_desc, partners_id]
2014-06-03 08:31:04,569 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.applicant_addresses
2014-06-03 08:31:04,569 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [building_name, end_year, applicants_id, town_name, start_month, start_year, street_name, sub_building, mortgage_status, postcode, country_name, end_month, id, sequence_number, district_name, sub_street, building_number, residential_status, county_name]
2014-06-03 08:31:04,580 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.applicant_categories
2014-06-03 08:31:04,580 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [applicants_id, created_datetime, applicant_category_types_code]
2014-06-03 08:31:04,588 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.applicant_category_types
2014-06-03 08:31:04,588 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:04,602 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.applicants
2014-06-03 08:31:04,602 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [occupation, employment_status, work_street, middle_name, employer_name, surname, alternate_name, birth_year, id, first_name, username, children_under_18, title, employed_months, birth_month, work_town, work_department, former_surname, birth_day, gender, employed_years, marital_status, residence_type, email_address]
2014-06-03 08:31:04,616 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.callvalidate_details
2014-06-03 08:31:04,616 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [applicants, creation_datetime, id_check_status, ofa_namedata, ofa_addressmismatch, ofa_mismatchlevel, partner_systems_id, transaction_id, id, ofa_namemismatch, ofa_type, idcheckidentifier, ofa_accountmatchconfidence, ofa_postcodefound, ofa_potentiallyunconsented, resultxml, ofa_jointaccount]
2014-06-03 08:31:04,625 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.card_provider_type
2014-06-03 08:31:04,625 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:04,635 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.cbu_logo
2014-06-03 08:31:04,635 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, logo, partner_id, brandname, updateddate, createddate]
2014-06-03 08:31:04,648 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.credit_card_details
2014-06-03 08:31:04,648 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [applicants_id, card_number, start_month, start_year, expiry_year, cardholder_name, country, expiry_month, id, identification_items_id, card_provider_type_code, test_transaction_amount, deposit_ind, issue_number, security_code]
2014-06-03 08:31:04,663 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.customer_verification_dtls
2014-06-03 08:31:04,663 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [applicant_id, failcount, status, digit15, digit14, digit16, id, digit6, digit5, updateddatetime, digit8, digit7, digit10, digit9, digit11, digit12, digit13, partner_system_cust_veri_type, digit2, digit1, digit4, digit3]
2014-06-03 08:31:04,678 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.data_capture_field
2014-06-03 08:31:04,678 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [group_name, document_name, data_capature_method, page_number, size_x, size_y, id, default_selected, data_capture_label, esignature_roles_id, rotation, data_type, default_value, occurrence, question_id, agreement_type_id, anchor_point, disabled, offset_y, offset_x]
2014-06-03 08:31:04,689 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.dealer_transaction_url
2014-06-03 08:31:04,690 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, expiry_datetime, creation_datetime, activeflag, transactionuuid, call_validate_result_id, partner_systems_id, transactionurl]
2014-06-03 08:31:04,701 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.delete_transactions
2014-06-03 08:31:04,701 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, partner_system_id, updated_datetime, status, created_datetime, transactionuuid, transactionid, transaction_call_status, processguid]
2014-06-03 08:31:04,714 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.document_status_history
2014-06-03 08:31:04,714 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [document_statuses_code, documents_id, recorded_datetime]
2014-06-03 08:31:04,722 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.document_statuses
2014-06-03 08:31:04,722 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:04,730 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.document_types
2014-06-03 08:31:04,730 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:04,737 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.documents
2014-06-03 08:31:04,737 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, display_name, header_description, document_name, document_types_code, document_format_code]
2014-06-03 08:31:04,754 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.dricing_licence_check
2014-06-03 08:31:04,755 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [town_name, driving_licence_number, start_month, id_check_status, street_name, start_year, surname, alternate_name, partners_id, transactions_id, id, first_name, title, sub_street, former_surname, gender, status_updated_date, building_name, end_year, middle_name, sub_building, postcode, birth_year, number_attempts, status_change_datetime, end_month, birth_month, district_name, birth_day, building_number, county_name, zone, email_address]
2014-06-03 08:31:04,764 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.dummy_table
2014-06-03 08:31:04,764 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, reasons, password, iterationno, emailid]
2014-06-03 08:31:04,773 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.email_template_name_mapping
2014-06-03 08:31:04,773 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, source, creation_datetime, email_template_id, partner_systems_id, accept_template_file_name, initiate_template_file_name]
2014-06-03 08:31:04,781 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.esignature_anchor_type
2014-06-03 08:31:04,781 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [code, anchor_type]
2014-06-03 08:31:04,792 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.esignature_positions
2014-06-03 08:31:04,792 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [page_number, size_x, size_y, anchor_character, id, anchor_text, anchor_type_code, rotation, esignature_roles_id, occurrence, agreement_type_id, offset_y, offset_x]
2014-06-03 08:31:04,802 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.financial_details
2014-06-03 08:31:04,802 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [sort_code3, id, sort_code2, applicants_id, bank_name, account_holder_name, sort_code1, account_holder_months, bank_account_number, account_holder_years]
2014-06-03 08:31:04,810 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.id_item_details
2014-06-03 08:31:04,810 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, identification_items_id, item_value, id_type_details_id]
2014-06-03 08:31:04,819 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.id_type_details
2014-06-03 08:31:04,819 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, label_sequence, item_label, identification_types_code]
2014-06-03 08:31:04,827 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.identification_items
2014-06-03 08:31:04,827 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, applicants_id, identification_type_code]
2014-06-03 08:31:04,835 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.identification_types
2014-06-03 08:31:04,835 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:04,844 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.agent_details
2014-06-03 08:31:04,844 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, first_name, title, surname, agent_id, email_address]
2014-06-03 08:31:04,852 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.authentication_token_refs
2014-06-03 08:31:04,852 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, authentication_token, end_datetime, transactionuuid, retailer_reference_name, user_id, token_accessed_datetime, start_datetime]
2014-06-03 08:31:04,859 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.aws_template_master
2014-06-03 08:31:04,859 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, description, name]
2014-06-03 08:31:04,866 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.document_format
2014-06-03 08:31:04,866 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:04,873 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.esignature_documents
2014-06-03 08:31:04,874 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, aws_template_id, context_id, document_id, doc_index, document_roles]
2014-06-03 08:31:04,881 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.esignature_params
2014-06-03 08:31:04,881 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, esign_param_value, esign_param_name, fi_partner_systems_id]
2014-06-03 08:31:04,888 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.esignature_roles
2014-06-03 08:31:04,888 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, description, role]
2014-06-03 08:31:04,895 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.form_field_esignature_positions
2014-06-03 08:31:04,895 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, form_field_name, esignature_roles_id, agreement_type_id]
2014-06-03 08:31:04,901 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.id_check_types
2014-06-03 08:31:04,901 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:04,909 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.id_checks
2014-06-03 08:31:04,909 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [mandatory_pass, id, end_datetime, partners_id, check_type_code, start_datetime]
2014-06-03 08:31:04,916 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_checks_compositions
2014-06-03 08:31:04,917 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, config_id, end_datetime, eidv_checks_expr, start_datetime]
2014-06-03 08:31:04,924 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_checks_configuration
2014-06-03 08:31:04,924 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, end_datetime, eidv_checks_expr, user_id, partners_id, start_datetime]
2014-06-03 08:31:04,932 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_messages
2014-06-03 08:31:04,932 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, description, created_datetime, partner_message_code, partner_systems_id]
2014-06-03 08:31:04,940 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_system_creds
2014-06-03 08:31:04,940 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, username, end_datetime, destination_partner_system_id, source_partner_system_id, password, start_datetime]
2014-06-03 08:31:04,948 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_system_custom_brand
2014-06-03 08:31:04,948 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, retailer_partner_systems_id, brandname, location, brand_name, version]
2014-06-03 08:31:04,955 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.retailer_fi_params
2014-06-03 08:31:04,955 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [param_value, id, retailer_partner_systems_id, param_name, fi_partner_systems_id]
2014-06-03 08:31:04,963 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.template_references
2014-06-03 08:31:04,963 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, consent_flow, aws_template_id, partner_system_id, template_reference]
2014-06-03 08:31:04,969 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.template_references_roles
2014-06-03 08:31:04,969 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [esignature_roles_id, template_references_id]
2014-06-03 08:31:04,976 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.transaction_agents
2014-06-03 08:31:04,976 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [creation_datetime, agent_id, transactions_id]
2014-06-03 08:31:04,983 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.transaction_applicants
2014-06-03 08:31:04,983 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [applicants_id, primary_applicant_ind, transactions_id]
2014-06-03 08:31:04,991 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.iocs_error_type
2014-06-03 08:31:04,991 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:05,002 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.iocs_fax_notification
2014-06-03 08:31:05,002 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [esign_guid, id, creation_datetime, is_fax_status, documentid, transactionuuid, document_process_status, status_change_date, reject_reason]
2014-06-03 08:31:05,011 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.iocs_messages
2014-06-03 08:31:05,011 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [end_datetime, iocs_error_code, iocs_error_type, iocs_message, start_datetime]
2014-06-03 08:31:05,020 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.message_mappings
2014-06-03 08:31:05,020 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [end_datetime, iocs_error_code, partner_message_id, created_datetime, start_datetime]
2014-06-03 08:31:05,031 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.next_user_details
2014-06-03 08:31:05,031 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, creditlimit, creation_datetime, transactionuuid, userid, attemptnumber, accountstatus, amountpayable, chargeforcredit, transactionurl, password, emailid]
2014-06-03 08:31:05,039 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_bespoke_details
2014-06-03 08:31:05,040 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, partner_bespoke_params_id, creation_datetime, transactionuuid, paramvalue]
2014-06-03 08:31:05,048 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_bespoke_params
2014-06-03 08:31:05,048 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [paramname, id, partnersystemid, creation_datetime, request_response_param, ismandatory]
2014-06-03 08:31:05,056 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_role_types
2014-06-03 08:31:05,056 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:05,066 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_roles
2014-06-03 08:31:05,067 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, partner_role_types_code, partners_id, transactions_id]
2014-06-03 08:31:05,076 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_system_customer_verification_masters
2014-06-03 08:31:05,076 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [max_length, id, isactive, min_length, verification_type, partner_systems_id]
2014-06-03 08:31:05,084 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_system_refs
2014-06-03 08:31:05,084 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, partner_system_reference_name, partner_systems_id, partner_system_reference_value, transactions_id]
2014-06-03 08:31:05,092 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partner_systems
2014-06-03 08:31:05,092 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, ip_address, description, system_name, partners_id]
2014-06-03 08:31:05,099 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.partners
2014-06-03 08:31:05,099 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [collaterol_directory, css_directory, id, end_datetime, partner_name, pdf_directory, start_datetime]
2014-06-03 08:31:05,107 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.phone_numbers
2014-06-03 08:31:05,107 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, mobile_phone, applicants_id, home_ex_directory, work_phone, home_phone]
2014-06-03 08:31:05,112 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.question
2014-06-03 08:31:05,112 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, question_text]
2014-06-03 08:31:05,121 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.retailer_eidnv_params
2014-06-03 08:31:05,121 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [param_value, id, retailer_partner_systems_id, end_datetime, param_name, eidnv_partner_systems_id, start_datetime]
2014-06-03 08:31:05,129 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.retailer_redirect_url
2014-06-03 08:31:05,130 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [url_type_code, id, environment, end_datetime, partner_systems_id, url, start_datetime]
2014-06-03 08:31:05,137 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.system_parameters
2014-06-03 08:31:05,137 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [variable_name, variable_value]
2014-06-03 08:31:05,145 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.template_page
2014-06-03 08:31:05,145 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [pdf_templates_id, page_number, page_name]
2014-06-03 08:31:05,153 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.transaction_status_history
2014-06-03 08:31:05,153 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [transaction_statuses_code, status_change_datetime, transactions_id]
2014-06-03 08:31:05,160 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.transaction_statuses
2014-06-03 08:31:05,160 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:05,168 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.transactions
2014-06-03 08:31:05,168 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [loan_amount, consent_flow, contract_status, creation_datetime, id, basket_amount, deposit_amount, eidv_response, latest_silanis_status, repayment_count, transactionuuid, channel, repayment_period]
2014-06-03 08:31:05,175 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.url_types
2014-06-03 08:31:05,176 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [description, code]
2014-06-03 08:31:05,182 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) table found: iocs.dbo.users
2014-06-03 08:31:05,182 INFO [org.hibernate.tool.hbm2ddl.TableMetadata] (main) columns: [id, username, end_datetime, forename, surname, partners_id, password, start_datetime]
2014-06-03 08:31:05,338 INFO [org.springframework.orm.hibernate3.HibernateTransactionManager] (main) Using DataSource [org.jboss.resource.adapter.jdbc.WrapperDataSource@498b2667] of Hibernate SessionFactory for HibernateTransactionManager
2014-06-03 08:31:06,598 INFO [com.iocs.client.silanis.impl.ProcessManager] (main) AWS URL: http://internal-IRD-BE-Int-201384671.eu-west-1.elb.amazonaws.com:8080/aws/ws/services/Aws
2014-06-03 08:31:08,281 INFO [org.springframework.xml.xsd.commons.CommonsXsdSchemaCollection] (main) Loaded ServletContext resource [/WEB-INF/wsdl/internal-service-messages.xsd]
2014-06-03 08:31:08,331 INFO [org.springframework.xml.xsd.commons.CommonsXsdSchemaCollection] (main) Loaded ServletContext resource [/WEB-INF/wsdl/external-service-messages.xsd]
2014-06-03 08:31:08,429 INFO [org.springframework.oxm.jaxb.Jaxb2Marshaller] (main) Creating JAXBContext with classes to be bound [class com.iocs.service.generated.VerifyUserRequest,class com.iocs.service.generated.VerifyUserResponse,class com.iocs.service.generated.ProcessESignatureRequest,class com.iocs.service.generated.ProcessESignatureResponse,class com.iocs.service.generated.DownloadAgreementPackageRequest,class com.iocs.service.generated.DownloadAgreementPackageResponse,class com.iocs.service.generated.IsAliveRequest,class com.iocs.service.generated.IsAliveResponse,class com.iocs.service.generated.InitiateTransactionRequest,class com.iocs.service.generated.InitiateTransactionResponse,class com.iocs.service.generated.ResumeTransactionRequest,class com.iocs.service.generated.ResumeTransactionResponse,class com.iocs.service.generated.ProcessTransactionRequest,class com.iocs.service.generated.ProcessTransactionResponse,class com.iocs.service.generated.AuthenticateUserRequest,class com.iocs.service.generated.AuthenticateUserResponse,class com.iocs.client.callcredit.generated.Callvalidate,class com.iocs.client.callcredit.generated.Result,class com.iocs.service.generated.BespokeAuthRequest,class com.iocs.service.generated.BespokeAuthResponse,class com.iocs.service.generated.ProcessIDCheckRequest,class com.iocs.service.generated.ProcessIDCheckResponse,class com.iocs.service.generated.CancelTransactionRequest,class com.iocs.service.generated.CancelTransactionResponse,class com.iocs.service.generated.ProcessURLBasedEsignatureRequest,class com.iocs.service.generated.ProcessCustomBrandLogoRequest,class com.iocs.service.generated.ProcessCustomBrandLogoResponse,class com.iocs.service.generated.AutoSignRequest,class com.iocs.service.generated.AutoSignResponse,class com.iocs.service.generated.DownloadEvidenceRequest,class com.iocs.service.generated.DownloadEvidenceResponse]
2014-06-03 08:31:10,383 INFO [org.springframework.web.context.ContextLoader] (main) Root WebApplicationContext: initialization completed in 10903 ms
2014-06-03 08:31:10,434 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/
2014-06-03 08:31:10,526 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/counter
2014-06-03 08:31:10,981 INFO [org.jboss.cache.jmx.PlatformMBeanServerRegistration] (main) JBossCache MBeans were successfully registered to the platform mbean server.
2014-06-03 08:31:10,997 WARN [org.jgroups.protocols.TCPGOSSIP] (main) down_thread was deprecated and is ignored
2014-06-03 08:31:10,997 WARN [org.jgroups.protocols.TCPGOSSIP] (main) up_thread was deprecated and is ignored
2014-06-03 08:31:11,075 INFO [STDOUT] (main)
---------------------------------------------------------
GMS: address is 10.43.3.200:7600 (cluster=DocsPartition-SessionCache)
---------------------------------------------------------
2014-06-03 08:31:14,100 INFO [org.jboss.cache.RPCManagerImpl] (main) Received new cluster view: [10.43.3.200:7600|0] [10.43.3.200:7600]
2014-06-03 08:31:14,101 INFO [org.jboss.cache.RPCManagerImpl] (main) Cache local address is 10.43.3.200:7600
2014-06-03 08:31:14,101 INFO [org.jboss.cache.RPCManagerImpl] (main) state was retrieved successfully (in 3.05 seconds)
2014-06-03 08:31:14,113 INFO [org.jboss.cache.factories.ComponentRegistry] (main) JBoss Cache version: JBossCache 'Cascabel' 3.1.0.GA
2014-06-03 08:31:16,045 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/iocs-cbu-application
2014-06-03 08:31:16,328 ERROR [STDERR] (main) SLF4J: Class path contains multiple SLF4J bindings.
2014-06-03 08:31:16,329 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/common/lib/slf4j-jboss-logging.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:31:16,329 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/iocs-cbu-application.war/WEB-INF/lib/slf4j-log4j12-1.5.8.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:31:16,329 ERROR [STDERR] (main) SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
2014-06-03 08:31:17,663 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: sit
2014-06-03 08:31:17,666 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: uat
2014-06-03 08:31:17,670 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: feuser1
2014-06-03 08:31:17,672 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: feuser2
2014-06-03 08:31:17,674 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: pefeuser1
2014-06-03 08:31:17,677 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: pefeuser2
2014-06-03 08:31:17,735 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/iocs-cbu-application]] (main) Initializing Spring root WebApplicationContext
2014-06-03 08:31:23,769 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role] of domain class com.iocs.users.ReportingUsers has type [com.iocs.roles.Roles] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:23,782 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [partnerSystem] of domain class com.iocs.util.BrandList has type [com.iocs.partnersystem.PartnerSystem] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:23,784 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:23,785 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:31:23,786 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:23,786 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:31:23,790 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [logo] of domain class com.iocs.util.LogoMaster has type [[B] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:23,791 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [user] of domain class com.iocs.util.LogoMaster has type [com.iocs.users.ReportingUsers] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:23,791 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [status] of domain class com.iocs.util.LogoMaster has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:31:23,791 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [status] of domain class com.iocs.util.LogoMaster has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:23,792 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [publishDate] of domain class com.iocs.util.LogoMaster has type [java.util.Date] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:24,034 INFO [STDOUT] (main) config.ConfigurationFactory No configuration found. Configuring ehcache from ehcache-failsafe.xml found in the classpath: vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/iocs-cbu-application.war/WEB-INF/lib/ehcache-core-1.7.1.jar/ehcache-failsafe.xml
2014-06-03 08:31:24,491 INFO [org.jboss.ha.framework.interfaces.HAPartition.lifecycle.DocsPartition] (Incoming-3,10.43.3.200:7600) New cluster view for partition DocsPartition (id: 1, delta: 1) : [10.43.3.200:1099, 10.43.2.200:1099]
2014-06-03 08:31:24,494 INFO [org.jboss.ha.framework.server.DistributedReplicantManagerImpl.DocsPartition] (AsynchViewChangeHandler Thread) I am (10.43.3.200:1099) received membershipChanged event:
2014-06-03 08:31:24,495 INFO [org.jboss.ha.framework.server.DistributedReplicantManagerImpl.DocsPartition] (AsynchViewChangeHandler Thread) Dead members: 0 ([])
2014-06-03 08:31:24,495 INFO [org.jboss.ha.framework.server.DistributedReplicantManagerImpl.DocsPartition] (AsynchViewChangeHandler Thread) New Members : 1 ([10.43.2.200:1099])
2014-06-03 08:31:24,495 INFO [org.jboss.ha.framework.server.DistributedReplicantManagerImpl.DocsPartition] (AsynchViewChangeHandler Thread) All Members : 2 ([10.43.3.200:1099, 10.43.2.200:1099])
2014-06-03 08:31:24,569 INFO [org.jboss.cache.RPCManagerImpl] (Incoming-5,10.43.3.200:7600) Received new cluster view: [10.43.3.200:7600|1] [10.43.3.200:7600, 10.43.2.200:7600]
2014-06-03 08:31:25,470 INFO [STDOUT] (main) scaffolding.DefaultGrailsTemplateGenerator Scaffolding template generator set to use resource loader org.codehaus.groovy.grails.commons.spring.GrailsWebApplicationContext@79af751b: startup date [Tue Jun 03 08:31:22 GMT+01:00 2014]; parent: Root WebApplicationContext
2014-06-03 08:31:26,880 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:26,880 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:31:26,880 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:26,880 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:31:26,881 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role] of domain class com.iocs.users.ReportingUsers has type [com.iocs.roles.Roles] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:26,883 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [partnerSystem] of domain class com.iocs.util.BrandList has type [com.iocs.partnersystem.PartnerSystem] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:26,883 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [logo] of domain class com.iocs.util.LogoMaster has type [[B] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:26,883 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [user] of domain class com.iocs.util.LogoMaster has type [com.iocs.users.ReportingUsers] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:26,884 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [status] of domain class com.iocs.util.LogoMaster has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:31:26,884 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [status] of domain class com.iocs.util.LogoMaster has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:26,884 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [publishDate] of domain class com.iocs.util.LogoMaster has type [java.util.Date] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:26,886 INFO [STDOUT] (main) context.GrailsConfigUtils [GrailsContextLoader] Grails application loaded.
2014-06-03 08:31:27,102 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/iocs-cbu-application]] (main) Initializing Spring FrameworkServlet 'grails'
2014-06-03 08:31:28,899 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/iocs-vaulting
2014-06-03 08:31:29,106 ERROR [STDERR] (main) SLF4J: Class path contains multiple SLF4J bindings.
2014-06-03 08:31:29,106 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/common/lib/slf4j-jboss-logging.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:31:29,106 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/iocs-vaulting.war/WEB-INF/lib/slf4j-log4j12-1.5.8.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:31:29,106 ERROR [STDERR] (main) SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
2014-06-03 08:31:30,178 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: sit
2014-06-03 08:31:30,181 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: uat
2014-06-03 08:31:30,185 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: feuser1
2014-06-03 08:31:30,187 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: feuser2
2014-06-03 08:31:30,217 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: sit
2014-06-03 08:31:30,219 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: uat
2014-06-03 08:31:30,222 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: feuser1
2014-06-03 08:31:30,224 ERROR [STDERR] (main) log4j:ERROR Method missing when configuring log4j: feuser2
2014-06-03 08:31:30,249 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/iocs-vaulting]] (main) Initializing Spring root WebApplicationContext
2014-06-03 08:31:35,062 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:35,063 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:31:35,064 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:35,064 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:31:35,074 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role] of domain class com.iocs.users.ReportingUsers has type [com.iocs.roles.Roles] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:35,306 INFO [STDOUT] (main) config.ConfigurationFactory No configuration found. Configuring ehcache from ehcache-failsafe.xml found in the classpath: vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/iocs-vaulting.war/WEB-INF/lib/ehcache-core-1.7.1.jar/ehcache-failsafe.xml
2014-06-03 08:31:36,487 INFO [STDOUT] (main) scaffolding.DefaultGrailsTemplateGenerator Scaffolding template generator set to use resource loader org.codehaus.groovy.grails.commons.spring.GrailsWebApplicationContext@3b1e124f: startup date [Tue Jun 03 08:31:34 GMT+01:00 2014]; parent: Root WebApplicationContext
2014-06-03 08:31:37,693 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:37,694 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [menu_acsess] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:31:37,694 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:37,694 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role_level] of domain class com.iocs.roles.Roles has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2014-06-03 08:31:37,695 INFO [STDOUT] (main) util.GrailsUtil [WARNING] Property [role] of domain class com.iocs.users.ReportingUsers has type [com.iocs.roles.Roles] and doesn't support constraint [blank]. This constraint will not be checked during validation.
2014-06-03 08:31:37,697 INFO [STDOUT] (main) context.GrailsConfigUtils [GrailsContextLoader] Grails application loaded.
2014-06-03 08:31:37,846 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/iocs-vaulting]] (main) Initializing Spring FrameworkServlet 'grails'
2014-06-03 08:31:38,400 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/iocs-web
2014-06-03 08:31:38,494 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/jmx-console
2014-06-03 08:31:38,896 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/next-web
2014-06-03 08:31:39,079 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/soap-handback-handler
2014-06-03 08:31:39,172 ERROR [STDERR] (main) SLF4J: Class path contains multiple SLF4J bindings.
2014-06-03 08:31:39,173 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/soap-handback-handler.war/WEB-INF/lib/slf4j-log4j12-1.6.1.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:31:39,173 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/common/lib/slf4j-jboss-logging.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:31:39,173 ERROR [STDERR] (main) SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
2014-06-03 08:31:40,912 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (main) deploy, ctxPath=/training
2014-06-03 08:31:41,094 ERROR [STDERR] (main) SLF4J: Class path contains multiple SLF4J bindings.
2014-06-03 08:31:41,094 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/common/lib/slf4j-jboss-logging.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:31:41,094 ERROR [STDERR] (main) SLF4J: Found binding in [vfszip:/home/iocs/jboss-5.1.0.GA/server/sw/deploy/training.war/WEB-INF/lib/slf4j-log4j12-1.5.8.jar/org/slf4j/impl/StaticLoggerBinder.class]
2014-06-03 08:31:41,094 ERROR [STDERR] (main) SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
2014-06-03 08:31:42,067 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/training]] (main) Initializing Spring root WebApplicationContext
2014-06-03 08:31:49,622 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/training]] (main) Initializing Spring FrameworkServlet 'grails'
2014-06-03 08:31:49,926 INFO [org.apache.coyote.http11.Http11Protocol] (main) Starting Coyote HTTP/1.1 on http-0.0.0.0-8080
2014-06-03 08:31:50,003 INFO [org.apache.coyote.ajp.AjpProtocol] (main) Starting Coyote AJP/1.3 on ajp-0.0.0.0-8009
2014-06-03 08:31:50,070 INFO [org.jboss.bootstrap.microcontainer.ServerImpl] (main) JBoss (Microcontainer) [5.1.0.GA (build: SVNTag=JBoss_5_1_0_GA date=200905221053)] Started in 2m:13s:566ms
2014-06-03 08:31:57,903 WARN [org.jgroups.protocols.pbcast.NAKACK] (OOB-1,10.43.3.200:7600) 10.43.3.200:7600] discarded message from non-member 10.43.2.200:7600, my view is [10.43.3.200:7600|0] [10.43.3.200:7600]
2014-06-03 08:31:58,117 WARN [org.jgroups.protocols.pbcast.NAKACK] (OOB-1,10.43.3.200:7600) 10.43.3.200:7600] discarded message from non-member 10.43.2.200:7600, my view is [10.43.3.200:7600|0] [10.43.3.200:7600]
2014-06-03 08:32:36,567 WARN [org.jgroups.protocols.pbcast.NAKACK] (OOB-1,10.43.3.200:7600) 10.43.3.200:7600] discarded message from non-member 10.43.2.200:7600, my view is [10.43.3.200:7600|0] [10.43.3.200:7600]
2014-06-03 08:32:37,176 WARN [org.jgroups.protocols.pbcast.NAKACK] (OOB-1,10.43.3.200:7600) 10.43.3.200:7600] discarded message from non-member 10.43.2.200:7600, my view is [10.43.3.200:7600|0] [10.43.3.200:7600]
2014-06-03 08:32:55,187 WARN [org.jgroups.protocols.pbcast.NAKACK] (OOB-1,10.43.3.200:7600) 10.43.3.200:7600] discarded message from non-member 10.43.2.200:7600, my view is [10.43.3.200:7600|0] [10.43.3.200:7600]
2014-06-03 08:32:55,845 WARN [org.jgroups.protocols.pbcast.NAKACK] (OOB-1,10.43.3.200:7600) 10.43.3.200:7600] discarded message from non-member 10.43.2.200:7600, my view is [10.43.3.200:7600|0] [10.43.3.200:7600]
-
10. Re: High CPU usages after start Gossip server.
belaban Jun 9, 2014 10:50 AM (in response to swapsralhi)These are trace logs, not *stack traces* !