[Messaging, JMS & JBossMQ] - Cluster nodes fails to correctly deploy JMS Topic
by zdev
We are currently using JBoss 4.0.5.GA_CP06. In one of our customer deployments, there is a two node cluster. We are seeing one of the nodes come up with no problem, but the other node comes up and fails to correctly deploy our JMS topic. The error in the stdout log is:
20:30:17,718 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
--- MBeans waiting for other MBeans ---
ObjectName: jboss.mq.destination:service=Topic,name=Singlecast
State: CONFIGURED
I Depend On:
jboss.mq:service=DestinationManager
--- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
ObjectName: jboss.mq:service=DestinationManager
State: NOTYETINSTALLED
Depends On Me:
jboss.mq.destination:service=Topic,name=Singlecast
I did some research on this, and I found something that said this would happen when using HAJMS and the topic was deployed in the server/[cluster]/deploy directory. It said to deploy the topic in the server/[cluster]/deploy-hasingleton directory instead. So I moved the destination service file accordingly. Here is that file:
<!-- singlecast-destination-service.xml --> <?xml version="1.0" encoding="UTF-8"?>
<depends optional-attribute-name="DestinationManager">jboss.mq:service=DestinationManager
We now no longer get the error above, but we still see one of the nodes come up just fine, and the other node fail. Only now it fails within our own code. Specifically, it fails because "ConnectionFactory not bound". I am assuming I have not specified the JNDI name correctly, but I don't know what it is supposed to be. Here is how it configured right now:
<!-- from web.xml -->
<resource-ref>
Singlecast Topic
<res-ref-name>jms/SinglecastTopic</res-ref-name>
<res-type>javax.jms.Topic</res-type>
<res-auth>Container</res-auth>
</resource-ref>
<resource-ref>
Singlecast Topic Connection Factory
<res-ref-name>jms/SinglecastTopicConnectionFactory</res-ref-name>
<res-type>javax.jms.TopicConnectionFactory</res-type>
<res-auth>Container</res-auth>
</resource-ref>
<!-- from jboss-web.xml -->
<resource-ref>
<res-ref-name>jms/SinglecastTopic</res-ref-name>
<jndi-name>topic/Singlecast</jndi-name>
</resource-ref>
<resource-ref>
<res-ref-name>jms/SinglecastTopicConnectionFactory</res-ref-name>
<jndi-name>ConnectionFactory</jndi-name>
</resource-ref>
// from Java code
InitialContext ctx = new InitialContext();
TopicConnectionFactory factory = (TopicConnectionFactory) ctx.lookup("ConnectionFactory");
_conConnection = factory.createTopicConnection("guest", "guest");
_tpcTopic = (Topic) ctx.lookup("topic/Singlecast");
_sesSession = _conConnection.createTopicSession(false, Session.AUTO_ACKNOWLEDGE);
TopicSubscriber sub = _sesSession.createSubscriber(_tpcTopic);
sub.setMessageListener(this);
_conConnection.start();
Is there something wrong with what we are doing? Why would one of the nodes come up successfully but the other one not be able to find the JNDI name? Anything you could do to point us in the right direction would be very helpful.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4147533#4147533
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4147533
17 years, 11 months
[Remoting] - ConnectionNotifier: NullPointerException!
by slogger
Hello, gurus!
Tim Fox (Messaging Lead) adviced me to post this problem on remoting forum.
I am using JBoss Messaging 1.4.0.SP3 on Jboss AS 4.2.1 GA (non-clustered installation).
Jboss messaging uses remoting 2.2.2 SP4 (it's requirements in release notes for messaging).
The JBoss Messaging configuration is defualt.
It works excellently during about first 24 hours. After this unexpected error occurs periodically:
2008-04-24 16:14:20,486 DEBUG [org.jboss.remoting.ConnectionNotifier] Server connection lost to client session id = 117av-jr2kld-ffc8mznf-1-ffc8q2ro-7
| 2008-04-24 16:14:20,486 ERROR [org.jboss.remoting.ConnectionNotifier] Error notifying connection listeners of lost client connection.
| java.lang.NullPointerException
| at org.jboss.remoting.ConnectionNotifier.connectionLost(ConnectionNotifier.java:50)
| at org.jboss.remoting.Lease.notifyClientLost(Lease.java:211)
| at org.jboss.remoting.Lease.access$500(Lease.java:39)
| at org.jboss.remoting.Lease$LeaseTimerTask.run(Lease.java:249)
| at java.util.TimerThread.mainLoop(Timer.java:512)
| at java.util.TimerThread.run(Timer.java:462)
|
|
|
After this, sending/consuming of messages didn't work at all :(. There are no errors on client side. All messages are holding in queues.
Das somebody have any idea about this?
Thanks in advance.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4147531#4147531
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4147531
17 years, 11 months
[Clustering/JBoss] - Jboss 4.2.2 GA clustering
by praveenas
I have posted my query with the topic"Unable to run multiple jboss cluster nodes". As that, I could not respond through that topic, I am once again posting here.. Please find some time to respond to my query.
VERSION- jboss 4.2.2.GA
APACHE- httpd 2.0.63
uriworkersmap.properties file
# Simple worker configuration file
#
# Mount the Servlet context to the ajp13 worker
/casper-2.1=loadbalancer
/casper-2.1/*=loadbalancer
/web-console=loadbalancer
/web-console/*=loadbalancer
workers.properties
# Define list of workers that will be used
# for mapping requests
# The configuration directives are valid
# for the mod_jk version 1.2.18 and later
#
worker.list=loadbalancer,status
# Define Node1
# modify the host as your host IP or DNS name.
worker.node1.port=8009
worker.node1.host=10.20.220.15
worker.node1.type=ajp13
worker.node1.lbfactor=1
# worker.node1.connection_pool_size=10 (1)
# Define Node2
# modify the host as your host IP or DNS name.
worker.node2.port=8009
worker.node2.host= 10.20.220.3
worker.node2.type=ajp13
worker.node2.lbfactor=1
# worker.node1.connection_pool_size=10 (1)
# Load-balancing behaviour
worker.loadbalancer.type=lb
worker.loadbalancer.balance_workers=node1,node2
worker.loadbalancer.sticky_session=1
# Status worker for managing load balancer
worker.status.type=status
These are the log files informations
access_log file
10.20.220.15 - - [29/Apr/2008:19:43:15 +0530] "GET /favicon.ico HTTP/1.1" 404 300
10.20.220.15 - - [29/Apr/2008:19:43:19 +0530] "GET /casper-2.1/app HTTP/1.1" 200 729
10.20.220.15 - - [29/Apr/2008:19:43:20 +0530] "GET /casper-2.1/app?serviceId=Echo.ClientEngine HTTP/1.1" 200 10767
10.20.220.15 - - [29/Apr/2008:19:43:20 +0530] "POST /casper-2.1/app?serviceId=Echo.Synchronize HTTP/1.1" 200 3434
10.20.220.15 - - [29/Apr/2008:19:43:21 +0530] "GET /casper-2.1/app?serviceId=Echo.WebContainer HTTP/1.1" 200 609
10.20.220.15 - - [29/Apr/2008:19:43:21 +0530] "GET /casper-2.1/app?serviceId=Echo.ContentPane HTTP/1.1" 200 809
10.20.220.15 - - [29/Apr/2008:19:43:21 +0530] "GET /casper-2.1/app?serviceId=780515_1199a893c47_1 HTTP/1.1" 200 11333
error_log file
[Tue Apr 29 19:40:40 2008] [notice] Apache/2.0.63 (Unix) mod_jk/1.2.26 configured -- resuming normal operations
[Tue Apr 29 19:42:31 2008] [notice] caught SIGTERM, shutting down
[Tue Apr 29 19:42:32 2008] [notice] Apache/2.0.63 (Unix) mod_jk/1.2.26 configured -- resuming normal operations
[Tue Apr 29 19:43:15 2008] [error] [client 10.20.220.15] File does not exist: /usr/local/apache2/htdocs/favicon.ico
mod_jk.log file
[Tue Apr 29 19:40:40 2008][9063:3086722752] [error] init_jk::mod_jk.c (2781): Initializing shm:/usr/local/apache2/run/jk.shm.9063 errno=2. Load balancing workers will not function properly.
[Tue Apr 29 19:40:40 2008][9063:3086722752] [warn] jk_map_validate_property::jk_map.c (410): The attribute 'worker.node1.cachesize' is deprecated - please check the documentation for the correct replacement.
[Tue Apr 29 19:40:40 2008][9063:3086722752] [warn] jk_map_validate_property::jk_map.c (410): The attribute 'worker.node2.cachesize' is deprecated - please check the documentation for the correct replacement.
[Tue Apr 29 19:40:40 2008][9063:3086722752] [info] init_jk::mod_jk.c (2825): mod_jk/1.2.26 initialized
[Tue Apr 29 19:40:40 2008][9064:3086722752] [error] init_jk::mod_jk.c (2781): Initializing shm:/usr/local/apache2/run/jk.shm.9064 errno=2. Load balancing workers will not function properly.
[Tue Apr 29 19:40:40 2008][9064:3086722752] [warn] jk_map_validate_property::jk_map.c (410): The attribute 'worker.node1.cachesize' is deprecated - please check the documentation for the correct replacement.
[Tue Apr 29 19:40:40 2008][9064:3086722752] [warn] jk_map_validate_property::jk_map.c (410): The attribute 'worker.node2.cachesize' is deprecated - please check the documentation for the correct replacement.
[Tue Apr 29 19:40:40 2008][9064:3086722752] [info] init_jk::mod_jk.c (2825): mod_jk/1.2.26 initialized
[Tue Apr 29 19:42:32 2008][9080:3086325440] [error] init_jk::mod_jk.c (2781): Initializing shm:/usr/local/apache2/run/jk.shm.9080 errno=2. Load balancing workers will not function properly.
[Tue Apr 29 19:42:32 2008][9080:3086325440] [warn] jk_map_validate_property::jk_map.c (410): The attribute 'worker.node1.cachesize' is deprecated - please check the documentation for the correct replacement.
[Tue Apr 29 19:42:32 2008][9080:3086325440] [warn] jk_map_validate_property::jk_map.c (410): The attribute 'worker.node2.cachesize' is deprecated - please check the documentation for the correct replacement.
[Tue Apr 29 19:42:32 2008][9080:3086325440] [info] init_jk::mod_jk.c (2825): mod_jk/1.2.26 initialized
[Tue Apr 29 19:42:32 2008][9081:3086325440] [error] init_jk::mod_jk.c (2781): Initializing shm:/usr/local/apache2/run/jk.shm.9081 errno=2. Load balancing workers will not function properly.
[Tue Apr 29 19:42:32 2008][9081:3086325440] [warn] jk_map_validate_property::jk_map.c (410): The attribute 'worker.node1.cachesize' is deprecated - please check the documentation for the correct replacement.
[Tue Apr 29 19:42:32 2008][9081:3086325440] [warn] jk_map_validate_property::jk_map.c (410): The attribute 'worker.node2.cachesize' is deprecated - please check the documentation for the correct replacement.
[Tue Apr 29 19:42:32 2008][9081:3086325440] [info] init_jk::mod_jk.c (2825): mod_jk/1.2.26 initialized
[Tue Apr 29 19:43:20 2008]loadbalancer 10.20.220.135 0.672419
[Tue Apr 29 19:43:20 2008]loadbalancer 10.20.220.135 0.110334
[Tue Apr 29 19:43:21 2008]loadbalancer 10.20.220.135 0.693316
[Tue Apr 29 19:43:21 2008]loadbalancer 10.20.220.135 0.024746
[Tue Apr 29 19:43:21 2008]loadbalancer 10.20.220.135 0.024492
[Tue Apr 29 19:43:21 2008]loadbalancer 10.20.220.135 0.037480
server.log of jboss server
2008-04-29 19:44:20,777 DEBUG [org.jboss.logging.Log4jService] Installed System.out adapter
2008-04-29 19:44:20,777 DEBUG [org.jboss.logging.Log4jService] Installed System.err adapter
2008-04-29 19:44:20,779 DEBUG [org.jboss.logging.Log4jService] Added ThrowableListener: org.jboss.logging.Log4jService$ThrowableListenerLoggingAdapter@134ce4a
2008-04-29 19:44:20,779 DEBUG [org.jboss.logging.Log4jService] Created jboss.system:type=Log4jService,service=Logging
2008-04-29 19:44:20,779 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.system:type=Log4jService,service=Logging dependents are: []
2008-04-29 19:44:20,779 DEBUG [org.jboss.system.ServiceController] Creating service jboss.rmi:type=RMIClassLoader
2008-04-29 19:44:20,780 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.rmi:type=RMIClassLoader dependents are: []
2008-04-29 19:44:20,780 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=WebService
2008-04-29 19:44:20,780 DEBUG [org.jboss.system.ServiceController] Ignoring create request for service: jboss:service=WebService
2008-04-29 19:44:20,780 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=NamingBeanImpl
2008-04-29 19:44:20,780 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss:service=NamingBeanImpl dependents are: [ObjectName: jboss:service=Naming
State: CONFIGURED
I Depend On:
jboss.system:service=ThreadPool
jboss:service=NamingBeanImpl
]
2008-04-29 19:44:20,780 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=Naming
2008-04-29 19:44:20,781 DEBUG [org.jboss.naming.NamingService] Creating jboss:service=Naming
2008-04-29 19:44:20,781 DEBUG [org.jboss.naming.NamingService] Created jboss:service=Naming
2008-04-29 19:44:20,793 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss:service=Naming dependents are: []
2008-04-29 19:44:20,793 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=Naming
2008-04-29 19:44:20,793 DEBUG [org.jboss.system.ServiceController] Ignoring create request for service: jboss:service=Naming
2008-04-29 19:44:20,794 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=JNDIView
2008-04-29 19:44:20,794 DEBUG [org.jboss.naming.JNDIView] Creating jboss:service=JNDIView
2008-04-29 19:44:20,794 DEBUG [org.jboss.naming.JNDIView] Created jboss:service=JNDIView
2008-04-29 19:44:20,794 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss:service=JNDIView dependents are: []
2008-04-29 19:44:20,794 DEBUG [org.jboss.system.ServiceController] Creating service jboss.security:service=SecurityConfig
2008-04-29 19:44:20,794 DEBUG [org.jboss.security.plugins.SecurityConfig] Creating jboss.security:service=SecurityConfig
2008-04-29 19:44:20,794 DEBUG [org.jboss.security.plugins.SecurityConfig] Created jboss.security:service=SecurityConfig
2008-04-29 19:44:20,794 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.security:service=SecurityConfig dependents are: []
2008-04-29 19:44:20,794 DEBUG [org.jboss.system.ServiceController] Creating service jboss.security:service=XMLLoginConfig
2008-04-29 19:44:20,795 DEBUG [org.jboss.security.auth.login.XMLLoginConfig] Creating jboss.security:service=XMLLoginConfig
2008-04-29 19:44:20,795 DEBUG [org.jboss.security.auth.login.XMLLoginConfig] Created jboss.security:service=XMLLoginConfig
2008-04-29 19:44:20,795 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.security:service=XMLLoginConfig dependents are: []
2008-04-29 19:44:20,795 DEBUG [org.jboss.system.ServiceController] Creating service jboss.security:service=JaasSecurityManager
2008-04-29 19:44:20,795 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] Creating jboss.security:service=JaasSecurityManager
2008-04-29 19:44:20,795 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] Created jboss.security:service=JaasSecurityManager
2008-04-29 19:44:20,795 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.security:service=JaasSecurityManager dependents are: []
2008-04-29 19:44:20,798 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=XidFactory
2008-04-29 19:44:20,799 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss:service=XidFactory dependents are: []
2008-04-29 19:44:20,799 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=TransactionManager
2008-04-29 19:44:20,799 DEBUG [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Creating jboss:service=TransactionManager
2008-04-29 19:44:20,799 DEBUG [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Created jboss:service=TransactionManager
2008-04-29 19:44:20,805 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss:service=TransactionManager dependents are: [ObjectName: jboss:service=invoker,type=unified
State: CONFIGURED
I Depend On:
jboss:service=TransactionManager
jboss.remoting:service=Connector,transport=socket
, ObjectName: jboss:service=invoker,type=jrmp
State: CONFIGURED
I Depend On:
jboss:service=TransactionManager
Depends On Me:
jboss:service=proxyFactory,target=ClientUserTransactionFactory
jboss:service=proxyFactory,target=ClientUserTransaction
, ObjectName: jboss:service=invoker,type=local
State: CONFIGURED
I Depend On:
jboss:service=TransactionManager
, ObjectName: jboss:service=invoker,type=pooled
State: CONFIGURED
I Depend On:
jboss:service=TransactionManager
]
2008-04-29 19:44:20,806 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=invoker,type=unified
2008-04-29 19:44:20,806 DEBUG [org.jboss.system.ServiceController] waiting in create of jboss:service=invoker,type=unified waiting on jboss.remoting:service=Connector,transport=socket
2008-04-29 19:44:20,806 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=invoker,type=jrmp
2008-04-29 19:44:20,806 DEBUG [org.jboss.invocation.jrmp.server.JRMPInvoker] Creating jboss:service=invoker,type=jrmp
2008-04-29 19:44:20,806 DEBUG [org.jboss.invocation.jrmp.server.JRMPInvoker] Created jboss:service=invoker,type=jrmp
2008-04-29 19:44:20,806 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss:service=invoker,type=jrmp dependents are: [ObjectName: jboss:service=proxyFactory,target=ClientUserTransactionFactory
State: CONFIGURED
I Depend On:
jboss:service=invoker,type=jrmp
Depends On Me:
jboss:service=ClientUserTransaction
, ObjectName: jboss:service=proxyFactory,target=ClientUserTransaction
State: CONFIGURED
I Depend On:
jboss:service=invoker,type=jrmp
Depends On Me:
jboss:service=ClientUserTransaction
]
2008-04-29 19:44:20,806 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=proxyFactory,target=ClientUserTransactionFactory
2008-04-29 19:44:20,807 DEBUG [org.jboss.invocation.jrmp.server.JRMPProxyFactory] Creating jboss:service=proxyFactory,target=ClientUserTransactionFactory
2008-04-29 19:44:20,807 DEBUG [org.jboss.invocation.jrmp.server.JRMPProxyFactory] Created jboss:service=proxyFactory,target=ClientUserTransactionFactory
2008-04-29 19:44:20,807 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss:service=proxyFactory,target=ClientUserTransactionFactory dependents are: [ObjectName: jboss:service=ClientUserTransaction
State: CONFIGURED
I Depend On:
jboss:service=proxyFactory,target=ClientUserTransactionFactory
jboss:service=proxyFactory,target=ClientUserTransaction
]
2008-04-29 19:44:20,807 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=ClientUserTransaction
2008-04-29 19:44:20,807 DEBUG [org.jboss.system.ServiceController] waiting in create of jboss:service=ClientUserTransaction waiting on jboss:service=proxyFactory,target=ClientUserTransaction
2008-04-29 19:44:20,807 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=proxyFactory,target=ClientUserTransaction
2008-04-29 19:44:20,808 DEBUG [org.jboss.invocation.jrmp.server.JRMPProxyFactory] Creating jboss:service=proxyFactory,target=ClientUserTransaction
2008-04-29 19:44:20,808 DEBUG [org.jboss.invocation.jrmp.server.JRMPProxyFactory] Created jboss:service=proxyFactory,target=ClientUserTransaction
2008-04-29 19:44:20,808 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss:service=proxyFactory,target=ClientUserTransaction dependents are: [ObjectName: jboss:service=ClientUserTransaction
State: CONFIGURED
I Depend On:
jboss:service=proxyFactory,target=ClientUserTransactionFactory
jboss:service=proxyFactory,target=ClientUserTransaction
]
2008-04-29 19:44:20,808 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=ClientUserTransaction
2008-04-29 19:44:20,808 DEBUG [org.jboss.tm.usertx.server.ClientUserTransactionService] Creating jboss:service=ClientUserTransaction
2008-04-29 19:44:20,808 DEBUG [org.jboss.tm.usertx.server.ClientUserTransactionService] Created jboss:service=ClientUserTransaction
2008-04-29 19:44:20,810 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss:service=ClientUserTransaction dependents are: []
2008-04-29 19:44:20,810 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=invoker,type=local
2008-04-29 19:44:20,810 DEBUG [org.jboss.invocation.local.LocalInvoker] Creating jboss:service=invoker,type=local
2008-04-29 19:44:20,827 DEBUG [org.jboss.invocation.local.LocalInvoker] Created jboss:service=invoker,type=local
2008-04-29 19:44:20,827 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss:service=invoker,type=local dependents are: []
2008-04-29 19:44:20,827 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=invoker,type=pooled
2008-04-29 19:44:20,828 DEBUG [org.jboss.invocation.pooled.server.PooledInvoker] Creating jboss:service=invoker,type=pooled
2008-04-29 19:44:20,828 DEBUG [org.jboss.invocation.pooled.server.PooledInvoker] Created jboss:service=invoker,type=pooled
2008-04-29 19:44:20,828 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss:service=invoker,type=pooled dependents are: []
2008-04-29 19:44:20,828 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=ClientUserTransaction
2008-04-29 19:44:20,828 DEBUG [org.jboss.system.ServiceController] Ignoring create request for service: jboss:service=ClientUserTransaction
2008-04-29 19:44:20,828 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=proxyFactory,target=ClientUserTransactionFactory
2008-04-29 19:44:20,828 DEBUG [org.jboss.system.ServiceController] Ignoring create request for service: jboss:service=proxyFactory,target=ClientUserTransactionFactory
2008-04-29 19:44:20,828 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=proxyFactory,target=ClientUserTransaction
2008-04-29 19:44:20,828 DEBUG [org.jboss.system.ServiceController] Ignoring create request for service: jboss:service=proxyFactory,target=ClientUserTransaction
2008-04-29 19:44:20,828 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=invoker,type=unified
2008-04-29 19:44:20,828 DEBUG [org.jboss.system.ServiceController] waiting in create of jboss:service=invoker,type=unified waiting on jboss.remoting:service=Connector,transport=socket
2008-04-29 19:44:20,828 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=invoker,type=jrmp
2008-04-29 19:44:20,828 DEBUG [org.jboss.system.ServiceController] Ignoring create request for service: jboss:service=invoker,type=jrmp
2008-04-29 19:44:20,828 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=invoker,type=local
2008-04-29 19:44:20,828 DEBUG [org.jboss.system.ServiceController] Ignoring create request for service: jboss:service=invoker,type=local
2008-04-29 19:44:20,828 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=invoker,type=pooled
2008-04-29 19:44:20,828 DEBUG [org.jboss.system.ServiceController] Ignoring create request for service: jboss:service=invoker,type=pooled
2008-04-29 19:44:20,829 DEBUG [org.jboss.system.ServiceController] Creating service jboss.remoting:service=NetworkRegistry
2008-04-29 19:44:20,829 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.remoting:service=NetworkRegistry dependents are: [ObjectName: jboss.remoting:service=Connector,transport=socket
State: CONFIGURED
I Depend On:
jboss.remoting:service=NetworkRegistry
Depends On Me:
jboss:service=invoker,type=unified
]
2008-04-29 19:44:20,829 DEBUG [org.jboss.system.ServiceController] Creating service jboss.remoting:service=Connector,transport=socket
2008-04-29 19:44:20,882 DEBUG [org.jboss.remoting.ServerInvoker] SocketServerInvoker[UNINITIALIZED] did not find server socket factory configuration as mbean service or classname. Creating default server socket factory.
2008-04-29 19:44:20,883 DEBUG [org.jboss.remoting.ServerInvoker] SocketServerInvoker[UNINITIALIZED] created server socket factory javax.net.DefaultServerSocketFactory@18b8914
2008-04-29 19:44:20,896 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.remoting:service=Connector,transport=socket dependents are: [ObjectName: jboss:service=invoker,type=unified
State: CONFIGURED
I Depend On:
jboss:service=TransactionManager
jboss.remoting:service=Connector,transport=socket
]
2008-04-29 19:44:20,896 DEBUG [org.jboss.system.ServiceController] Creating service jboss:service=invoker,type=unified
2008-04-29 19:44:20,896 DEBUG [org.jboss.invocation.unified.server.UnifiedInvoker] Creating jboss:service=invoker,type=unified
2008-04-29 19:44:20,897 DEBUG [org.jboss.invocation.unified.server.UnifiedInvoker] Created jboss:service=invoker,type=unified
2008-04-29 19:44:20,897 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss:service=invoker,type=unified dependents are: []
2008-04-29 19:44:20,897 DEBUG [org.jboss.system.ServiceController] Creating service jboss.remoting:service=Connector,transport=socket
2008-04-29 19:44:20,897 DEBUG [org.jboss.system.ServiceController] Ignoring create request for service: jboss.remoting:service=Connector,transport=socket
2008-04-29 19:44:20,897 DEBUG [org.jboss.system.ServiceController] Creating service jboss.jdbc:service=metadata
2008-04-29 19:44:20,897 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] Creating jboss.jdbc:service=metadata
2008-04-29 19:44:20,897 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] Created jboss.jdbc:service=metadata
2008-04-29 19:44:20,897 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.jdbc:service=metadata dependents are: []
2008-04-29 19:44:20,897 DEBUG [org.jboss.system.ServiceController] Creating service jboss.deployment:type=DeploymentScanner,flavor=URL
2008-04-29 19:44:20,897 DEBUG [org.jboss.deployment.scanner.URLDeploymentScanner] Creating jboss.deployment:type=DeploymentScanner,flavor=URL
2008-04-29 19:44:20,905 DEBUG [org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread] Running
2008-04-29 19:44:20,905 DEBUG [org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread] Disabled, waiting for notification
2008-04-29 19:44:20,905 DEBUG [org.jboss.deployment.scanner.URLDeploymentScanner] Scanner thread started
2008-04-29 19:44:20,906 DEBUG [org.jboss.deployment.scanner.URLDeploymentScanner] Created jboss.deployment:type=DeploymentScanner,flavor=URL
2008-04-29 19:44:20,906 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.deployment:type=DeploymentScanner,flavor=URL dependents are: []
2008-04-29 19:44:20,906 DEBUG [org.jboss.deployment.MainDeployer] Done with create step of deploying jboss-service.xml
2008-04-29 19:44:20,906 DEBUG [org.jboss.deployment.MainDeployer] Begin deployment start file:/home/praveena/jboss-4.2.2.GA/server/all/conf/jboss-service.xml
2008-04-29 19:44:20,906 DEBUG [org.jboss.deployment.SARDeployer] Deploying SAR, start step: url file:/home/praveena/jboss-4.2.2.GA/server/all/conf/jboss-service.xml
2008-04-29 19:44:20,906 DEBUG [org.jboss.system.ServiceController] starting service jboss.management.local:j2eeType=J2EEDomain,name=Manager
2008-04-29 19:44:20,906 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.management.local:j2eeType=J2EEDomain,name=Manager dependent components: []
2008-04-29 19:44:20,906 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=AttributePersistenceService
2008-04-29 19:44:20,906 DEBUG [org.jboss.system.pm.AttributePersistenceService] Starting jboss:service=AttributePersistenceService
2008-04-29 19:44:20,910 DEBUG [org.jboss.system.pm.XMLAttributePersistenceManager] Constructed
2008-04-29 19:44:20,910 DEBUG [org.jboss.system.pm.XMLAttributePersistenceManager] Using data directory: /home/praveena/jboss-4.2.2.GA/server/all/data/xmbean-attrs
2008-04-29 19:44:20,910 DEBUG [org.jboss.system.pm.AttributePersistenceService] Started jboss:service=AttributePersistenceService
2008-04-29 19:44:20,910 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss:service=AttributePersistenceService dependent components: []
2008-04-29 19:44:20,910 DEBUG [org.jboss.system.ServiceController] starting service jboss.system:service=ThreadPool
2008-04-29 19:44:20,910 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.system:service=ThreadPool dependent components: [ObjectName: jboss:service=WebService
State: CREATED
I Depend On:
jboss.system:service=ThreadPool
, ObjectName: jboss:service=Naming
State: CREATED
I Depend On:
jboss.system:service=ThreadPool
jboss:service=NamingBeanImpl
]
2008-04-29 19:44:20,910 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=WebService
2008-04-29 19:44:20,910 DEBUG [org.jboss.web.WebService] Starting jboss:service=WebService
2008-04-29 19:44:20,912 DEBUG [org.jboss.web.WebServer] Started server: ServerSocket[addr=/10.20.220.15,port=0,localport=8083]
2008-04-29 19:44:20,914 DEBUG [org.jboss.web.WebService] Started WebServer with address: /10.20.220.15:8083
2008-04-29 19:44:20,914 DEBUG [org.jboss.web.WebService] Started jboss:service=WebService
2008-04-29 19:44:20,914 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss:service=WebService dependent components: []
2008-04-29 19:44:20,914 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=Naming
2008-04-29 19:44:20,914 DEBUG [org.jboss.system.ServiceController] waiting in start jboss:service=Naming on jboss:service=NamingBeanImpl
2008-04-29 19:44:20,914 DEBUG [org.jboss.system.ServiceController] starting service jboss.system:type=Log4jService,service=Logging
2008-04-29 19:44:20,915 DEBUG [org.jboss.logging.Log4jService] Starting jboss.system:type=Log4jService,service=Logging
2008-04-29 19:44:20,915 DEBUG [org.jboss.logging.Log4jService] Started jboss.system:type=Log4jService,service=Logging
2008-04-29 19:44:20,915 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.system:type=Log4jService,service=Logging dependent components: []
2008-04-29 19:44:20,915 DEBUG [org.jboss.system.ServiceController] starting service jboss.rmi:type=RMIClassLoader
2008-04-29 19:44:20,915 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.rmi:type=RMIClassLoader dependent components: []
2008-04-29 19:44:20,915 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=WebService
2008-04-29 19:44:20,915 DEBUG [org.jboss.system.ServiceController] Ignoring start request for service: jboss:service=WebService
2008-04-29 19:44:20,915 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=NamingBeanImpl
2008-04-29 19:44:20,925 DEBUG [org.jnp.server.NamingBeanImpl] Using NamingServer: org.jnp.server.NamingServer@78aa80
2008-04-29 19:44:20,925 DEBUG [org.jnp.server.NamingBeanImpl] Installed global NamingServer: org.jnp.server.NamingServer@78aa80
2008-04-29 19:44:20,928 DEBUG [org.jnp.server.NamingBeanImpl] InitialContext Environment:
2008-04-29 19:44:20,928 DEBUG [org.jnp.server.NamingBeanImpl] key=java.naming.factory.initial, value(java.lang.String)=org.jnp.interfaces.NamingContextFactory
2008-04-29 19:44:20,928 DEBUG [org.jnp.server.NamingBeanImpl] key=java.naming.factory.url.pkgs, value(java.lang.String)=org.jboss.naming:org.jnp.interfaces
2008-04-29 19:44:20,931 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss:service=NamingBeanImpl dependent components: [ObjectName: jboss:service=Naming
State: CREATED
I Depend On:
jboss.system:service=ThreadPool
jboss:service=NamingBeanImpl
]
2008-04-29 19:44:20,931 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=Naming
2008-04-29 19:44:20,931 DEBUG [org.jboss.naming.NamingService] Starting jboss:service=Naming
2008-04-29 19:44:20,932 DEBUG [org.jboss.naming.NamingService] System.setProperty, key=java.naming.factory.initial, value=org.jnp.interfaces.NamingContextFactory
2008-04-29 19:44:20,932 DEBUG [org.jboss.naming.NamingService] System.setProperty, key=java.naming.factory.url.pkgs, value=org.jboss.naming:org.jnp.interfaces
2008-04-29 19:44:20,932 DEBUG [org.jboss.naming.Naming] Creating NamingServer stub, theServer=MBeanProxyExt[jboss:service=NamingBeanImpl],rmiPort=1098,clientSocketFactory=null,serverSocketFactory=org.jboss.net.sockets.DefaultSocketFactory@94a09a8[bindAddress=/10.20.220.15]
2008-04-29 19:44:21,030 DEBUG [org.jboss.naming.Naming] NamingServer stub: NamingServer_Stub[UnicastRef2 [liveRef: [endpoint:[10.20.220.15:1098,org.jboss.net.sockets.DefaultSocketFactory@94a09a8[bindAddress=/10.20.220.15]](local),objID:[24a3aa34:1199a88b605:-7fff, -3409540681115620842]]]]
2008-04-29 19:44:21,043 DEBUG [org.jboss.naming.Naming] JNDI bootstrap JNP=/10.20.220.15:1099, RMI=/10.20.220.15:1098, backlog=50, no client SocketFactory, Server SocketFactory=org.jboss.net.sockets.DefaultSocketFactory(a)94a09a8[bindAddress=/10.20.220.15]
2008-04-29 19:44:21,052 DEBUG [org.jboss.naming.NamingService] Started jboss:service=Naming
2008-04-29 19:44:21,052 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss:service=Naming dependent components: []
2008-04-29 19:44:21,052 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=Naming
2008-04-29 19:44:21,052 DEBUG [org.jboss.system.ServiceController] Ignoring start request for service: jboss:service=Naming
2008-04-29 19:44:21,052 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=JNDIView
2008-04-29 19:44:21,053 DEBUG [org.jboss.naming.JNDIView] Starting jboss:service=JNDIView
2008-04-29 19:44:21,053 DEBUG [org.jboss.naming.JNDIView] Started jboss:service=JNDIView
2008-04-29 19:44:21,053 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss:service=JNDIView dependent components: []
2008-04-29 19:44:21,053 DEBUG [org.jboss.system.ServiceController] starting service jboss.security:service=SecurityConfig
2008-04-29 19:44:21,053 DEBUG [org.jboss.security.plugins.SecurityConfig] Starting jboss.security:service=SecurityConfig
2008-04-29 19:44:21,054 DEBUG [org.jboss.security.plugins.SecurityConfig] Installed JAAS Configuration service=jboss.security:service=XMLLoginConfig, config=org.jboss.security.auth.login.XMLLoginConfigImpl@718242
2008-04-29 19:44:21,054 DEBUG [org.jboss.security.plugins.SecurityConfig] Started jboss.security:service=SecurityConfig
2008-04-29 19:44:21,054 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.security:service=SecurityConfig dependent components: []
2008-04-29 19:44:21,054 DEBUG [org.jboss.system.ServiceController] starting service jboss.security:service=XMLLoginConfig
2008-04-29 19:44:21,054 DEBUG [org.jboss.security.auth.login.XMLLoginConfig] Starting jboss.security:service=XMLLoginConfig
2008-04-29 19:44:21,054 DEBUG [org.jboss.security.auth.login.XMLLoginConfigImpl] Try loading config as XML, url=file:/home/praveena/jboss-4.2.2.GA/server/all/conf/login-config.xml
2008-04-29 19:44:21,087 DEBUG [org.jboss.security.auth.login.XMLLoginConfig] Started jboss.security:service=XMLLoginConfig
2008-04-29 19:44:21,087 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.security:service=XMLLoginConfig dependent components: []
2008-04-29 19:44:21,087 DEBUG [org.jboss.system.ServiceController] starting service jboss.security:service=JaasSecurityManager
2008-04-29 19:44:21,087 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] Starting jboss.security:service=JaasSecurityManager
2008-04-29 19:44:21,093 DEBUG [org.jboss.security.SecurityAssociation] Using ThreadLocal: false
2008-04-29 19:44:21,100 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] securityMgrCtxPath=java:/jaas
2008-04-29 19:44:21,101 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] cachePolicyCtxPath=java:/timedCacheFactory
2008-04-29 19:44:21,103 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] SecurityProxyFactory=org.jboss.security.SubjectSecurityProxyFactory@b51404
2008-04-29 19:44:21,104 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] Registered PrincipalEditor, SecurityDomainEditor
2008-04-29 19:44:21,104 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] ServerMode=true
2008-04-29 19:44:21,104 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] SecurityMgrClass=class org.jboss.security.plugins.JaasSecurityManager
2008-04-29 19:44:21,104 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] CallbackHandlerClass=class org.jboss.security.auth.callback.SecurityAssociationHandler
2008-04-29 19:44:21,104 DEBUG [org.jboss.security.plugins.JaasSecurityManagerService] Started jboss.security:service=JaasSecurityManager
2008-04-29 19:44:21,104 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.security:service=JaasSecurityManager dependent components: []
2008-04-29 19:44:21,105 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=XidFactory
2008-04-29 19:44:21,105 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss:service=XidFactory dependent components: []
2008-04-29 19:44:21,105 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=TransactionManager
2008-04-29 19:44:21,105 DEBUG [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Starting jboss:service=TransactionManager
2008-04-29 19:44:21,105 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc.
2008-04-29 19:44:21,105 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Setting up property manager MBean and JMX layer
2008-04-29 19:44:21,232 DEBUG [com.arjuna.ats.arjuna.logging.arjLoggerI18N] [com.arjuna.ats.arjuna.recovery.TransactionStatusManager_1] - Starting service com.arjuna.ats.arjuna.recovery.ActionStatusService on port 48402
2008-04-29 19:44:21,236 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] TransactionStatusManagerItem - host: 127.0.0.1 port: 48402
2008-04-29 19:44:21,242 DEBUG [com.arjuna.ats.arjuna.logging.arjLoggerI18N] [com.arjuna.ats.arjuna.recovery.TransactionStatusManager_3] - TransactionStatusManager started on port 48402 with service com.arjuna.ats.arjuna.recovery.ActionStatusService
2008-04-29 19:44:21,258 DEBUG [com.arjuna.ats.tsmx.logging.tsmxLogger] Registering mbean for module 'arjuna'
2008-04-29 19:44:21,261 DEBUG [com.arjuna.ats.tsmx.logging.tsmxLogger] Initialising JMX agent com.arjuna.ats.internal.jbossatx.agent.LocalJBossAgentImpl
2008-04-29 19:44:21,265 DEBUG [com.arjuna.ats.tsmx.logging.tsmxLogger] Registering mbean for module 'jta'
2008-04-29 19:44:21,266 DEBUG [com.arjuna.ats.tsmx.logging.tsmxLogger] Registering mbean for module 'txoj'
2008-04-29 19:44:21,277 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Starting recovery manager
2008-04-29 19:44:21,282 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger]
--- Start RecoveryActivators
2008-04-29 19:44:21,287 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger]
--- ExpiredEntryMonitor ----Tue, 29 Apr 2008 19:44:21----
2008-04-29 19:44:21,342 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.noxanodes] No XA recovery nodes specified. Will only recover saved states.
2008-04-29 19:44:21,345 DEBUG [com.arjuna.ats.arjuna.logging.arjLoggerI18N] [com.arjuna.ats.internal.arjuna.recovery.ready] RecoveryManagerImple is ready on port 47,916
2008-04-29 19:44:21,345 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Recovery manager started
2008-04-29 19:44:21,345 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Binding TransactionManager JNDI Reference
2008-04-29 19:44:21,354 DEBUG [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Started jboss:service=TransactionManager
2008-04-29 19:44:21,355 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss:service=TransactionManager dependent components: [ObjectName: jboss:service=invoker,type=unified
State: CREATED
I Depend On:
jboss:service=TransactionManager
jboss.remoting:service=Connector,transport=socket
, ObjectName: jboss:service=invoker,type=jrmp
State: CREATED
I Depend On:
jboss:service=TransactionManager
Depends On Me:
jboss:service=proxyFactory,target=ClientUserTransactionFactory
jboss:service=proxyFactory,target=ClientUserTransaction
, ObjectName: jboss:service=invoker,type=local
State: CREATED
I Depend On:
jboss:service=TransactionManager
, ObjectName: jboss:service=invoker,type=pooled
State: CREATED
I Depend On:
jboss:service=TransactionManager
]
2008-04-29 19:44:21,355 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=invoker,type=unified
2008-04-29 19:44:21,355 DEBUG [org.jboss.system.ServiceController] waiting in start jboss:service=invoker,type=unified on jboss.remoting:service=Connector,transport=socket
2008-04-29 19:44:21,355 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=invoker,type=jrmp
2008-04-29 19:44:21,355 DEBUG [org.jboss.invocation.jrmp.server.JRMPInvoker] Starting jboss:service=invoker,type=jrmp
2008-04-29 19:44:21,358 DEBUG [org.jboss.invocation.jrmp.server.JRMPInvoker] RMI Port='4444'
2008-04-29 19:44:21,358 DEBUG [org.jboss.invocation.jrmp.server.JRMPInvoker] Client SocketFactory='Default'
2008-04-29 19:44:21,358 DEBUG [org.jboss.invocation.jrmp.server.JRMPInvoker] Server SocketFactory='org.jboss.net.sockets.DefaultSocketFactory(a)94a09a8[bindAddress=/10.20.220.15]'
2008-04-29 19:44:21,359 DEBUG [org.jboss.invocation.jrmp.server.JRMPInvoker] Server SocketAddr='10.20.220.15'
2008-04-29 19:44:21,359 DEBUG [org.jboss.invocation.jrmp.server.JRMPInvoker] SecurityDomain='Default'
2008-04-29 19:44:21,367 DEBUG [org.jboss.invocation.jrmp.server.JRMPInvoker] Bound JRMP invoker for JMX node
2008-04-29 19:44:21,367 DEBUG [org.jboss.invocation.jrmp.server.JRMPInvoker] Started jboss:service=invoker,type=jrmp
2008-04-29 19:44:21,367 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss:service=invoker,type=jrmp dependent components: [ObjectName: jboss:service=proxyFactory,target=ClientUserTransactionFactory
State: CREATED
I Depend On:
jboss:service=invoker,type=jrmp
Depends On Me:
jboss:service=ClientUserTransaction
, ObjectName: jboss:service=proxyFactory,target=ClientUserTransaction
State: CREATED
I Depend On:
jboss:service=invoker,type=jrmp
Depends On Me:
jboss:service=ClientUserTransaction
]
2008-04-29 19:44:21,367 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=proxyFactory,target=ClientUserTransactionFactory
2008-04-29 19:44:21,367 DEBUG [org.jboss.invocation.jrmp.server.JRMPProxyFactory] Starting jboss:service=proxyFactory,target=ClientUserTransactionFactory
2008-04-29 19:44:21,373 DEBUG [org.jboss.invocation.jrmp.server.JRMPProxyFactory] Created JRMPPRoxy for service=jboss:service=ClientUserTransaction, nameHash=-2097396599, invoker=jboss:service=invoker,type=jrmp
2008-04-29 19:44:21,390 DEBUG [org.jboss.invocation.jrmp.server.JRMPProxyFactory] Bound proxy under jndiName=UserTransactionSessionFactory
2008-04-29 19:44:21,391 DEBUG [org.jboss.invocation.jrmp.server.JRMPProxyFactory] Started jboss:service=proxyFactory,target=ClientUserTransactionFactory
2008-04-29 19:44:21,391 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss:service=proxyFactory,target=ClientUserTransactionFactory dependent components: [ObjectName: jboss:service=ClientUserTransaction
State: CREATED
I Depend On:
jboss:service=proxyFactory,target=ClientUserTransactionFactory
jboss:service=proxyFactory,target=ClientUserTransaction
]
2008-04-29 19:44:21,391 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=ClientUserTransaction
2008-04-29 19:44:21,391 DEBUG [org.jboss.system.ServiceController] waiting in start jboss:service=ClientUserTransaction on jboss:service=proxyFactory,target=ClientUserTransaction
2008-04-29 19:44:21,391 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=proxyFactory,target=ClientUserTransaction
2008-04-29 19:44:21,391 DEBUG [org.jboss.invocation.jrmp.server.JRMPProxyFactory] Starting jboss:service=proxyFactory,target=ClientUserTransaction
2008-04-29 19:44:21,394 DEBUG [org.jboss.invocation.jrmp.server.JRMPProxyFactory] Created JRMPPRoxy for service=jboss:service=ClientUserTransaction, nameHash=2024786241, invoker=jboss:service=invoker,type=jrmp
2008-04-29 19:44:21,396 DEBUG [org.jboss.invocation.jrmp.server.JRMPProxyFactory] Started jboss:service=proxyFactory,target=ClientUserTransaction
2008-04-29 19:44:21,396 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss:service=proxyFactory,target=ClientUserTransaction dependent components: [ObjectName: jboss:service=ClientUserTransaction
State: CREATED
I Depend On:
jboss:service=proxyFactory,target=ClientUserTransactionFactory
jboss:service=proxyFactory,target=ClientUserTransaction
]
2008-04-29 19:44:21,396 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=ClientUserTransaction
2008-04-29 19:44:21,396 DEBUG [org.jboss.tm.usertx.server.ClientUserTransactionService] Starting jboss:service=ClientUserTransaction
2008-04-29 19:44:21,400 DEBUG [org.jboss.tm.usertx.server.ClientUserTransactionService] Started jboss:service=ClientUserTransaction
2008-04-29 19:44:21,400 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss:service=ClientUserTransaction dependent components: []
2008-04-29 19:44:21,400 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=invoker,type=local
2008-04-29 19:44:21,400 DEBUG [org.jboss.invocation.local.LocalInvoker] Starting jboss:service=invoker,type=local
2008-04-29 19:44:21,404 DEBUG [org.jboss.invocation.local.LocalInvoker] Local invoker for JMX node started
2008-04-29 19:44:21,404 DEBUG [org.jboss.invocation.local.LocalInvoker] Started jboss:service=invoker,type=local
2008-04-29 19:44:21,404 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss:service=invoker,type=local dependent components: []
2008-04-29 19:44:21,404 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=invoker,type=pooled
2008-04-29 19:44:21,404 DEBUG [org.jboss.invocation.pooled.server.PooledInvoker] Starting jboss:service=invoker,type=pooled
2008-04-29 19:44:21,415 DEBUG [org.jboss.invocation.pooled.server.PooledInvoker] Bound invoker for JMX node
2008-04-29 19:44:21,416 DEBUG [org.jboss.invocation.pooled.server.PooledInvoker] Started jboss:service=invoker,type=pooled
2008-04-29 19:44:21,416 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss:service=invoker,type=pooled dependent components: []
2008-04-29 19:44:21,416 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=ClientUserTransaction
2008-04-29 19:44:21,428 DEBUG [org.jboss.system.ServiceController] Ignoring start request for service: jboss:service=ClientUserTransaction
2008-04-29 19:44:21,428 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=proxyFactory,target=ClientUserTransactionFactory
2008-04-29 19:44:21,428 DEBUG [org.jboss.system.ServiceController] Ignoring start request for service: jboss:service=proxyFactory,target=ClientUserTransactionFactory
2008-04-29 19:44:21,428 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=proxyFactory,target=ClientUserTransaction
2008-04-29 19:44:21,428 DEBUG [org.jboss.system.ServiceController] Ignoring start request for service: jboss:service=proxyFactory,target=ClientUserTransaction
2008-04-29 19:44:21,428 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=invoker,type=unified
2008-04-29 19:44:21,428 DEBUG [org.jboss.system.ServiceController] waiting in start jboss:service=invoker,type=unified on jboss.remoting:service=Connector,transport=socket
2008-04-29 19:44:21,428 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=invoker,type=jrmp
2008-04-29 19:44:21,428 DEBUG [org.jboss.system.ServiceController] Ignoring start request for service: jboss:service=invoker,type=jrmp
2008-04-29 19:44:21,428 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=invoker,type=local
2008-04-29 19:44:21,428 DEBUG [org.jboss.system.ServiceController] Ignoring start request for service: jboss:service=invoker,type=local
2008-04-29 19:44:21,428 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=invoker,type=pooled
2008-04-29 19:44:21,428 DEBUG [org.jboss.system.ServiceController] Ignoring start request for service: jboss:service=invoker,type=pooled
2008-04-29 19:44:21,428 DEBUG [org.jboss.system.ServiceController] starting service jboss.remoting:service=NetworkRegistry
2008-04-29 19:44:21,428 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.remoting:service=NetworkRegistry dependent components: [ObjectName: jboss.remoting:service=Connector,transport=socket
State: CREATED
I Depend On:
jboss.remoting:service=NetworkRegistry
Depends On Me:
jboss:service=invoker,type=unified
]
2008-04-29 19:44:21,429 DEBUG [org.jboss.system.ServiceController] starting service jboss.remoting:service=Connector,transport=socket
2008-04-29 19:44:21,474 DEBUG [org.jboss.remoting.ServerInvoker] SocketServerInvoker[UNINITIALIZED] added org.jboss.invocation.unified.server.UnifiedInvoker@16ef705 for subsystem 'invoker'
2008-04-29 19:44:21,474 DEBUG [org.jboss.remoting.transport.socket.SocketServerInvoker] SocketServerInvoker[UNINITIALIZED] starting
2008-04-29 19:44:21,475 DEBUG [org.jboss.remoting.ServerInvoker] SocketServerInvoker[10.20.220.15:4446] started for locator InvokerLocator [socket://10.20.220.15:4446/?dataType=invocation&enableTcpNoDelay=true&marshaller=org.jboss.invocation.unified.marshall.InvocationMarshaller&socketTimeout=600000&unmarshaller=org.jboss.invocation.unified.marshall.InvocationUnMarshaller]
2008-04-29 19:44:21,476 DEBUG [org.jboss.remoting.transport.socket.SocketServerInvoker] SocketServerInvoker[10.20.220.15:4446] started
2008-04-29 19:44:21,476 DEBUG [org.jboss.remoting.transport.Connector] org.jboss.remoting.transport.Connector@15b8520 started
2008-04-29 19:44:21,476 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.remoting:service=Connector,transport=socket dependent components: [ObjectName: jboss:service=invoker,type=unified
State: CREATED
I Depend On:
jboss:service=TransactionManager
jboss.remoting:service=Connector,transport=socket
]
2008-04-29 19:44:21,476 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=invoker,type=unified
2008-04-29 19:44:21,476 DEBUG [org.jboss.invocation.unified.server.UnifiedInvoker] Starting jboss:service=invoker,type=unified
2008-04-29 19:44:21,477 DEBUG [org.jboss.invocation.unified.server.UnifiedInvoker] Starting unified invoker service.
2008-04-29 19:44:21,484 DEBUG [org.jboss.invocation.unified.server.UnifiedInvoker] Started jboss:service=invoker,type=unified
2008-04-29 19:44:21,484 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss:service=invoker,type=unified dependent components: []
2008-04-29 19:44:21,484 DEBUG [org.jboss.system.ServiceController] starting service jboss.remoting:service=Connector,transport=socket
2008-04-29 19:44:21,484 DEBUG [org.jboss.system.ServiceController] Ignoring start request for service: jboss.remoting:service=Connector,transport=socket
2008-04-29 19:44:21,484 DEBUG [org.jboss.system.ServiceController] starting service jboss.jdbc:service=metadata
2008-04-29 19:44:21,484 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] Starting jboss.jdbc:service=metadata
2008-04-29 19:44:21,484 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] Loading standardjbosscmp-jdbc.xml : file:/home/praveena/jboss-4.2.2.GA/server/all/conf/standardjbosscmp-jdbc.xml
2008-04-29 19:44:21,586 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: FirstSQL/J
2008-04-29 19:44:21,591 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: Ingres
2008-04-29 19:44:21,595 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: McKoi
2008-04-29 19:44:21,600 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: Firebird
2008-04-29 19:44:21,605 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: InterBase
2008-04-29 19:44:21,610 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: DB2
2008-04-29 19:44:21,617 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: Derby
2008-04-29 19:44:21,624 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: Oracle9i
2008-04-29 19:44:21,631 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: Oracle8
2008-04-29 19:44:21,638 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: Oracle7
2008-04-29 19:44:21,643 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: Sybase
2008-04-29 19:44:21,651 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: PostgreSQL
2008-04-29 19:44:21,661 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: PostgreSQL 8.0
2008-04-29 19:44:21,671 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: PostgreSQL 7.2
2008-04-29 19:44:21,681 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: Hypersonic SQL
2008-04-29 19:44:21,688 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: PointBase
2008-04-29 19:44:21,694 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: SOLID
2008-04-29 19:44:21,704 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: mySQL
2008-04-29 19:44:21,714 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: MS SQLSERVER
2008-04-29 19:44:21,724 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: MS SQLSERVER2000
2008-04-29 19:44:21,730 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: DB2/400
2008-04-29 19:44:21,737 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: SapDB
2008-04-29 19:44:21,744 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: MaxDB
2008-04-29 19:44:21,751 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: Cloudscape
2008-04-29 19:44:21,759 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: InformixDB
2008-04-29 19:44:21,765 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] added type-mapping: Mimer SQL
2008-04-29 19:44:21,766 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.metadata.MetaDataLibrary] Started jboss.jdbc:service=metadata
2008-04-29 19:44:21,766 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.jdbc:service=metadata dependent components: []
2008-04-29 19:44:21,766 DEBUG [org.jboss.system.ServiceController] starting service jboss.deployment:type=DeploymentScanner,flavor=URL
2008-04-29 19:44:21,766 DEBUG [org.jboss.deployment.scanner.URLDeploymentScanner] Starting jboss.deployment:type=DeploymentScanner,flavor=URL
2008-04-29 19:44:21,771 DEBUG [org.jboss.deployment.MainDeployer] Starting deployment of package: file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/
2008-04-29 19:44:21,771 DEBUG [org.jboss.deployment.MainDeployer] Starting deployment (init step) of package at: file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/
2008-04-29 19:44:21,771 DEBUG [org.jboss.deployment.MainDeployer] using deployer org.jboss.deployment.SARDeployer@b9e45a
2008-04-29 19:44:21,772 DEBUG [org.jboss.deployment.SARDeployer] Updated watch URL to: file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/META-INF/jboss-service.xml
2008-04-29 19:44:21,777 DEBUG [org.jboss.deployment.SARDeployer] about to copy 0 local directories
2008-04-29 19:44:21,777 DEBUG [org.jboss.deployment.SARDeployer] looking for nested deployments in : file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/
2008-04-29 19:44:21,778 DEBUG [org.jboss.deployment.SARDeployer] nested deployment: file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-ejb3.jar
2008-04-29 19:44:21,778 DEBUG [org.jboss.deployment.SARDeployer] nested deployment: file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-annotations-ejb3.jar
2008-04-29 19:44:21,778 DEBUG [org.jboss.deployment.DeploymentInfo] createLoaderRepository from config: LoaderRepositoryConfig(repositoryName: JMImplementation:service=LoaderRepository,name=Default, repositoryClassName: null, configParserClassName: null, repositoryConfig: null)
2008-04-29 19:44:21,778 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.UnifiedLoaderRepository3@f1bb78, cl=org.jboss.mx.loading.UnifiedClassLoader3@1f38fc6{ url=file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/ ,addedOrder=0}
2008-04-29 19:44:21,779 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.UnifiedLoaderRepository3@f1bb78, cl=org.jboss.mx.loading.UnifiedClassLoader3@1f38fc6{ url=file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/ ,addedOrder=0}
2008-04-29 19:44:21,779 DEBUG [org.jboss.mx.loading.UnifiedLoaderRepository3] Adding org.jboss.mx.loading.UnifiedClassLoader3@1f38fc6{ url=file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/ ,addedOrder=0}
2008-04-29 19:44:21,779 DEBUG [org.jboss.mx.loading.ClassLoaderUtils] Multiple class loaders found for pkg:
2008-04-29 19:44:21,779 DEBUG [org.jboss.deployment.MainDeployer] found 2 subpackages of file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/
2008-04-29 19:44:21,780 DEBUG [org.jboss.deployment.MainDeployer] Starting deployment (init step) of package at: file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-annotations-ejb3.jar
2008-04-29 19:44:21,780 DEBUG [org.jboss.deployment.MainDeployer] Copying file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-annotations-ejb3.jar -> /home/praveena/jboss-4.2.2.GA/server/all/tmp/deploy/tmp13958jboss-annotations-ejb3.jar
2008-04-29 19:44:21,782 DEBUG [org.jboss.deployment.JARDeployer] No xml files found
2008-04-29 19:44:21,782 DEBUG [org.jboss.deployment.MainDeployer] using deployer org.jboss.deployment.JARDeployer@95cfbe
2008-04-29 19:44:21,782 DEBUG [org.jboss.deployment.JARDeployer] looking for nested deployments in : file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-annotations-ejb3.jar
2008-04-29 19:44:21,878 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] Added url: file:/home/praveena/jboss-4.2.2.GA/server/all/tmp/deploy/tmp13958jboss-annotations-ejb3.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@1f38fc6{ url=file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/ ,addedOrder=3}
2008-04-29 19:44:21,878 DEBUG [org.jboss.deployment.MainDeployer] found 0 subpackages of file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-annotations-ejb3.jar
2008-04-29 19:44:21,879 DEBUG [org.jboss.deployment.MainDeployer] Watching new file: file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-annotations-ejb3.jar
2008-04-29 19:44:21,879 DEBUG [org.jboss.deployment.MainDeployer] Starting deployment (init step) of package at: file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-ejb3.jar
2008-04-29 19:44:21,879 DEBUG [org.jboss.deployment.MainDeployer] Copying file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-ejb3.jar -> /home/praveena/jboss-4.2.2.GA/server/all/tmp/deploy/tmp13959jboss-ejb3.jar
2008-04-29 19:44:21,896 DEBUG [org.jboss.deployment.JARDeployer] No xml files found
2008-04-29 19:44:21,897 DEBUG [org.jboss.deployment.MainDeployer] using deployer org.jboss.deployment.JARDeployer@95cfbe
2008-04-29 19:44:21,897 DEBUG [org.jboss.deployment.JARDeployer] looking for nested deployments in : file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-ejb3.jar
2008-04-29 19:44:21,987 DEBUG [org.jboss.mx.loading.ClassLoaderUtils] Multiple class loaders found for pkg: org.jboss.ejb
2008-04-29 19:44:22,071 DEBUG [org.jboss.mx.loading.ClassLoaderUtils] Multiple class loaders found for pkg: schema
2008-04-29 19:44:22,076 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] Added url: file:/home/praveena/jboss-4.2.2.GA/server/all/tmp/deploy/tmp13959jboss-ejb3.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@1f38fc6{ url=file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/ ,addedOrder=3}
2008-04-29 19:44:22,077 DEBUG [org.jboss.deployment.MainDeployer] found 0 subpackages of file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-ejb3.jar
2008-04-29 19:44:22,077 DEBUG [org.jboss.deployment.MainDeployer] Watching new file: file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-ejb3.jar
2008-04-29 19:44:22,077 DEBUG [org.jboss.deployment.MainDeployer] Watching new file: file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/
2008-04-29 19:44:22,077 DEBUG [org.jboss.deployment.MainDeployer] create step for deployment file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/
2008-04-29 19:44:22,077 DEBUG [org.jboss.deployment.MainDeployer] create step for deployment file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-annotations-ejb3.jar
2008-04-29 19:44:22,077 DEBUG [org.jboss.deployment.MainDeployer] Done with create step of deploying jboss-annotations-ejb3.jar
2008-04-29 19:44:22,077 DEBUG [org.jboss.deployment.MainDeployer] create step for deployment file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-ejb3.jar
2008-04-29 19:44:22,077 DEBUG [org.jboss.deployment.MainDeployer] Done with create step of deploying jboss-ejb3.jar
2008-04-29 19:44:22,078 DEBUG [org.jboss.deployment.SARDeployer] Deploying SAR, create step: url file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/
2008-04-29 19:44:22,078 DEBUG [org.jboss.deployment.SARDeployer] Registering service UCL=jmx.loading:UCL=1f38fc6
2008-04-29 19:44:22,079 DEBUG [org.jboss.system.ServiceCreator] About to create bean: jboss.remoting:type=Connector,name=DefaultEjb3Connector,handler=ejb3 with code: org.jboss.remoting.transport.Connector
2008-04-29 19:44:22,082 DEBUG [org.jboss.system.ServiceCreator] Created bean: jboss.remoting:type=Connector,name=DefaultEjb3Connector,handler=ejb3
2008-04-29 19:44:22,082 DEBUG [org.jboss.system.ServiceController] recording that jboss.remoting:type=Connector,name=DefaultEjb3Connector,handler=ejb3 depends on jboss.aop:service=AspectDeployer
2008-04-29 19:44:22,082 DEBUG [org.jboss.system.ServiceConfigurator] considering with object name jboss.aop:service=AspectDeployer
2008-04-29 19:44:22,083 DEBUG [org.jboss.system.ServiceConfigurator] InvokerLocator set to socket://10.20.220.15:3873 in jboss.remoting:type=Connector,name=DefaultEjb3Connector,handler=ejb3
2008-04-29 19:44:22,085 DEBUG [org.jboss.system.ServiceConfigurator] Configuration set to [handlers: null] in jboss.remoting:type=Connector,name=DefaultEjb3Connector,handler=ejb3
2008-04-29 19:44:22,085 DEBUG [org.jboss.system.ServiceCreator] About to create bean: jboss.ejb3:service=JarsIgnoredForScanning with code: org.jboss.ejb3.JarsIgnoredForScanning
2008-04-29 19:44:22,090 DEBUG [org.jboss.system.ServiceCreator] Created bean: jboss.ejb3:service=JarsIgnoredForScanning
2008-04-29 19:44:22,090 DEBUG [org.jboss.system.ServiceConfigurator] IgnoredJars set to [Ljava.lang.String;@1d38b87 in jboss.ejb3:service=JarsIgnoredForScanning
2008-04-29 19:44:22,091 DEBUG [org.jboss.system.ServiceCreator] About to create xmbean object: jboss.ejb3:service=EJB3Deployer with code: org.jboss.ejb3.EJB3Deployer with embedded descriptor
2008-04-29 19:44:22,110 DEBUG [org.jboss.system.ServiceCreator] Created bean: jboss.ejb3:service=EJB3Deployer
2008-04-29 19:44:22,111 DEBUG [org.jboss.system.ServiceConfigurator] DeployEjb3ExtensionOnly set to false in jboss.ejb3:service=EJB3Deployer
2008-04-29 19:44:22,111 DEBUG [org.jboss.system.ServiceController] recording that jboss.ejb3:service=EJB3Deployer depends on jboss.aop:service=AspectDeployer
2008-04-29 19:44:22,111 DEBUG [org.jboss.system.ServiceConfigurator] considering with object name jboss.aop:service=AspectDeployer
2008-04-29 19:44:22,111 DEBUG [org.jboss.system.ServiceController] recording that jboss.ejb3:service=EJB3Deployer depends on jboss.ejb:service=EJBDeployer
2008-04-29 19:44:22,111 DEBUG [org.jboss.system.ServiceConfigurator] considering with object name jboss.ejb:service=EJBDeployer
2008-04-29 19:44:22,111 DEBUG [org.jboss.system.ServiceController] recording that jboss.ejb3:service=EJB3Deployer depends on jboss.ejb3:service=JarsIgnoredForScanning
2008-04-29 19:44:22,111 DEBUG [org.jboss.system.ServiceConfigurator] considering JarsIgnoredForScanning with object name jboss.ejb3:service=JarsIgnoredForScanning
2008-04-29 19:44:22,113 DEBUG [org.jboss.system.ServiceController] Creating service jboss.remoting:type=Connector,name=DefaultEjb3Connector,handler=ejb3
2008-04-29 19:44:22,114 DEBUG [org.jboss.system.ServiceController] waiting in create of jboss.remoting:type=Connector,name=DefaultEjb3Connector,handler=ejb3 waiting on jboss.aop:service=AspectDeployer
2008-04-29 19:44:22,114 DEBUG [org.jboss.system.ServiceController] Creating service jboss.ejb3:service=JarsIgnoredForScanning
2008-04-29 19:44:22,114 DEBUG [org.jboss.system.ServiceController] Creating dependent components for: jboss.ejb3:service=JarsIgnoredForScanning dependents are: [ObjectName: jboss.ejb3:service=EJB3Deployer
State: CONFIGURED
I Depend On:
jboss.aop:service=AspectDeployer
jboss.ejb:service=EJBDeployer
jboss.ejb3:service=JarsIgnoredForScanning
]
2008-04-29 19:44:22,114 DEBUG [org.jboss.system.ServiceController] Creating service jboss.ejb3:service=EJB3Deployer
2008-04-29 19:44:22,114 DEBUG [org.jboss.system.ServiceController] waiting in create of jboss.ejb3:service=EJB3Deployer waiting on jboss.aop:service=AspectDeployer
2008-04-29 19:44:22,114 DEBUG [org.jboss.system.ServiceController] Creating service jboss.ejb3:service=EJB3Deployer
2008-04-29 19:44:22,114 DEBUG [org.jboss.system.ServiceController] waiting in create of jboss.ejb3:service=EJB3Deployer waiting on jboss.aop:service=AspectDeployer
2008-04-29 19:44:22,114 DEBUG [org.jboss.deployment.MainDeployer] Done with create step of deploying ejb3.deployer
2008-04-29 19:44:22,114 DEBUG [org.jboss.deployment.MainDeployer] Begin deployment start file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/
2008-04-29 19:44:22,114 DEBUG [org.jboss.deployment.MainDeployer] Begin deployment start file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-annotations-ejb3.jar
2008-04-29 19:44:22,114 DEBUG [org.jboss.deployment.MainDeployer] End deployment start on package: jboss-annotations-ejb3.jar
2008-04-29 19:44:22,114 DEBUG [org.jboss.deployment.MainDeployer] Begin deployment start file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/jboss-ejb3.jar
2008-04-29 19:44:22,115 DEBUG [org.jboss.deployment.MainDeployer] End deployment start on package: jboss-ejb3.jar
2008-04-29 19:44:22,115 DEBUG [org.jboss.deployment.SARDeployer] Deploying SAR, start step: url file:/home/praveena/jboss-4.2.2.GA/server/all/deploy/ejb3.deployer/
2008-04-29 19:44:22,115 DEBUG [org.jboss.system.ServiceController] starting service jboss.remoting:type=Connector,name=DefaultEjb3Connector,handler=ejb3
2008-04-29 19:44:22,115 DEBUG [org.jboss.system.ServiceController] Start requested before create, calling create now for service: jboss.remoting:type=Connector,name=DefaultEjb3Connector,handler=ejb3
2008-04-29 19:44:22,115 DEBUG [org.jboss.system.ServiceController] Creating service jboss.remoting:type=Connector,name=DefaultEjb3Connector,handler=ejb3
2008-04-29 19:44:22,115 DEBUG [org.jboss.system.ServiceController] waiting in create of jboss.remoting:type=Connector,name=DefaultEjb3Connector,handler=ejb3 waiting on jboss.aop:service=AspectDeployer
2008-04-29 19:44:22,115 DEBUG [org.jboss.system.ServiceController] waiting in start jboss.remoting:type=Connector,name=DefaultEjb3Connector,handler=ejb3 on jboss.aop:service=AspectDeployer
2008-04-29 19:44:22,115 DEBUG [org.jboss.system.ServiceController] starting service jboss.ejb3:service=JarsIgnoredForScanning
2008-04-29 19:44:22,115 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.ejb3:service=JarsIgnoredForScanning dependent components: [ObjectName: jboss.ejb3:service=EJB3Deployer
State: CONFIGURED
I Depend On:
jboss.aop:service=AspectDeployer
jboss.ejb:service=EJBDeployer
jboss.ejb3:service=JarsIgnoredForScanning
]
2008-04-29 19:44:22,115 DEBUG [org.jboss.system.Se
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4147525#4147525
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4147525
17 years, 11 months
[Clustering/JBoss] - Channel.getState() failed
by greeneagle
Hi,
One of our customers reported a very strange behaviour of the jboss-cluster today. The cluster contains 8 server-nodes (jbossas-4.05) running in the same subnet.
Everytime one of the nodes starts up the exception below occurs.
The most funny thing is that everything worked fine when I left the customer last Friday afternoon. My first idea was that either network-settings or configuration-stuff must have change since Friday but the customer claimed that this hasn't happen. The setup of the jboss-instances itself seem to be unchanged anyway.
| 2008-04-29 06:33:43,371 INFO [org.jboss.ws.server.ServiceEndpointManager] WebServices: jbossws-1.0.3.SP1 (date=200609291417)
| 2008-04-29 06:33:44,958 INFO [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] SNMP agent going active
| 2008-04-29 06:33:45,541 INFO [org.jboss.cache.factories.InterceptorChainFactory] interceptor chain is:
| class org.jboss.cache.interceptors.CallInterceptor
| class org.jboss.cache.interceptors.PessimisticLockInterceptor
| class org.jboss.cache.interceptors.UnlockInterceptor
| class org.jboss.cache.interceptors.ReplicationInterceptor
| class org.jboss.cache.interceptors.TxInterceptor
| class org.jboss.cache.interceptors.CacheMgmtInterceptor
| 2008-04-29 06:33:45,792 INFO [STDOUT]
| -------------------------------------------------------
| GMS: address is xss-b1-4:33014
| -------------------------------------------------------
| 2008-04-29 06:33:46,066 INFO [org.jboss.cache.TreeCache] TreeCache local address is xss-b1-4:33014
| 2008-04-29 06:33:46,073 INFO [org.jboss.cache.TreeCache] viewAccepted(): [141.209.26.30:33145|43] [141.209.26.30:33145, 141.209.26.29:32774, xss-b2-6:32774, 141.209.26.47:32776, 141.209.26.48:32967, xss-b1-4:33014]
| 2008-04-29 06:34:01,073 WARN [org.jboss.system.ServiceController] Problem starting service jboss.cache:service=TomcatClusteringCache
| org.jboss.cache.CacheException: Initial state transfer failed: Channel.getState() returned false
| at org.jboss.cache.TreeCache.fetchStateOnStartup(TreeCache.java:3191)
| at org.jboss.cache.TreeCache.startService(TreeCache.java:1429)
| at org.jboss.cache.aop.PojoCache.startService(PojoCache.java:94)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy8.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
| at org.jboss.Main.boot(Main.java:200)
| at org.jboss.Main$1.run(Main.java:490)
| at java.lang.Thread.run(Thread.java:595)
| 2008-04-29 06:34:07,822 INFO [at.innovations.configuration.jboss.ConfigServiceLauncher] The JBossBindAddress is: 0.0.0.0
| 2008-04-29 06:34:08,467 INFO [org.jboss.ha.framework.interfaces.HAPartition.TestPartition] Initializing
| 2008-04-29 06:34:08,508 INFO [STDOUT]
| -------------------------------------------------------
| GMS: address is xss-b1-4:33018 (additional data: 18 bytes)
| -------------------------------------------------------
| 2008-04-29 06:34:10,549 INFO [org.jboss.ha.framework.interfaces.HAPartition.TestPartition] Number of cluster members: 2
| 2008-04-29 06:34:10,549 INFO [org.jboss.ha.framework.interfaces.HAPartition.TestPartition] Other members: 1
| 2008-04-29 06:34:10,550 INFO [org.jboss.ha.framework.interfaces.HAPartition.TestPartition] Fetching state (will wait for 30000 milliseconds):
| 2008-04-29 06:34:40,860 WARN [org.jboss.system.ServiceController] Problem starting service jboss:service=TestPartition
| java.lang.IllegalStateException: Initial state transfer failed: Channel.getState() returned false
| at org.jboss.ha.framework.server.HAPartitionImpl.fetchState(HAPartitionImpl.java:351)
| at org.jboss.ha.framework.server.HAPartitionImpl.startPartition(HAPartitionImpl.java:280)
| at org.jboss.ha.framework.server.ClusterPartition.startService(ClusterPartition.java:341)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at sun.reflect.GeneratedMethodAccessor20.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy8.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
| at org.jboss.Main.boot(Main.java:200)
| at org.jboss.Main$1.run(Main.java:490)
| at java.lang.Thread.run(Thread.java:595)
| 2008-04-29 06:34:43,771 INFO [org.jboss.mail.MailService] Mail Service bound to java:/Mail
| 2008-04-29 06:34:44,233 INFO [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-local-jdbc.rar
| 2008-04-29 06:34:44,325 INFO [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-xa-jdbc.rar
| 2008-04-29 06:34:44,381 INFO [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-local-jdbc.rar
| 2008-04-29 06:34:44,412 INFO [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-xa-jdbc.rar
| 2008-04-29 06:34:44,467 INFO [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jms/jms-ra.rar
| 2008-04-29 06:34:44,501 INFO [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/mail-ra.rar
| 2008-04-29 06:34:45,088 INFO [org.jboss.resource.adapter.jdbc.remote.WrapperDataSourceService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=hibernateDatasource' to JNDI name 'java:hibernateDatasource'
| 2008-04-29 06:34:45,926 INFO [org.jboss.resource.adapter.jdbc.remote.WrapperDataSourceService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
| 2008-04-29 06:34:46,241 INFO [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
| 2008-04-29 06:34:47,345 ERROR [org.jboss.deployment.scanner.URLDeploymentScanner] Incomplete Deployment listing:
|
| --- Packages waiting for a deployer ---
| org.jboss.deployment.DeploymentInfo@908367ab { url=file:/application_data/xss/jboss/server/xss-b1-4/deploy/httpha-invoker.sar/invoker.war/ }
| deployer: null
| status: Starting
| state: INIT_WAITING_DEPLOYER
| watch: file:/application_data/xss/jboss/server/xss-b1-4/deploy/httpha-invoker.sar/invoker.war/
| altDD: null
| lastDeployed: 1209450882915
| lastModified: 1173861742000
| mbeans:
|
| org.jboss.deployment.DeploymentInfo@5ff705f3 { url=file:/application_data/xss/jboss/server/xss-b1-4/deploy/jbossweb-tomcat55.sar/ROOT.war/ }
| deployer: null
| status: Starting
| state: INIT_WAITING_DEPLOYER
| watch: file:/application_data/xss/jboss/server/xss-b1-4/deploy/jbossweb-tomcat55.sar/ROOT.war/
| altDD: null
| lastDeployed: 1209450882915
| lastModified: 1173861742000
| mbeans:
|
| org.jboss.deployment.DeploymentInfo@fdeba6f1 { url=file:/application_data/xss/jboss/server/xss-b1-4/deploy/jbossws14.sar/jbossws-context.war }
| deployer: null
| status: Starting
| state: INIT_WAITING_DEPLOYER
| watch: file:/application_data/xss/jboss/server/xss-b1-4/deploy/jbossws14.sar/jbossws-context.war
| altDD: null
| lastDeployed: 1209450882915
| lastModified: 1209450823000
| mbeans:
|
| org.jboss.deployment.DeploymentInfo@1b04707f { url=file:/application_data/xss/jboss/server/xss-b1-4/deploy/juddi-service.sar/juddiws.war/ }
| deployer: null
| status: Starting
| state: INIT_WAITING_DEPLOYER
| watch: file:/application_data/xss/jboss/server/xss-b1-4/deploy/juddi-service.sar/juddiws.war/
| altDD: null
| lastDeployed: 1209450882916
| lastModified: 1173861742000
| mbeans:
|
| org.jboss.deployment.DeploymentInfo@f165a99f { url=file:/application_data/xss/jboss/server/xss-b1-4/deploy/management/console-mgr.sar/web-console.war/ }
| deployer: null
| status: Starting
| state: INIT_WAITING_DEPLOYER
| watch: file:/application_data/xss/jboss/server/xss-b1-4/deploy/management/console-mgr.sar/web-console.war/
| altDD: null
| lastDeployed: 1209450882916
| lastModified: 1173861743000
| mbeans:
|
| org.jboss.deployment.DeploymentInfo@167cee87 { url=file:/application_data/xss/jboss/server/xss-b1-4/deploy/jmx-console.war/ }
| deployer: null
| status: null
| state: INIT_WAITING_DEPLOYER
| watch: file:/application_data/xss/jboss/server/xss-b1-4/deploy/jmx-console.war/
| altDD: null
| lastDeployed: 1209450886247
| lastModified: 1196774607000
| mbeans:
|
| org.jboss.deployment.DeploymentInfo@85fe4a10 { url=file:/application_data/xss/jboss/server/xss-b1-4/deploy/slide.war }
| deployer: null
| status: null
| state: INIT_WAITING_DEPLOYER
| watch: file:/application_data/xss/jboss/server/xss-b1-4/deploy/slide.war
| altDD: null
| lastDeployed: 1209450886446
| lastModified: 1209450886000
| mbeans:
|
| org.jboss.deployment.DeploymentInfo@9ec67868 { url=file:/application_data/xss/jboss/server/xss-b1-4/deploy/xss-application.war }
| deployer: null
| status: null
| state: INIT_WAITING_DEPLOYER
| watch: file:/application_data/xss/jboss/server/xss-b1-4/deploy/xss-application.war
| altDD: null
| lastDeployed: 1209450887299
| lastModified: 1209450887000
| mbeans:
|
| --- Incompletely deployed packages ---
| org.jboss.deployment.DeploymentInfo@167cee87 { url=file:/application_data/xss/jboss/server/xss-b1-4/deploy/jmx-console.war/ }
| deployer: null
| status: null
| state: INIT_WAITING_DEPLOYER
| watch: file:/application_data/xss/jboss/server/xss-b1-4/deploy/jmx-console.war/
| altDD: null
| lastDeployed: 1209450886247
| lastModified: 1196774607000
| mbeans:
|
| org.jboss.deployment.DeploymentInfo@85fe4a10 { url=file:/application_data/xss/jboss/server/xss-b1-4/deploy/slide.war }
| deployer: null
| status: null
| state: INIT_WAITING_DEPLOYER
| watch: file:/application_data/xss/jboss/server/xss-b1-4/deploy/slide.war
| altDD: null
| lastDeployed: 1209450886446
| lastModified: 1209450886000
| mbeans:
|
| org.jboss.deployment.DeploymentInfo@9ec67868 { url=file:/application_data/xss/jboss/server/xss-b1-4/deploy/xss-application.war }
| deployer: null
| status: null
| state: INIT_WAITING_DEPLOYER
| watch: file:/application_data/xss/jboss/server/xss-b1-4/deploy/xss-application.war
| altDD: null
| lastDeployed: 1209450887299
| lastModified: 1209450887000
| mbeans:
|
| --- MBeans waiting for other MBeans ---
| ObjectName: jboss.web:service=WebServer
| State: CONFIGURED
| I Depend On:
| jboss.security:service=JaasSecurityManager
| jboss.cache:service=TomcatClusteringCache
| jboss:service=TransactionManager
| jboss.jca:service=CachedConnectionManager
| Depends On Me:
| jboss.ws:service=WebServiceDeployerJSE
| jboss:service=FarmMember,partition=TestPartition
|
| ObjectName: jboss.ws:service=WebServiceDeployerJSE
| State: CONFIGURED
| I Depend On:
| jboss.web:service=WebServer
| Depends On Me:
| jboss.ws:service=DeployerInterceptorNestedJSE
|
| ObjectName: jboss.ws:service=DeployerInterceptorNestedJSE
| State: CONFIGURED
| I Depend On:
| jboss.system:service=MainDeployer
| jboss.ws:service=WebServiceDeployerJSE
|
| ObjectName: jboss.cache:service=TomcatClusteringCache
| State: FAILED
| Reason: org.jboss.cache.CacheException: Initial state transfer failed: Channel.getState() returned false
| I Depend On:
| jboss:service=Naming
| jboss:service=TransactionManager
| jboss.aop:service=AspectDeployer
| Depends On Me:
| jboss.web:service=WebServer
|
| ObjectName: jboss:service=TestPartition
| State: FAILED
| Reason: java.lang.IllegalStateException: Initial state transfer failed: Channel.getState() returned false
| I Depend On:
| jboss:service=Naming
| Depends On Me:
| at.innovations.xss:service=xsscontroller
| jboss:service=HASessionState
| jboss:service=HAJNDI
| jboss.cache:service=InvalidationBridge,type=JavaGroups
| jboss:service=FarmMember,partition=TestPartition
|
| ObjectName: jboss:service=FarmMember,partition=TestPartition
| State: CONFIGURED
| I Depend On:
| jboss:service=TestPartition
| jboss.web:service=WebServer
| jboss.system:service=MainDeployer
|
| --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
| ObjectName: jboss:service=TestPartition
| State: FAILED
| Reason: java.lang.IllegalStateException: Initial state transfer failed: Channel.getState() returned false
| I Depend On:
| jboss:service=Naming
| Depends On Me:
| at.innovations.xss:service=xsscontroller
| jboss:service=HASessionState
| jboss:service=HAJNDI
| jboss.cache:service=InvalidationBridge,type=JavaGroups
| jboss:service=FarmMember,partition=TestPartition
|
| ObjectName: jboss.cache:service=TomcatClusteringCache
| State: FAILED
| Reason: org.jboss.cache.CacheException: Initial state transfer failed: Channel.getState() returned false
| I Depend On:
| jboss:service=Naming
| jboss:service=TransactionManager
| jboss.aop:service=AspectDeployer
| Depends On Me:
| jboss.web:service=WebServer
|
|
| 2008-04-29 06:34:47,613 INFO [org.jboss.system.server.Server] JBoss (MX MicroKernel) [4.0.5.GA (build: CVSTag=Branch_4_0 date=200610162339)] Started in 1m:16s:816ms
| 2008-04-29 06:37:54,906 INFO [org.jboss.system.server.Server] Shutting down the server, blockingShutdown: false
| 2008-04-29 06:37:54,908 INFO [org.jboss.system.server.Server] Server exit(0) called
| 2008-04-29 06:37:54,909 INFO [org.jboss.system.server.Server] Runtime shutdown hook called, forceHalt: true
| 2008-04-29 06:37:54,909 INFO [org.jboss.system.server.Server] JBoss SHUTDOWN: Undeploying all packages
| 2008-04-29 06:37:54,919 INFO [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Unbound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' from JNDI name 'java:JmsXA'
| 2008-04-29 06:37:54,936 INFO [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Unbound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' from JNDI name 'java:DefaultDS'
| 2008-04-29 06:37:55,686 INFO [org.jboss.jdbc.HypersonicDatabase] Database standalone closed clean
| 2008-04-29 06:37:55,694 INFO [org.jboss.resource.connectionmanager.ConnectionFactoryBindingService] Unbound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=hibernateDatasource' from JNDI name 'java:hibernateDatasource'
| 2008-04-29 06:37:55,731 INFO [org.jboss.mail.MailService] Mail service 'java:/Mail' removed from JNDI
| 2008-04-29 06:37:55,769 INFO [at.innovations.configuration.jboss.ConfigurationService] istbase ConfigurationService stop()
| 2008-04-29 06:37:55,769 INFO [at.innovations.util.corba.OrbServices] Will unregister 'global.section/cXMLConfig.Configuration' from the CORBA naming service.
| 2008-04-29 06:37:55,852 INFO [at.innovations.configuration.ConfigurationService] The central configuration service was terminated.
| 2008-04-29 06:37:55,867 INFO [org.jboss.ha.framework.interfaces.HAPartition.TestPartition] Partition TestPartition destroyed.
| 2008-04-29 06:37:56,085 INFO [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] SNMP agent stopped
| 2008-04-29 06:37:58,160 INFO [org.jboss.system.server.Server] Shutdown complete
| 2008-04-29 06:38:44,208 INFO [org.jboss.ws.server.ServiceEndpointManager] WebServices: jbossws-1.0.3.SP1 (date=200609291417)
| 2008-04-29 06:38:45,223 INFO [org.jboss.jmx.adaptor.snmp.agent.SnmpAgentService] SNMP agent going active
| 2008-04-29 06:38:45,815 INFO [org.jboss.cache.factories.InterceptorChainFactory] interceptor chain is:
| class org.jboss.cache.interceptors.CallInterceptor
| class org.jboss.cache.interceptors.PessimisticLockInterceptor
| class org.jboss.cache.interceptors.UnlockInterceptor
| class org.jboss.cache.interceptors.ReplicationInterceptor
| class org.jboss.cache.interceptors.TxInterceptor
| class org.jboss.cache.interceptors.CacheMgmtInterceptor
| 2008-04-29 06:38:46,058 INFO [STDOUT]
| -------------------------------------------------------
| GMS: address is xss-b1-4:33023
| -------------------------------------------------------
| 2008-04-29 06:38:46,324 INFO [org.jboss.cache.TreeCache] viewAccepted(): [141.209.26.30:33145|45] [141.209.26.30:33145, 141.209.26.29:32774, xss-b2-6:32774, 141.209.26.47:32776, 141.209.26.48:32967, xss-b1-4:33023]
| 2008-04-29 06:38:46,333 INFO [org.jboss.cache.TreeCache] TreeCache local address is xss-b1-4:33023
| 2008-04-29 06:39:01,340 WARN [org.jboss.system.ServiceController] Problem starting service jboss.cache:service=TomcatClusteringCache
| org.jboss.cache.CacheException: Initial state transfer failed: Channel.getState() returned false
| at org.jboss.cache.TreeCache.fetchStateOnStartup(TreeCache.java:3191)
| at org.jboss.cache.TreeCache.startService(TreeCache.java:1429)
| at org.jboss.cache.aop.PojoCache.startService(PojoCache.java:94)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy8.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
| at org.jboss.Main.boot(Main.java:200)
| at org.jboss.Main$1.run(Main.java:490)
| at java.lang.Thread.run(Thread.java:595)
| 2008-04-29 06:39:07,473 INFO [at.innovations.configuration.jboss.ConfigServiceLauncher] The JBossBindAddress is: 0.0.0.0
| 2008-04-29 06:39:08,061 INFO [org.jboss.ha.framework.interfaces.HAPartition.TestPartition] Initializing
| 2008-04-29 06:39:08,140 INFO [STDOUT]
| -------------------------------------------------------
| GMS: address is xss-b1-4:33027 (additional data: 18 bytes)
| -------------------------------------------------------
| and so on....
|
It would be great if anyone had an idea how to solve that. I wasn't able to reproduce this behaviour with my test-environment.
Thanx in advance,
Michael
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4147524#4147524
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4147524
17 years, 11 months
[JBossWS] - Re: Newbee Q: Returning hashmaps
by soch
"mikkus" wrote : toString() outputs the contents of the HashMap only if the class generated is actually a HashMap, otherwise it outputs the java class instance name.
|
| Most probably, wsconsume generated a class named HashMap, instead of using java.util.HashMap. This class is not actually a hashmap but a representation of the web service return data. Most probably, you'll need to convert that data to an actual hashmap.
|
| I notice you commented out the cast to java.util.HashMap, probably you got a ClassCastException here? Seeing the class generated by wsconsume and related wsdl would help.
|
| Your web.xml file should not be the problem. It just exposes the webservice, and since you're able to invoke it, it is doing its job.
Thanks mikkus. Yes, wsconsume creates it's own HashMap which inherits from it's own AbstractMap.
How do I convert the wsconsume generated HashMap to java.util.HashMap? I believe this needs to be done at the client side.
Data below:
C:\..\test\webservices> wsconsume -k http://localhost:8080/getpm/GetPM?wsdl
JBossWS-Native stack deployed
parsing WSDL...
generating code...
getpm\AbstractMap.java
getpm\GetPM.java
getpm\GetPMResponse.java
getpm\GetPMService.java
getpm\GetPM_Type.java
getpm\HashMap.java
getpm\ObjectFactory.java
getpm\package-info.java
HashMap.java:
| package getpm;
|
| import javax.xml.bind.annotation.XmlAccessType;
| import javax.xml.bind.annotation.XmlAccessorType;
| import javax.xml.bind.annotation.XmlType;
|
|
| /**
| * <p>Java class for hashMap complex type.
| *
| * <p>The following schema fragment specifies the expected content contained within this class.
| *
| * <pre>
| * <complexType name="hashMap">
| * <complexContent>
| * <extension base="{http://getpm/}abstractMap">
| * <sequence>
| * </sequence>
| * </extension>
| * </complexContent>
| * </complexType>
| * </pre>
| *
| *
| */
| @XmlAccessorType(XmlAccessType.FIELD)
| @XmlType(name = "hashMap")
| public class HashMap
| extends AbstractMap
| {
|
|
| }
AbstractMap.java:
package getpm;
|
| import javax.xml.bind.annotation.XmlAccessType;
| import javax.xml.bind.annotation.XmlAccessorType;
| import javax.xml.bind.annotation.XmlType;
|
|
| /**
| * <p>Java class for abstractMap complex type.
| *
| * <p>The following schema fragment specifies the expected content contained within this class.
| *
| * <pre>
| * <complexType name="abstractMap">
| * <complexContent>
| * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
| * <sequence>
| * </sequence>
| * </restriction>
| * </complexContent>
| * </complexType>
| * </pre>
| *
| *
| */
| @XmlAccessorType(XmlAccessType.FIELD)
| @XmlType(name = "abstractMap")
| public abstract class AbstractMap {
|
|
| }
The generated service WSDL under C:\jboss-4.2.2.GA\server\default\data\wsdl\getpm.war
GetPMService31986.wsdl:
<?xml version="1.0" encoding="UTF-8"?>
| <definitions name="GetPMService" targetNamespace="http://getpm/" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://getpm/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
| <types>
| <xs:schema targetNamespace="http://getpm/" version="1.0" xmlns:tns="http://getpm/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
| <xs:element name="getPM" type="tns:getPM"/>
| <xs:element name="getPMResponse" type="tns:getPMResponse"/>
| <xs:complexType name="getPM">
| <xs:sequence/>
| </xs:complexType>
| <xs:complexType name="getPMResponse">
| <xs:sequence>
| <xs:element minOccurs="0" name="return" type="tns:hashMap"/>
| </xs:sequence>
| </xs:complexType>
| <xs:complexType name="hashMap">
| <xs:complexContent>
| <xs:extension base="tns:abstractMap">
| <xs:sequence/>
| </xs:extension>
| </xs:complexContent>
| </xs:complexType>
| <xs:complexType abstract="true" name="abstractMap">
| <xs:sequence/>
| </xs:complexType>
| </xs:schema>
| </types>
| <message name="GetPM_getPMResponse">
| <part name="getPMResponse" element="tns:getPMResponse">
| </part>
| </message>
| <message name="GetPM_getPM">
| <part name="getPM" element="tns:getPM">
| </part>
| </message>
| <portType name="GetPM">
| <operation name="getPM" parameterOrder="getPM">
| <input message="tns:GetPM_getPM">
| </input>
| <output message="tns:GetPM_getPMResponse">
| </output>
| </operation>
| </portType>
| <binding name="GetPMBinding" type="tns:GetPM">
| <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
| <operation name="getPM">
| <soap:operation soapAction=""/>
| <input>
| <soap:body use="literal"/>
| </input>
| <output>
| <soap:body use="literal"/>
| </output>
| </operation>
| </binding>
| <service name="GetPMService">
| <port name="GetPMPort" binding="tns:GetPMBinding">
| <soap:address location="http://127.0.0.1:8080/getpm/GetPM"/>
| </port>
| </service>
| </definitions>
I tried the convertion but got errors:
C:\Documents and Settings\jaina\My Documents\Work\CODE\test\webservices\getpm\output>wsrunclient GetPMclient
log4j:WARN No appenders could be found for logger (org.jboss.ws.metadata.builder.jaxws.JAXWSWebServiceMetaDataBuilder).
log4j:WARN Please initialize the log4j system properly.
getpm.HashMap@1a0b53e
C:\Documents and Settings\jaina\My Documents\Work\CODE\test\webservices\getpm\output>javac GetPMclient.java
GetPMclient.java:13: inconvertible types
found : getpm.HashMap
required: java.util.HashMap
java.util.HashMap hm = (java.util.HashMap) pm.getPM();
^
1 error
import getpm.*;
|
| import java.util.HashMap;
|
| public class GetPMclient
| {
| public static void main(String args[])
| {
|
| GetPMService service = new GetPMService();
| GetPM pm = service.getGetPMPort();
| //System.out.println("Server said: " + pm.getPM());
| java.util.HashMap hm = (java.util.HashMap) pm.getPM();
| System.out.println(hm.toString());
|
|
|
| }
| }
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4147520#4147520
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4147520
17 years, 11 months